Changeset 4321 for trunk


Ignore:
Timestamp:
06/22/04 13:35:09 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc

    r4320 r4321  
    992992      const Int_t   ndf   = hist->GetFunction("gaus")->GetNDF();
    993993
    994       if (ndf < 2)
     994      if (ndf < 1)
    995995        {
    996996          *fLog << warn << GetDescriptor() << ": Cannot use a Gauss fit to the number of photo-electrons "
     
    10041004      const Double_t prob = hist->GetFunction("gaus")->GetProb();
    10051005
    1006       if (prob < 0.001)
     1006      if (prob < 0.0005)
    10071007        {
    10081008          *fLog << warn << GetDescriptor() << ": Cannot use a Gauss fit to the number of photo-electrons "
     
    14001400      const Int_t   ndf   = hist->GetFunction("gaus")->GetNDF();
    14011401
    1402       if (ndf < 2)
     1402      if (ndf < 1)
    14031403        {
    14041404          *fLog << warn << GetDescriptor() << ": Cannot use a Gauss fit to the F-Factor "
     
    14121412      const Double_t prob = hist->GetFunction("gaus")->GetProb();
    14131413
    1414       if (prob < 0.001)
     1414      if (prob < 0.0005)
    14151415        {
    14161416          *fLog << warn << GetDescriptor() << ": Cannot use a Gauss fit to the F-Factor "
Note: See TracChangeset for help on using the changeset viewer.