Changeset 7989


Ignore:
Timestamp:
09/28/06 13:31:59 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7987 r7989  
    6262     - updated the confusing error message printed to the log-stream
    6363       in case of a failure of FillSrcPosCam
     64
     65   * callisto.cc:
     66     - fixed small bug in PrintFiles
    6467
    6568
  • trunk/MagicSoft/Mars/callisto.cc

    r7760 r7989  
    119119}
    120120
    121 static void PrintFiles(const MSequence &seq, const TString &kInpathD, Bool_t raw, Bool_t all)
     121static void PrintFiles(const MSequence &seq, const TString &kInpathD, Bool_t raw, Bool_t showall)
    122122{
    123     const char *prep = all ? "Found" : "Scheduled";
     123    const char *prep = showall ? "Found" : "Scheduled";
    124124
    125125    MDirIter Next1, Next2, Next3;
     
    130130    gLog << all;
    131131    gLog.Separator(Form("%s Pedestal Files", prep));
    132     Next1.Print(all?"all":"");
     132    Next1.Print(showall?"all":"");
    133133    gLog << endl;
    134134    gLog.Separator(Form("%s Calibration Files", prep));
    135     Next2.Print(all?"all":"");
     135    Next2.Print(showall?"all":"");
    136136    gLog << endl;
    137137    gLog.Separator(Form("%s Data Files", prep));
    138     Next3.Print(all?"all":"");
     138    Next3.Print(showall?"all":"");
    139139    gLog << endl;
    140140}
Note: See TracChangeset for help on using the changeset viewer.