Changeset 6887
- Timestamp:
- 03/24/05 11:14:13 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6883 r6887 21 21 22 22 -*-*- END OF LINE -*-*- 23 24 2005/03/23 Markus Gaug 25 26 * msignal/MExtractTimeAndChargeDigitalFilter.cc 27 - fix a bug in the time fine adjustment 28 29 * mjobs/hilocalib_*_mc.root 30 - high-gain low-gain intercalibration constants for the MC. 31 32 * mjobs/MJCalibration.cc 33 - use the MC- intercalibration files for MC. 34 35 36 37 2005/03/23 Thomas Bretz 38 39 * mhcalib/MHCalibrationChargeCam.cc: 40 - fixed a possible crash in DrawDataCheckPixel() if 41 pix.GetGraphEvents() returns NULL 42 43 44 23 45 2005/03/23 Thomas Bretz 24 46 -
trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
r6874 r6887 1477 1477 { 1478 1478 1479 if (!fIsHiLoCalibration || IsUseMC())1479 if (!fIsHiLoCalibration) 1480 1480 return kTRUE; 1481 1481 … … 1582 1582 1583 1583 fHiLoCalibFile = GetEnv("HiLoCalibFile",fHiLoCalibFile.Data()); 1584 1585 if (IsUseMC() && !fHiLoCalibFile.EndsWith("_mc.root")) 1586 { 1587 if (!fHiLoCalibFile.EndsWith(".root")) 1588 { 1589 *fLog << warn << "WARNING - Hi-/Lo-Gain intercalibration file "; 1590 *fLog << fHiLoCalibFile << " has not .root as extension..." << endl; 1591 } 1592 else 1593 fHiLoCalibFile.Insert(fHiLoCalibFile.Length()-5, "_mc"); 1594 } 1584 1595 1585 1596 return ReadHiLoCalibFile(); -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeDigitalFilter.cc
r6840 r6887 406 406 const Float_t timefineadjust = time_sum/sum; 407 407 408 if ( timefineadjust < 2./fBinningResolutionHiGain)408 if (TMath::Abs(timefineadjust) < 4./fBinningResolutionHiGain) 409 409 time -= timefineadjust; 410 410 … … 542 542 const Float_t timefineadjust = time_sum/sum; 543 543 544 if ( timefineadjust < 2./fBinningResolutionLoGain)544 if (TMath::Abs(timefineadjust) < 4./fBinningResolutionLoGain) 545 545 time -= timefineadjust; 546 546
Note:
See TracChangeset
for help on using the changeset viewer.