- Timestamp:
- 03/09/05 12:24:15 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 1 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6797 r6798 21 21 22 22 -*-*- END OF LINE -*-*- 23 2005/03/09 Markus Gaug 24 25 * msignal/MExtractTimeAndCharge.cc 26 - catch a (very unprobable) case in which the low-gain range could 27 be negative 28 23 29 2005/03/09 Thomas Hengstebeck 24 30 … … 29 35 - changed check of energy rule (last col of MHMatrix) so, that 30 36 any rule containing "fEnergy" is accepted. 31 32 37 33 38 2005/03/08 Markus Gaug -
trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc
r6777 r6798 831 831 } 832 832 833 interlacedcont.Add(&pulcam); 834 835 if (fIsHiLoCalibration) 836 interlacedcont.Add(&hilcam); 837 833 838 if (!WriteResult(interlacedcont)) 834 839 return kFALSE; 835 840 836 TObjArray addcont; 837 addcont.Add(&pulcam); 838 839 if (fIsHiLoCalibration) 840 addcont.Add(&hilcam); 841 842 if (IsHistsStorage()) 843 { 844 addcont.Add(plist.FindObject("MHCalibrationHiLoCam")); 845 addcont.Add(plist.FindObject("MHCalibrationPulseTimeCam")); 846 } 841 // if (IsHistsStorage()) 842 // { 843 // addcont.Add(plist.FindObject("MHCalibrationHiLoCam")); 844 // addcont.Add(plist.FindObject("MHCalibrationPulseTimeCam")); 845 // } 847 846 848 if (!WriteResult(addcont))849 return kFALSE;850 851 852 847 // return if job went ok 853 848 *fLog << all << GetDescriptor() << ": Done." << endl; -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndCharge.cc
r6532 r6798 131 131 132 132 *fLog << flush << inf; 133 Print();134 135 133 return kTRUE; 136 134 } … … 219 217 fLoGainFirstSave = fLoGainFirst; 220 218 const Byte_t logainstart = sathi 221 ? sathi + (Int_t)fLoGainStartShift219 ? (sathi > (Int_t)fLoGainStartShift ? sathi + (Int_t)fLoGainStartShift : fLoGainFirst) 222 220 : (Byte_t)(timehi + fLoGainStartShift); 223 221 fLoGainFirst = logainstart > fLoGainFirstSave ? logainstart : fLoGainFirstSave;
Note:
See TracChangeset
for help on using the changeset viewer.