Changeset 5853 for trunk/MagicSoft/Mars/mcalib/MCalibrateData.h
- Timestamp:
- 01/15/05 19:32:28 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrateData.h
r5729 r5853 43 43 UShort_t fCalibrationMode; // Flag defining the calibration mode (CalibrationMode_t) 44 44 Byte_t fPedestalFlag; // Flags defining to calibrate the pedestal each event or each run 45 Byte_t fSignalType; // Flag defining the signal type (kphot or kphe) 46 47 Float_t fRenormFactor; // Possible renormalization factor for signals (-> phes) 45 48 46 49 TList fNamesPedestal; // Names of input and output pedestal conatainer … … 81 84 }; 82 85 86 enum SignalType_t 87 { 88 kPhe, 89 kPhot 90 }; 91 83 92 MCalibrateData(CalibrationMode_t calmode=kDefault, 84 93 const char *name=NULL, const char *title=NULL); … … 89 98 90 99 void SetCalibrationMode ( CalibrationMode_t calmode=kDefault ) { fCalibrationMode=calmode; } 100 void SetSignalType ( SignalType_t sigtype=kPhot ) { fSignalType =sigtype; } 91 101 92 102 void AddPedestal(const char *name="Cam"); 93 103 void AddPedestal(const char *pedestal, const char *pedphot); 94 104 95 ClassDef(MCalibrateData, 0) // Task to calibrate FADC counts into Cherenkov photons105 ClassDef(MCalibrateData, 1) // Task to calibrate FADC counts into Cherenkov photons 96 106 }; 97 107
Note:
See TracChangeset
for help on using the changeset viewer.