Changeset 6328
- Timestamp:
- 02/10/05 01:28:54 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6326 r6328 63 63 * msignal/MExtractTimeAndChargeDigitalFilterPeakSearch.cc 64 64 - initialize the bad events counters to 0 also in constructor 65 - release the limit for bad events a bit 66 65 67 66 68 2005/02/08 Markus Gaug -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeDigitalFilterPeakSearch.cc
r6327 r6328 82 82 const Byte_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgOffsetRightFromPeak = 3; 83 83 const Byte_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgPeakSearchWindowSize = 2; 84 const Int_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgHiGainFailureLimit = 5;85 const Int_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgLoGainFailureLimit = 1 0;84 const Int_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgHiGainFailureLimit = 10; 85 const Int_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgLoGainFailureLimit = 15; 86 86 // -------------------------------------------------------------------------- 87 87 // … … 294 294 295 295 Byte_t higainfirst = fHiGainFirst; 296 UInt_t peakpixel = 0; 296 297 297 298 while (pixel.Next()) … … 310 311 maxsumhi = sumhi; 311 312 higainfirst = fHiGainFirst + startslice; 313 peakpixel = pixel.GetPixelId(); 312 314 } 313 315 else if (sat) … … 331 333 else 332 334 { 333 // *fLog << err << (Int_t)higainfirst << " " << (int)fHiGainFirst << " " << (int)fOffsetLeftFromPeak<< endl;335 // *fLog << err << (Int_t)higainfirst << " " << peakpixel << endl; 334 336 fHiGainOutOfRangeLeft++; 335 337 } … … 350 352 { 351 353 fHiGainOutOfRangeRight++; 352 // *fLog << err << (Int_t)higainfirst << endl;354 // *fLog << err << (Int_t)higainfirst << " " << peakpixel << endl; 353 355 } 354 356
Note:
See TracChangeset
for help on using the changeset viewer.