Changeset 3610
- Timestamp:
- 03/30/04 18:22:35 (21 years ago)
- Location:
- trunk/MagicSoft
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3609 r3610 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2004/03/30: Abelardo Moralejo 22 23 * mmc/MMcFadcHeader.hxx 24 - updated to current version (4) in camera program. 20 25 21 26 2004/03/29: Markus Gaug -
trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.hxx
r2749 r3610 13 13 Float_t fFadcShape ; // a number that indicate the shape type of 14 14 // the signal 15 Float_t fFadcShapeOuter; // a number that indicate the shape type of 16 // the signal 15 17 // = 0 --> a gaussian 16 Float_t fAmplFadc ; // the integral of sph response [counts*ns] 18 // = 1 --> from Pulpo set-up 19 20 // NOTE : meaning of fAmplFadc, fAmplFadcOuter changed in camera 0.7, 21 // 30/03/2004: before it was amplitude of (gaussian) pulse, now is 22 // integral of pulse (which may be gaussian or not). 23 24 Float_t fAmplFadc ; // the integral of single phe response [counts] 17 25 Float_t fFwhmFadc ; // the width of the signal in nsec 18 Float_t fAmplFadcOuter; // the integral of sph response [counts*ns], outer 26 Float_t fAmplFadcOuter; // the integral of single phe response [counts], 27 // outer pixels 19 28 Float_t fFwhmFadcOuter; // the width of the signal in nsec, outer 29 20 30 Float_t fPedesMean[MFADC_CHANNELS] ; // The mean value for the pedestal 21 31 // of each pixel (channel) … … 24 34 Float_t fPedesSigmaLow[MFADC_CHANNELS] ; // The sigma for the pedestal 25 35 // of each pixel (channel) 36 37 // In camera 0.7, the meaning of fPedesSigmaHigh, fPedesSigmaLow changed: 38 // before it was the rms of the single FADC slice. Now we calculate the 39 // RMS of the distribution of the sum of 14 FADC slices. The value we set 40 // as fPedesSigmaHigh/Low is that RMS divided by sqrt(14). It can be seen 41 // that the fluctuations of the integrated pedestal, when adding n slices 42 // to obtain the pixel signal, with n>~6, is more or less well 43 // approximated by sqrt(n)*RMS(sum_14)slices)/sqrt(14). 44 45 26 46 Float_t fElecNoise[MFADC_CHANNELS] ; // The rms value in the pedestal 27 47 // due to the electronics for … … 41 61 void SetShape(Float_t shape){ 42 62 fFadcShape=shape; 63 } 64 65 void SetShapeOuter(Float_t shape){ 66 fFadcShapeOuter=shape; 43 67 } 44 68 … … 87 111 UInt_t GetNumPixel() const { return MFADC_CHANNELS; } 88 112 89 ClassDef(MMcFadcHeader, 3) //Stores Montecarlo Information describing the FADC behaviour113 ClassDef(MMcFadcHeader, 4) //Stores Montecarlo Information describing the FADC behaviour 90 114 91 115 };
Note:
See TracChangeset
for help on using the changeset viewer.