Changeset 5405 for trunk/MagicSoft
- Timestamp:
- 11/16/04 10:05:51 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc
r5401 r5405 600 600 pattern & kCT1Pulser) && fPulserColor != MCalibrationCam::kNONE) 601 601 { 602 *fLog << err << "Multiple colours used simultaneously in calibration file. Will skip this part!" << endl; 603 return kFALSE; 602 *fLog << err << "Multiple colours used simultaneously in calibration file. Will reset histograms " 603 << " and merge the MCalibrationQECam!" << endl; 604 fHCam->Finalize(); 605 fHBlindCam->Finalize(); 606 fHCam->ResetHists(); 607 fHBlindCam->ResetHists(); 608 CallPostProcess(); 604 609 } 605 610 … … 1670 1675 qepix.SetFFactorMethodValid( kTRUE , fPulserColor ); 1671 1676 1672 if (!qepix.UpdateFFactorMethod( ))1677 if (!qepix.UpdateFFactorMethod( qecam->GetPlexiglassQE(), qecam->GetPlexiglassQERelVar() )) 1673 1678 *fLog << warn << GetDescriptor() 1674 1679 << ": Cannot update Quantum efficiencies with the F-Factor Method" << endl; … … 1898 1903 qepix.SetBlindPixelMethodValid( kTRUE , fPulserColor ); 1899 1904 1900 if (!qepix.UpdateBlindPixelMethod( ))1905 if (!qepix.UpdateBlindPixelMethod( qecam->GetPlexiglassQE(), qecam->GetPlexiglassQERelVar() )) 1901 1906 *fLog << warn << GetDescriptor() 1902 1907 << ": Cannot update Quantum efficiencies with the Blind Pixel Method" << endl; -
trunk/MagicSoft/Mars/mcalib/MCalibrationQEPix.cc
r5404 r5405 198 198 const Float_t MCalibrationQEPix::gkDefaultQEUVErr = 0.012; 199 199 const Float_t MCalibrationQEPix::gkDefaultQECT1Err = 0.012; 200 const Float_t MCalibrationQEPix::gkDefaultAverageQE = 0.18 200 const Float_t MCalibrationQEPix::gkDefaultAverageQE = 0.184; 201 201 const Float_t MCalibrationQEPix::gkDefaultAverageQEErr = 0.02 ; 202 202 const Float_t MCalibrationQEPix::gkPMTCollectionEff = 0.90 ;
Note:
See TracChangeset
for help on using the changeset viewer.