Changeset 4733 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
08/25/04 17:48:42 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

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

    r4732 r4733  
    7676    gLog << " If running in Mode-C and Mode-Y --iny= is obsolete,  instead --outc=" << endl;
    7777    gLog << " is used." << endl << endl;
     78    gLog << " Using  --iny=,  --outc=,  --outy=,  --out=  or --path= automatically" << endl;
     79    gLog << " enables the corresponmding modes.  In this case  -c/-y are obsolete." << endl << endl;
    7880    gLog << "Description:" << endl;
    7981    gLog << " callisto will calculate pedestals  from  pedestal-files defined in a" << endl;
     
    118120    const TString kPath       = arg.GetStringAndRemove("--path=", "");
    119121
    120     const Bool_t  kModeC      = arg.HasOnlyAndRemove("-c");
    121     const Bool_t  kModeY      = arg.HasOnlyAndRemove("-y");
     122          Bool_t  kModeC      = arg.HasOnlyAndRemove("-c");
     123          Bool_t  kModeY      = arg.HasOnlyAndRemove("-y");
     124
     125    if (!kInpathY.IsNull() || !kOutpathY.IsNull() || !kOutpath.IsNull() || !kPath.IsNull())
     126        kModeY = kTRUE;
     127    if (!kOutpathC.IsNull() || !kOutpath.IsNull() || !kPath.IsNull())
     128        kModeC = kTRUE;
    122129
    123130    if (!kModeC && !kModeY)
     
    262269        }
    263270
    264         gLog << endl << endl;
     271        gLog << all << endl << endl;
    265272    }
    266273
     
    311318        }
    312319
    313         gLog << endl << endl;
     320        gLog << all << endl << endl;
    314321    }
    315322
  • trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc

    r4732 r4733  
    9595    }
    9696
    97     const TString oname = Form("%s/calped%06d.root", (const char*)fPathOut, fSequence.GetSequence());
     97    const TString oname = Form("%s/signal%06d.root", (const char*)fPathOut, fSequence.GetSequence());
    9898
    9999    *fLog << inf << "Writing to file: " << oname << endl;
  • trunk/MagicSoft/Mars/mjobs/MJPedestal.cc

    r4732 r4733  
    100100{
    101101    if (fSequence.IsValid())
    102         return Form("%s/calped%06d.root", (const char*)fPathOut, fSequence.GetSequence());
     102        return Form("%s/pedest%06d.root", (const char*)fPathOut, fSequence.GetSequence());
    103103
    104104    if (!fRuns)
Note: See TracChangeset for help on using the changeset viewer.