Changeset 4875


Ignore:
Timestamp:
09/07/04 11:26:14 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/merpp.cc

    r4740 r4875  
    7676    gLog << " File Options:" << endl;
    7777    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;
    7980    gLog << " Raw Data Options:" << endl;
    8081    gLog << "   -ff                       Force merpp to ignore broken events" << endl;
  • trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc

    r4870 r4875  
    250250
    251251    if (!geom.IsNull())
    252         *fLog << inf << "Camera geometry found in file: " << geom.ClassName() << endl;
     252        *fLog << inf << "Camera geometry found in file: " << geom << endl;
    253253    else
    254254        *fLog << inf << "No Camera geometry found using default <MGeomCamMagic>" << endl;
  • trunk/MagicSoft/Mars/mraw/MRawRunHeader.cc

    r4738 r4875  
    211211// --------------------------------------------------------------------------
    212212//
    213 // print run header information on *fLog
     213// print run header information on *fLog. The option 'header' supresses
     214// the pixel index translation table.
    214215//
    215216void MRawRunHeader::Print(Option_t *t) const
     
    236237    *fLog << "Evt Counter:  " << fNumEvents << endl;
    237238
     239    if (TString(t).Contains("header", TString::kIgnoreCase))
     240        return;
     241
    238242    *fLog << inf << hex;
    239243    for (int i=0; i<GetNumPixel(); i++)
Note: See TracChangeset for help on using the changeset viewer.