Changeset 8210 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 11/02/06 19:54:22 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibCalcFromPast.cc
r8147 r8210 289 289 ReInitialize(); 290 290 291 *fLog << all << "MCalibCalcFromPast: Calibration Update..." << flush; 292 291 293 // 292 294 // Finalize Possible calibration histogram classes... 293 295 // 294 *fLog << inf << GetDescriptor() << ": Finalize calibration histograms: " << flush;296 *fLog << inf << "Finalize calibration histograms:" << endl; 295 297 296 298 // This fills the IntensityCam which are newly created by 297 299 // ReInitialize with the result of the last calib cycle 298 if (Finalize("MHCalibrationChargeCam")) *fLog << "MHCalibrationChargeCam..." << flush;299 if (Finalize("MHCalibrationChargeBlindCam")) *fLog << "MHCalibrationChargeBlindCam..." << flush;300 if (Finalize("MHCalibrationRelTimeCam")) *fLog << "MHCalibrationRelTimeCam..." << flush;300 Finalize("MHCalibrationChargeCam"); 301 Finalize("MHCalibrationChargeBlindCam"); 302 Finalize("MHCalibrationRelTimeCam"); 301 303 302 304 // … … 360 362 // - MHCalibrationCam::ResetHists() 361 363 // 362 Bool_tMCalibCalcFromPast::Finalize(const char* name, Bool_t finalize)364 void MCalibCalcFromPast::Finalize(const char* name, Bool_t finalize) 363 365 { 364 366 MHCalibrationCam *hist = (MHCalibrationCam*)fParList->FindObject(name, "MHCalibrationCam"); 365 367 if (!hist) 366 return kFALSE; 368 return; 369 370 *fLog << inf << "Finalize " << name << ":" << endl; 367 371 368 372 if (finalize) … … 370 374 371 375 hist->ResetHists(); 372 return kTRUE;373 376 } 374 377 -
trunk/MagicSoft/Mars/mcalib/MCalibCalcFromPast.h
r7288 r8210 69 69 // MCalibCalcFromPast 70 70 Bool_t ReInitialize(); 71 Bool_tFinalize(const char* name, Bool_t finalize=kTRUE);71 void Finalize(const char* name, Bool_t finalize=kTRUE); 72 72 73 73 Bool_t UpdateMeanPhes();
Note:
See TracChangeset
for help on using the changeset viewer.