Changeset 8904


Ignore:
Timestamp:
06/01/08 10:20:13 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8903 r8904  
    1818
    1919                                                 -*-*- 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
    2027
    2128
  • trunk/MagicSoft/Mars/NEWS

    r8902 r8904  
    8484      If the trigger pattern is corrupted events won't pass anymore.
    8585
    86     * Added a new command line option --null to suppress output of
     86    * Added a new command line option --dev-null to suppress output of
    8787      Y-files (this is useful for test cases)
    8888
     
    9191    * the star file now contains also the sequence information
    9292
    93     * Added a new command line option --null to suppress output of
     93    * Added a new command line option --dev-null to suppress output of
    9494      I-files (this is useful for test cases)
    9595
  • trunk/MagicSoft/Mars/callisto.cc

    r8902 r8904  
    7878    gLog << "   --path=path               Path to write the all results to [def=local path]" << endl;
    7979    gLog << "                             (overwrites --iny, --outc and --outy)" << endl;
    80     gLog << "   --null                    Suppress output of Y-files (for test purpose)" << endl;
     80    gLog << "   --dev-null                Suppress output of Y-files (for test purpose)" << endl;
    8181    gLog << "   --print-seq               Print Sequence information" << endl;
    8282    gLog << "   --print-files             Print Files taken from Sequence" << endl;
     
    175175    const Bool_t  kMovie      = arg.HasOnlyAndRemove("--movie");
    176176    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");
    178178//          Bool_t  kMoon       = arg.HasOnlyAndRemove("--moon");
    179179    Int_t kDebugEnv = arg.HasOnlyAndRemove("--debug-env") ? 1 : 0;
  • trunk/MagicSoft/Mars/star.cc

    r8902 r8904  
    6868    gLog << "   --out=path                Path to write the all results to [def=local path]" << endl;
    6969    gLog << "                             (overwrites --outc and --outy)" << endl;
    70     gLog << "   --null                    Suppress output of I-files (for test purpose)" << endl;
     70    gLog << "   --dev-null                Suppress output of I-files (for test purpose)" << endl;
    7171    gLog << "   --no-muons                Switch off Muon analysis (for fast tests)" << endl;
    7272    gLog << "   --print-seq               Print Sequence information" << endl;
     
    122122    const Bool_t  kPrintFound = arg.HasOnlyAndRemove("--print-found");
    123123    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");
    125125    Int_t  kDebugEnv = arg.HasOnlyAndRemove("--debug-env") ? 1 : 0;
    126126    kDebugEnv = arg.GetIntAndRemove("--debug-env=", kDebugEnv);
Note: See TracChangeset for help on using the changeset viewer.