- Timestamp:
- 03/05/01 10:54:58 (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.hxx
r610 r680 22 22 Float_t fAmplFadc ; // the amplitude of the trigger in mV 23 23 Float_t fFwhmFadc ; // the width of the signal in nsec 24 Float_t fPedesMean[MFADC_CHANNELS] ; // The mean value for the pedestal24 UChar_t fPedesMean[MFADC_CHANNELS] ; // The mean value for the pedestal 25 25 // of each pixel (channel) 26 26 Float_t fElecNoise[MFADC_CHANNELS] ; // The rms value in the pedestal … … 47 47 } 48 48 49 void Set Mean(Float_t *mean, Int_t dim){49 void SetPedestal(UChar_t *mean, Int_t dim){ 50 50 for (Int_t i=0;i<dim;i++) 51 51 fPedesMean[i]=mean[i]; 52 52 } 53 53 54 void Set Sigma(Float_t *sigma, Int_t dim){54 void SetElecNoise(Float_t *sigma, Int_t dim){ 55 55 for (Int_t i=0;i<dim;i++) 56 56 fElecNoise[i]=sigma[i];
Note:
See TracChangeset
for help on using the changeset viewer.