- Timestamp:
- 02/16/04 13:54:21 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3189 r3190 9 9 - changed type of fTotalEntries from ULong_t to UInt_t 10 10 - fixed documentation of fTotalEntries 11 12 * manalysis/MPedCalcPedRun.h 13 - changed type of fNumSamplesTot from ULong_t to UInt_t 14 15 * mcalib/MCalibrationConfig.h 16 - removed gkConversionHiLo and gkConversionHiLoErr which is now 17 directly in the class MCalibrationPix 11 18 12 19 … … 77 84 * mcalib/MCalibrationCalc.cc, mcalib/MHCalibrationBlindPixel.cc: 78 85 - fixed usage of logging stream output levels 79 80 86 81 87 -
trunk/MagicSoft/Mars/manalysis/MPedCalcPedRun.h
r3014 r3190 24 24 Byte_t fNumHiGainSamples; 25 25 UShort_t fNumPixels; 26 U Long_tfNumSamplesTot;26 UInt_t fNumSamplesTot; 27 27 28 28 MRawEvtData *fRawEvt; // raw event data (time slices) … … 43 43 44 44 void Clear(const Option_t *o=""); 45 45 void SetNumHiGainSamples(const Byte_t n) { fNumHiGainSamples = n; } 46 46 47 ClassDef(MPedCalcPedRun, 0) // Task to calculate pedestals from pedestal runs raw data 47 48 }; -
trunk/MagicSoft/Mars/manalysis/MPedestalCam.h
r3188 r3190 18 18 19 19 TClonesArray *fArray; // FIXME: Change TClonesArray away from a pointer? 20 21 UInt_t fTotalEntries; 20 UInt_t fTotalEntries; // Total number of times, the Process was executed (to estimate the error of pedestal) 22 21 23 22 public:
Note:
See TracChangeset
for help on using the changeset viewer.