- Timestamp:
- 10/05/04 19:05:25 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5192 r5193 25 25 - fixed small bug for the case that multiple colours are found, but 26 26 no intensity calibration is used. 27 28 * msignal/MExtractTimeAndCharge.cc 29 - fixed small bug in the calculation of the low-gain AB flag. 30 27 31 28 32 2004/10/05: Thomas Bretz -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndCharge.cc
r5146 r5193 166 166 const Int_t pixid = pixel.GetPixelId(); 167 167 const MPedestalPix &ped = (*fPedestals)[pixid]; 168 const Bool_t higainabflag = pixel.HasABFlag(); 168 169 169 170 FindTimeAndChargeHiGain(pixel.GetHiGainSamples()+fHiGainFirst, pixel.GetLoGainSamples(), 170 171 sumhi, deltasumhi, 171 172 timehi, deltatimehi, 172 sathi, ped, pixel.HasABFlag());173 sathi, ped, higainabflag); 173 174 174 175 Float_t sumlo =0., deltasumlo =0.; 175 176 Float_t timelo=0., deltatimelo=0.; 176 177 Byte_t satlo=0; 178 179 const Int_t logainflag = higainabflag + pixel.GetNumHiGainSamples(); 177 180 178 181 FindTimeAndChargeLoGain(pixel.GetLoGainSamples()+fLoGainFirst, 179 182 sumlo, deltasumlo, 180 183 timelo, deltatimelo, 181 satlo, ped, pixel.HasABFlag());184 satlo, ped, logainflag & 0x1); 182 185 183 186 MExtractedSignalPix &pix = (*fSignals)[pixid];
Note:
See TracChangeset
for help on using the changeset viewer.