Changeset 2394 for trunk/MagicSoft
- Timestamp:
- 10/17/03 21:09:02 (21 years ago)
- Location:
- trunk/MagicSoft
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mgeom/MGeomMirror.cc
r2173 r2394 105 105 void MGeomMirror::SetMirrorDeviations(Float_t dev_x, Float_t dev_y){ 106 106 fDeviationX=dev_x; // deviation in x [cm] 107 fDeviationY=dev_ x; // deviation in y [cm]107 fDeviationY=dev_y; // deviation in y [cm] 108 108 // of the spot of a single mirror on the camera plane 109 109 } -
trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.cxx
r2283 r2394 37 37 for(i=0;i<MFADC_CHANNELS;i++){ 38 38 fPedesMean[i]= 0.0 ; 39 fPedesSigmaHigh[i]=-1.0 ; 40 fPedesSigmaLow[i]=-1.0 ; 39 41 fElecNoise[i]=-1.0 ; 40 42 } -
trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.hxx
r2283 r2394 20 20 Float_t fPedesMean[MFADC_CHANNELS] ; // The mean value for the pedestal 21 21 // of each pixel (channel) 22 Float_t fPedesSigmaHigh[MFADC_CHANNELS] ; // The sigma for the pedestal 23 // of each pixel (channel) 24 Float_t fPedesSigmaLow[MFADC_CHANNELS] ; // The sigma for the pedestal 25 // of each pixel (channel) 22 26 Float_t fElecNoise[MFADC_CHANNELS] ; // The rms value in the pedestal 23 27 // due to the electronics for … … 55 59 } 56 60 61 void SetPedestalSigma(Float_t *sigmalo, Float_t *sigmahi, Int_t dim){ 62 for (Int_t i=0;i<dim;i++){ 63 fPedesSigmaLow[i]=sigmalo[i]; 64 fPedesSigmaHigh[i]=sigmahi[i]; 65 } 66 } 67 57 68 void SetElecNoise(Float_t *sigma, Int_t dim){ 58 69 for (Int_t i=0;i<dim;i++) … … 61 72 62 73 Float_t GetPedestal(UInt_t i) const { return fPedesMean[i]; } 63 Float_t GetPedestalRms(UInt_t i) const { return fElecNoise[i]; } 74 Float_t GetPedestalRmsHigh(UInt_t i) const { return fPedesSigmaHigh[i]; } 75 Float_t GetPedestalRmsLow(UInt_t i) const { return fPedesSigmaLow[i]; } 76 Float_t GetElecNoise(UInt_t i) const { return fElecNoise[i]; } 64 77 Float_t GetAmplitud() const { return fAmplFadc; } 65 78 -
trunk/MagicSoft/include-Classes/MMcFormat/MMcRunHeader.cxx
r2283 r2394 103 103 fNumSimulatedShowers = 0; 104 104 fNumStoredShowers = 0; 105 fNumEvents = 0; 105 106 106 107 fStarFieldRaH = 0; … … 206 207 fNumSimulatedShowers = numsim; 207 208 fNumStoredShowers = numsto; 209 fNumEvents = numsto; 208 210 209 211 fStarFieldRaH = sfRaH; -
trunk/MagicSoft/include-Classes/MMcFormat/MTriggerDefine.h
r2345 r2394 9 9 #define TRIGGER_PIXELS_5 397 10 10 #define TRIGGER_PIXELS_6 1657 11 #define TRIGGER_PIXELS_8 1 0012 #define TRIGGER_PIXELS_9 1 0011 #define TRIGGER_PIXELS_8 126 12 #define TRIGGER_PIXELS_9 126 13 13 // 14 14 // This is the number of Pixels contributing to the TRIGGER logic
Note:
See TracChangeset
for help on using the changeset viewer.