public void AddGate(string detector, Gate gate)
 {
     gateList.Add(gate);
     gatedDetectorList.Add(detector);
 }
Beispiel #2
0
 public void AddGatedDetector(string detector, Gate gate)
 {
     _gatedDetectorList.Add(detector);
     _gateConfig.AddGate(detector, gate);
 }