Changeset 8302 for trunk/MagicSoft/Mars
- Timestamp:
- 02/04/07 11:45:14 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8299 r8302 19 19 -*-*- END OF LINE -*-*- 20 20 21 2007/02/04 Thomas Bretz 22 23 * mjobs/MJCalibration.cc: 24 - implemented Hi-/Lo-Gain calibration for MCs 25 26 * mjobs/MJPedestal.cc: 27 - removed intermediate pedestalstorage from code (its 28 result is not used at all) 29 30 * datacenter/macros/fillsignal.C: 31 - replaced GetMediandev by GetDev 32 33 34 21 35 2007/02/03 Thomas Bretz 22 36 … … 56 70 * mbase/MStatusArray.[h,cc]: 57 71 - improved workaround in Read() and Write() for the Reset 58 of the kCandelete bit in TH1 72 of the kCanDelete bit in TH1 73 74 * mjobs/MJCalibration.cc, mjobs/MJCalibrateSignal.cc: 75 - commented out obsolete references to *HiLoCam 76 77 * mhcalib/Makefile, mcalib/Makefile, mhcalib/HCalibLinkDef.h, 78 mcalib/CalibLinkDef.h: 79 - removed *HiLoCam s 59 80 60 81 -
trunk/MagicSoft/Mars/datacenter/macros/fillsignal.C
r7870 r8302 217 217 // USE MEDIAN INSTEAD? GetQuantiles(Int_t nprobSum, Double_t *q, const Double_t *probSum=0); 218 218 219 Double_t medoff = TMath::Nint(hilooff->GetMedian() 220 Double_t devoff = TMath::Nint(hilooff->Get MedianDev()*10000)/10000.;221 222 Double_t medcal = TMath::Nint(hilocal->GetMedian() 223 Double_t devcal = TMath::Nint(hilocal->Get MedianDev()*100)/100.;219 Double_t medoff = TMath::Nint(hilooff->GetMedian()*10000)/10000.; 220 Double_t devoff = TMath::Nint(hilooff->GetDev() *10000)/10000.; 221 222 Double_t medcal = TMath::Nint(hilocal->GetMedian()*100)/100.; 223 Double_t devcal = TMath::Nint(hilocal->GetDev() *100)/100.; 224 224 225 225 //get sequence number from the filename
Note:
See TracChangeset
for help on using the changeset viewer.