Changeset 4321 for trunk/MagicSoft/Mars
- Timestamp:
- 06/22/04 13:35:09 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc
r4320 r4321 992 992 const Int_t ndf = hist->GetFunction("gaus")->GetNDF(); 993 993 994 if (ndf < 2)994 if (ndf < 1) 995 995 { 996 996 *fLog << warn << GetDescriptor() << ": Cannot use a Gauss fit to the number of photo-electrons " … … 1004 1004 const Double_t prob = hist->GetFunction("gaus")->GetProb(); 1005 1005 1006 if (prob < 0.00 1)1006 if (prob < 0.0005) 1007 1007 { 1008 1008 *fLog << warn << GetDescriptor() << ": Cannot use a Gauss fit to the number of photo-electrons " … … 1400 1400 const Int_t ndf = hist->GetFunction("gaus")->GetNDF(); 1401 1401 1402 if (ndf < 2)1402 if (ndf < 1) 1403 1403 { 1404 1404 *fLog << warn << GetDescriptor() << ": Cannot use a Gauss fit to the F-Factor " … … 1412 1412 const Double_t prob = hist->GetFunction("gaus")->GetProb(); 1413 1413 1414 if (prob < 0.00 1)1414 if (prob < 0.0005) 1415 1415 { 1416 1416 *fLog << warn << GetDescriptor() << ": Cannot use a Gauss fit to the F-Factor "
Note:
See TracChangeset
for help on using the changeset viewer.