Changeset 7989
- Timestamp:
- 09/28/06 13:31:59 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7987 r7989 62 62 - updated the confusing error message printed to the log-stream 63 63 in case of a failure of FillSrcPosCam 64 65 * callisto.cc: 66 - fixed small bug in PrintFiles 64 67 65 68 -
trunk/MagicSoft/Mars/callisto.cc
r7760 r7989 119 119 } 120 120 121 static void PrintFiles(const MSequence &seq, const TString &kInpathD, Bool_t raw, Bool_t all)121 static void PrintFiles(const MSequence &seq, const TString &kInpathD, Bool_t raw, Bool_t showall) 122 122 { 123 const char *prep = all ? "Found" : "Scheduled";123 const char *prep = showall ? "Found" : "Scheduled"; 124 124 125 125 MDirIter Next1, Next2, Next3; … … 130 130 gLog << all; 131 131 gLog.Separator(Form("%s Pedestal Files", prep)); 132 Next1.Print( all?"all":"");132 Next1.Print(showall?"all":""); 133 133 gLog << endl; 134 134 gLog.Separator(Form("%s Calibration Files", prep)); 135 Next2.Print( all?"all":"");135 Next2.Print(showall?"all":""); 136 136 gLog << endl; 137 137 gLog.Separator(Form("%s Data Files", prep)); 138 Next3.Print( all?"all":"");138 Next3.Print(showall?"all":""); 139 139 gLog << endl; 140 140 }
Note:
See TracChangeset
for help on using the changeset viewer.