Changeset 4875
- Timestamp:
- 09/07/04 11:26:14 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/merpp.cc
r4740 r4875 76 76 gLog << " File Options:" << endl; 77 77 gLog << " -c# Compression level #=1..9 [default=2]" << endl; 78 gLog << " -f Force overwrite of an existing file" << endl << endl; 78 gLog << " -f Force overwrite of an existing file" << endl; 79 gLog << " -u, --update Update an existing file." << endl << endl; 79 80 gLog << " Raw Data Options:" << endl; 80 81 gLog << " -ff Force merpp to ignore broken events" << endl; -
trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc
r4870 r4875 250 250 251 251 if (!geom.IsNull()) 252 *fLog << inf << "Camera geometry found in file: " << geom .ClassName()<< endl;252 *fLog << inf << "Camera geometry found in file: " << geom << endl; 253 253 else 254 254 *fLog << inf << "No Camera geometry found using default <MGeomCamMagic>" << endl; -
trunk/MagicSoft/Mars/mraw/MRawRunHeader.cc
r4738 r4875 211 211 // -------------------------------------------------------------------------- 212 212 // 213 // print run header information on *fLog 213 // print run header information on *fLog. The option 'header' supresses 214 // the pixel index translation table. 214 215 // 215 216 void MRawRunHeader::Print(Option_t *t) const … … 236 237 *fLog << "Evt Counter: " << fNumEvents << endl; 237 238 239 if (TString(t).Contains("header", TString::kIgnoreCase)) 240 return; 241 238 242 *fLog << inf << hex; 239 243 for (int i=0; i<GetNumPixel(); i++)
Note:
See TracChangeset
for help on using the changeset viewer.