Ignore:
Timestamp:
09/16/04 09:17:25 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfilter/MFDeltaT.cc

    r4991 r5060  
    7878    fNameTime   = time;
    7979
    80     fErrors.Set(4);
     80    fErrors.Set(5);
    8181
    8282    AddToBranchList(Form("%s.*", (const char*)fNameTime));
     
    130130        if (dt>fUpperLimit)
    131131            i=3;
     132        if (TMath::Floor(fTime->GetMjd())==fTime->GetMjd())
     133            i=4;
    132134    }
    133135
     
    151153    PrintSkipped(fErrors[1], "Delta-T  < 0");
    152154    PrintSkipped(fErrors[2], "Delta-T == 0");
    153     PrintSkipped(fErrors[3], Form("Delta-T > %.2fs", fUpperLimit));
    154     *fLog << " " << (int)fErrors[0] << " (" << (int)(100.*fErrors[0]/GetNumExecutions()) << "%) Evts fullfilled filter condition!" << endl;
     155    PrintSkipped(fErrors[3], Form("Delta-T  > %.2fs", fUpperLimit));
     156    PrintSkipped(fErrors[4], "Delta-T == floor(Delta-T)");
     157    *fLog << " " << (int)fErrors[0] << " (";
     158    *fLog << Form("5.1f", 100.*fErrors[0]/GetNumExecutions());
     159    *fLog << "%) Evts fullfilled filter condition!" << endl;
    155160    *fLog << endl;
    156161
Note: See TracChangeset for help on using the changeset viewer.