Changeset 9313 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 02/11/09 10:48:24 (16 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibColorSet.cc
r7122 r9313 57 57 58 58 const Int_t MCalibColorSet::gkIFAEBoxInaugurationRun = 20113; 59 const Int_t MCalibColorSet::gkMCRunLimit = 1000;60 59 const UInt_t MCalibColorSet::gkFirstRunWithFinalBits = 45626; 61 60 … … 193 192 *fLog << inf << "Run taken before inauguration of IFAE-box... using CT1 pulser." << endl; 194 193 fColor = MCalibrationCam::kCT1; 194 fStrength = 10.; 195 195 fPattern->SetPulserColor(fColor); 196 196 fPattern->SetPulserStrength(fStrength); 197 fStrength = 10.;198 197 fIsValid = kTRUE; 199 198 return kTRUE; … … 341 340 *fLog << err << "Sorry, run 27474 was taken with CLOSED LIDS. It should not be used! " << endl; 342 341 return kFALSE; 343 break;344 342 345 343 case 40493: … … 351 349 *fLog << err << "the camera. It cannot be used for the standard calibration " << endl; 352 350 return kFALSE; 353 break;354 351 355 352 case 45605: … … 357 354 *fLog << err << "It cannot be used for calibration. Try to run a pedestal extraction on it." << endl; 358 355 return kFALSE; 359 break;360 356 361 357 case 45606: … … 363 359 *fLog << err << "It cannot be used for calibration. Try to run a pedestal extraction on it." << endl; 364 360 return kFALSE; 365 break;366 361 367 362 } -
trunk/MagicSoft/Mars/mcalib/MCalibColorSet.h
r6231 r9313 19 19 20 20 static const Int_t gkIFAEBoxInaugurationRun; //! Run number of first IFAE box calibration (set to: 20113) 21 static const Int_t gkMCRunLimit; //! Maximum MC run number (now set to: 1000)22 21 static const UInt_t gkFirstRunWithFinalBits; //! Run number of first functionning digital modules 23 22 -
trunk/MagicSoft/Mars/mcalib/MCalibrateData.cc
r9036 r9313 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MCalibrateData.cc,v 1.7 2 2008-07-22 18:55:08tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MCalibrateData.cc,v 1.73 2009-02-11 10:48:24 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 683 683 { 684 684 *fLog << err << GetDescriptor() << ": ERROR - "; 685 *fLog << "GetConversionFactor has skipped more than 90% of the pixels... abort." << endl;685 *fLog << "GetConversionFactor has skipped more than 90% of the " << fGeomCam->GetNumPixels() << " pixels... abort." << endl; 686 686 return kFALSE; 687 687 } -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc
r8907 r9313 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MCalibrationChargeCalc.cc,v 1.18 4 2008-06-02 08:46:44 tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MCalibrationChargeCalc.cc,v 1.185 2009-02-11 10:48:24 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 665 665 if (fPulserColor == MCalibrationCam::kNONE) 666 666 { 667 *fLog << warn << "WARNING - No Pulse colour has been set or used at all..." << endl;668 return k TRUE;667 *fLog << err << "ERROR - No event was flagged with a pulser color... no calibration possible." << endl; 668 return kFALSE; 669 669 } 670 670
Note:
See TracChangeset
for help on using the changeset viewer.