Changeset 3145 for trunk/MagicSoft/Mars
- Timestamp:
- 02/13/04 20:07:08 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc
r3128 r3145 64 64 const Float_t MCalibrationPix::gkAverageQE = 0.25; 65 65 const Float_t MCalibrationPix::gkAverageQEErr = 0.03; 66 const Float_t MCalibrationPix::gkConversionHiLo = 10.; 67 const Float_t MCalibrationPix::gkConversionHiLoError = 2.5; 66 68 // -------------------------------------------------------------------------- 67 69 // -
trunk/MagicSoft/Mars/mcalib/MCalibrationPix.h
r3128 r3145 14 14 static const Float_t gkAverageQE; // The average quantum efficieny agreed on for the first analysis 15 15 static const Float_t gkAverageQEErr; // The error of average quantum efficieny 16 17 static const Float_t gkConversionHiLo; // The default conversion factor HI gain - Lo Gain 18 static const Float_t gkConversionHiLoError; // The error of the default conversion factor 16 19 17 20 static const Float_t gkElectronicPedRms; // The pure electronic component of the RMS … … 26 29 static const Float_t gkConvFFactorRelErrorLimit; // The limit (in units of [1]) for acceptance of the rel. error of the conversion factor with the FFactor method 27 30 28 Int_t fPixId; 31 Int_t fPixId; // the pixel Id 29 32 30 33 UInt_t fFlags; // Flag for the set Bits … … 109 112 void SetPedestal(const Float_t ped, const Float_t pedrms, 110 113 const Float_t higainsamp, const Float_t logainsamp); 111 void SetConversionHiLo( const Float_t c){ fConversionHiLo = c; }112 void SetConversionHiLoError(const Float_t e ) { fConversionHiLoError = e; }114 void SetConversionHiLo( const Float_t c=gkConversionHiLo) { fConversionHiLo = c; } 115 void SetConversionHiLoError(const Float_t e=gkConversionHiLoError) { fConversionHiLoError = e; } 113 116 void SetAverageQE(const Float_t qe=gkAverageQE, const Float_t err=gkAverageQEErr) 114 { fAverageQE = qe; 115 fAverageQEErr = err; } 117 { fAverageQE = qe; fAverageQEErr = err; } 116 118 117 119 // Setters for MC
Note:
See TracChangeset
for help on using the changeset viewer.