Changeset 5872 for trunk/MagicSoft
- Timestamp:
- 01/17/05 14:03:02 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5870 r5872 59 59 60 60 * mjobs/MJPedestal.cc 61 * mjobs/MJCalibrateSignal.cc 61 62 - fixed default extraction ranges. 62 63 -
trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc
r5869 r5872 72 72 #include "MPedCalcFromLoGain.h" 73 73 #include "MExtractor.h" 74 #include "MExtractTimeAndCharge.h" 74 75 #include "MFCosmics.h" 75 76 #include "MTaskEnv.h" … … 365 366 pedlo2.SetExtractor((MExtractTimeAndCharge*)extractor1); 366 367 pedlo3.SetExtractor((MExtractTimeAndCharge*)extractor1); 367 pedlo1.SetExtractWindow(15, 0/*obsolete*/); 368 pedlo2.SetExtractWindow(15, 0/*obsolete*/); 369 pedlo3.SetExtractWindow(15, 0/*obsolete*/); 368 const Int_t win = ((MExtractTimeAndCharge*)extractor1)->GetWindowSizeHiGain(); 369 pedlo1.SetExtractWindow(15, win); 370 pedlo2.SetExtractWindow(15, win/*obsolete*/); 371 pedlo3.SetExtractWindow(15, win/*obsolete*/); 370 372 } 371 373 else -
trunk/MagicSoft/Mars/mjobs/MJPedestal.cc
r5871 r5872 58 58 // Other basic classes 59 59 #include "MExtractor.h" 60 #include "MExtractTimeAndCharge.h" 60 61 61 62 // parameter containers … … 901 902 case kUsePedRun: 902 903 // In case other than 'fundamental' second argument is obsolete 903 pedcalc.SetExtractWindow(0,14); // kUsePedRun904 // pedcalc.SetExtractWindow(0,14); // kUsePedRun (take default from class) 904 905 taskenv.SetDefault(&pedcalc); 905 906 tlist.AddToList(&taskenv); … … 908 909 case kUseData: 909 910 // In case other than 'fundamental' second argument is obsolete 910 pedlogain.SetExtractWindow(15,14); // kUseData911 // pedlogain.SetExtractWindow(15,14); // kUseData (take default from class) 911 912 taskenv.SetDefault(&pedlogain); 912 913 tlist.AddToList(&taskenv); … … 932 933 if (fExtractor) 933 934 { 934 const Float_t f = 0.5+fExtractor->GetHiGainFirst(); 935 const Float_t n = 0.5+fExtractor->GetNumHiGainSamples(); 936 pedcalc.SetExtractWindow((Int_t)f, (Int_t)n); 937 pedlogain.SetExtractWindow((Int_t)(15+f), (Int_t)n); 938 935 939 936 if (!fExtractor->InheritsFrom("MExtractTimeAndCharge")) 940 937 { 938 939 const Float_t f = 0.5+fExtractor->GetHiGainFirst(); 940 const Int_t win = ((MExtractTimeAndCharge*)fExtractor)->GetWindowSizeHiGain(); 941 pedcalc.SetExtractWindow((Int_t)f, win); 942 pedlogain.SetExtractWindow((Int_t)(15+f), win); 943 941 944 if (fExtractionType!=kFundamental) 942 945 { … … 947 950 } 948 951 } 952 else 953 { 954 const Float_t f = 0.5+fExtractor->GetHiGainFirst(); 955 const Float_t n = 0.5+fExtractor->GetNumHiGainSamples(); 956 pedcalc.SetExtractWindow((Int_t)f, (Int_t)n); 957 pedlogain.SetExtractWindow((Int_t)(15+f), (Int_t)n); 958 } 959 949 960 950 961 if (fExtractionType!=kFundamental) … … 957 968 } 958 969 } 959 970 else 971 { 972 *fLog << warn << GetDescriptor() 973 << ": WARNING: No extractor has been handed over! " << endl; 974 *fLog << warn << GetDescriptor() 975 << ": WARNING: Taking default window for pedestal extraction. The calculated pedestal RMS will probably not match with future pedestal RMSs from different extraction windows." << endl; 976 } 977 960 978 /* 961 979 switch (fExtractType)
Note:
See TracChangeset
for help on using the changeset viewer.