Changeset 8904
- Timestamp:
- 06/01/08 10:20:13 (17 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8903 r8904 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 22 2008/06/01 Thomas Bretz 23 24 * callisto.cc, star.cc: 25 - renamed new option to "--null-dev" (clashes with MLog options) 26 20 27 21 28 -
trunk/MagicSoft/Mars/NEWS
r8902 r8904 84 84 If the trigger pattern is corrupted events won't pass anymore. 85 85 86 * Added a new command line option -- null to suppress output of86 * Added a new command line option --dev-null to suppress output of 87 87 Y-files (this is useful for test cases) 88 88 … … 91 91 * the star file now contains also the sequence information 92 92 93 * Added a new command line option -- null to suppress output of93 * Added a new command line option --dev-null to suppress output of 94 94 I-files (this is useful for test cases) 95 95 -
trunk/MagicSoft/Mars/callisto.cc
r8902 r8904 78 78 gLog << " --path=path Path to write the all results to [def=local path]" << endl; 79 79 gLog << " (overwrites --iny, --outc and --outy)" << endl; 80 gLog << " -- nullSuppress output of Y-files (for test purpose)" << endl;80 gLog << " --dev-null Suppress output of Y-files (for test purpose)" << endl; 81 81 gLog << " --print-seq Print Sequence information" << endl; 82 82 gLog << " --print-files Print Files taken from Sequence" << endl; … … 175 175 const Bool_t kMovie = arg.HasOnlyAndRemove("--movie"); 176 176 const Bool_t kDebugMem = arg.HasOnlyAndRemove("--debug-mem"); 177 const Bool_t kNullOut = arg.HasOnlyAndRemove("-- null");177 const Bool_t kNullOut = arg.HasOnlyAndRemove("--dev-null"); 178 178 // Bool_t kMoon = arg.HasOnlyAndRemove("--moon"); 179 179 Int_t kDebugEnv = arg.HasOnlyAndRemove("--debug-env") ? 1 : 0; -
trunk/MagicSoft/Mars/star.cc
r8902 r8904 68 68 gLog << " --out=path Path to write the all results to [def=local path]" << endl; 69 69 gLog << " (overwrites --outc and --outy)" << endl; 70 gLog << " -- nullSuppress output of I-files (for test purpose)" << endl;70 gLog << " --dev-null Suppress output of I-files (for test purpose)" << endl; 71 71 gLog << " --no-muons Switch off Muon analysis (for fast tests)" << endl; 72 72 gLog << " --print-seq Print Sequence information" << endl; … … 122 122 const Bool_t kPrintFound = arg.HasOnlyAndRemove("--print-found"); 123 123 const Bool_t kDebugMem = arg.HasOnlyAndRemove("--debug-mem"); 124 const Bool_t kNullOut = arg.HasOnlyAndRemove("-- null");124 const Bool_t kNullOut = arg.HasOnlyAndRemove("--dev-null"); 125 125 Int_t kDebugEnv = arg.HasOnlyAndRemove("--debug-env") ? 1 : 0; 126 126 kDebugEnv = arg.GetIntAndRemove("--debug-env=", kDebugEnv);
Note:
See TracChangeset
for help on using the changeset viewer.