- Timestamp:
- 07/17/03 17:41:32 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.hxx
r1101 r2283 14 14 // the signal 15 15 // = 0 --> a gaussian 16 Float_t fAmplFadc ; // the amplitude of the trigger in mV16 Float_t fAmplFadc ; // the integral of sph response [counts*ns] 17 17 Float_t fFwhmFadc ; // the width of the signal in nsec 18 Float_t fAmplFadcOuter; // the integral of sph response [counts*ns], outer 19 Float_t fFwhmFadcOuter; // the width of the signal in nsec, outer 18 20 Float_t fPedesMean[MFADC_CHANNELS] ; // The mean value for the pedestal 19 21 // of each pixel (channel) … … 21 23 // due to the electronics for 22 24 // each pixel (channel) 25 Float_t fLow2HighGain; // low gain factor 23 26 24 27 public: … … 33 36 } 34 37 35 void SetAmplitud(Float_t amp){ 38 void SetLow2High(Float_t l2h){ 39 fLow2HighGain=l2h; 40 } 41 42 void SetAmplitud(Float_t amp, Float_t ampout=0.0){ 36 43 fAmplFadc=amp; 44 fAmplFadcOuter=ampout; 37 45 } 38 46 39 void SetFwhm(Float_t fwhm ){47 void SetFwhm(Float_t fwhm, Float_t fwhmout=0.0){ 40 48 fFwhmFadc=fwhm; 49 fFwhmFadcOuter=fwhmout; 41 50 } 42 51 … … 57 66 UInt_t GetNumPixel() const { return MFADC_CHANNELS; } 58 67 59 ClassDef(MMcFadcHeader, 1) //Stores Montecarlo Information describing the FADC behaviour68 ClassDef(MMcFadcHeader, 2) //Stores Montecarlo Information describing the FADC behaviour 60 69 61 70 };
Note:
See TracChangeset
for help on using the changeset viewer.