예제 #1
0
파일: Central.cs 프로젝트: tempbottle/INCC6
        public static BackgroundParameters GetCurrentBackgroundParams(Detector det)
        {
            BackgroundParameters bp = new AnalysisDefs.BackgroundParameters();

            if ((det != null) && (CentralizedState.App.DB.BackgroundParameters.Get(det.Id.DetectorName) != null))
            {
                bp.Copy(CentralizedState.App.DB.BackgroundParameters.Map[det]);
            }
            return(bp);
        }
예제 #2
0
파일: Central.cs 프로젝트: tempbottle/INCC6
 public static BackgroundParameters GetCurrentBackgroundParams(Detector det)
 {
     BackgroundParameters bp = new AnalysisDefs.BackgroundParameters();
     if ((det != null) && (CentralizedState.App.DB.BackgroundParameters.Get(det.Id.DetectorName) != null))
         bp.Copy(CentralizedState.App.DB.BackgroundParameters.Map[det]);
     return bp;
 }