Changeset 4733 for trunk/MagicSoft/Mars
- Timestamp:
- 08/25/04 17:48:42 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/callisto.cc
r4732 r4733 76 76 gLog << " If running in Mode-C and Mode-Y --iny= is obsolete, instead --outc=" << endl; 77 77 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; 78 80 gLog << "Description:" << endl; 79 81 gLog << " callisto will calculate pedestals from pedestal-files defined in a" << endl; … … 118 120 const TString kPath = arg.GetStringAndRemove("--path=", ""); 119 121 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; 122 129 123 130 if (!kModeC && !kModeY) … … 262 269 } 263 270 264 gLog << endl << endl;271 gLog << all << endl << endl; 265 272 } 266 273 … … 311 318 } 312 319 313 gLog << endl << endl;320 gLog << all << endl << endl; 314 321 } 315 322 -
trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc
r4732 r4733 95 95 } 96 96 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()); 98 98 99 99 *fLog << inf << "Writing to file: " << oname << endl; -
trunk/MagicSoft/Mars/mjobs/MJPedestal.cc
r4732 r4733 100 100 { 101 101 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()); 103 103 104 104 if (!fRuns)
Note:
See TracChangeset
for help on using the changeset viewer.