Ignore:
Timestamp:
10/27/06 14:39:36 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mjtrain/MJTrainSeparation.cc

    r8164 r8170  
    288288    }
    289289
    290     *fLog << all << "Observation Time:     " << TMath::Nint(ontime/60) << "min" << endl;
    291     *fLog << "Maximum Significance: " << Form("%.1f", sig1) << " [";
    292     *fLog << Form("%.1f", sig1/TMath::Sqrt(ontime/3600)) << "/sqrt(h)]";
     290    if (ontime>0)
     291        *fLog << all << "Observation Time:     " << TMath::Nint(ontime/60) << "min" << endl;
     292    *fLog << "Maximum Significance: " << Form("%.1f", sig1);
     293    if (ontime>0)
     294        *fLog << Form(" [%.1f/sqrt(h)]", sig1/TMath::Sqrt(ontime/3600));
    293295    *fLog << endl;
    294296
Note: See TracChangeset for help on using the changeset viewer.