Changeset 6155 for trunk/MagicSoft
- Timestamp:
- 01/31/05 16:22:52 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6150 r6155 30 30 * mjobs/MJCalibrateSignal.[h,cc] 31 31 - allow also for direct setting of an MRunIter (not used in callisto). 32 33 * mcalib/MCalibrationChargeCalc.[h,cc] 34 - test also for pulser strength changes additionally to changes in 35 colour. 32 36 33 37 -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc
r6074 r6155 590 590 591 591 const MCalibrationCam::PulserColor_t col = fCalibPattern->GetPulserColor(); 592 593 if (col == fPulserColor) 592 const Float_t strength = fCalibPattern->GetPulserStrength(); 593 const Float_t strdiff = TMath::Abs(strength-fStrength); 594 595 if (col == fPulserColor && strdiff < 0.05 ) 594 596 { 595 597 fNumProcessed++; … … 630 632 631 633 fPulserColor = col; 634 fStrength = strength; 632 635 633 636 *fLog << inf << "Found new colour ... " << flush; … … 642 645 } 643 646 644 *fLog << inf << " with strength: " << fCalibPattern->GetPulserStrength()<< endl;647 *fLog << inf << " with strength: " << strength << endl; 645 648 646 649 fHCam->SetColor(col); -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeDigitalFilterPeakSearch.cc
r6153 r6155 79 79 const Byte_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgHiGainFirst = 0; 80 80 const Byte_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgHiGainLast = 20; 81 const Byte_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgLoGainFirst = 1;81 const Byte_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgLoGainFirst = 0; 82 82 const Byte_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgLoGainLast = 14; 83 83 const Byte_t MExtractTimeAndChargeDigitalFilterPeakSearch::fgOffsetLeftFromPeak = 1;
Note:
See TracChangeset
for help on using the changeset viewer.