Changeset 3465
- Timestamp:
- 03/10/04 19:11:26 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3464 r3465 37 37 - replaced some InitSize(idx) by InitSize(idx+1) in order not to crash 38 38 to program when reading from an ascii-file. 39 40 * mbadpixels/MBadPixelsCalc.cc 41 - replaced one SetUnsuitableRun(....) by the new version without 42 argument. 39 43 40 44 -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCalc.cc
r3420 r3465 150 150 151 151 if (pixPedRms*nratio > fPedestalLevel * meanPedRMS || pixPedRms == 0) 152 (*fBadPixels)[i].SetUnsuitableEvt( MBadPixelsPix::kUnsuitableEvt);152 (*fBadPixels)[i].SetUnsuitableEvt(); 153 153 } 154 154 } -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc
r3461 r3465 202 202 Int_t idx; 203 203 const Int_t n = sscanf(str.Data(), " %d %n", &idx, &len); 204 204 205 if (n!=1) 205 206 break; … … 208 209 209 210 if (idx>=GetSize()) 210 InitSize(idx );211 InitSize(idx+1); 211 212 212 213 (*this)[idx].SetUnsuitableRun();
Note:
See TracChangeset
for help on using the changeset viewer.