Changeset 7801 for trunk/MagicSoft


Ignore:
Timestamp:
07/26/06 10:36:25 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7800 r7801  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20 2006/07/26 Thomas Bretz
     21
     22   * merpp.cc:
     23     - files with the extension .raw.gz were not found. fixed. This
     24       is necessary because raw-files must be merpped before they can
     25       be displayed with the mars-gui.
     26
     27
     28
    2029 2006/07/23 Thomas Bretz
    2130 
  • trunk/MagicSoft/Mars/datacenter/macros/fillsinope.C

    r7528 r7801  
    108108    for (Int_t i=0 ; i<9 ; i++)
    109109    {
    110 //        cout << "value: " << values[i] << endl;
    111 //        cout << "str: " << str << endl;
    112110        str = env.GetValue(values[i], "");
    113111        if (str.IsNull())
  • trunk/MagicSoft/Mars/mbase/MContinue.h

    r6949 r7801  
    2626
    2727    // MTask
    28     Int_t PreProcess(MParList *list);
    29     Int_t Process() { return kCONTINUE; }
    30     Int_t PostProcess();
     28    Int_t  PreProcess(MParList *list);
     29    Int_t  Process() { return kCONTINUE; }
     30    Int_t  PostProcess();
    3131
    3232    // MContinue
  • trunk/MagicSoft/Mars/merpp.cc

    r7432 r7801  
    6464    gLog << all << endl;
    6565    gLog << "Sorry the usage is:" << endl;
    66     gLog << " merpp [options] inputfile[.rep,[.raw],[.txt]] [outputfile[.root]]" << endl << endl;
     66    gLog << " merpp [options] inputfile[.rep,[.raw.gz],[.txt]] [outputfile[.root]]" << endl << endl;
    6767    gLog << " Arguments:" << endl;
    68     gLog << "   inputfile.raw             Magic DAQ binary file." << endl;
     68    gLog << "   inputfile.raw[.gz]        Magic DAQ binary file." << endl;
    6969    gLog << "   inputfile.rep             Magic Central Control report file." << endl;
    7070    gLog << "   inputfile.txt             Magic DC currents file." << endl;
     
    213213    const Bool_t israw    = !isreport && !isdc;
    214214
    215     if (!kNamein.EndsWith(".raw") && israw)
    216         kNamein += ".raw";
     215    if (!kNamein.EndsWith(".raw") && !kNamein.EndsWith(".raw.gz") && israw)
     216        kNamein += ".raw.gz";
    217217
    218218    if (kNameout.IsNull())
  • trunk/MagicSoft/Mars/star.cc

    r7432 r7801  
    3030    gLog << "                   Star - MARS V" << MARSVER              << endl;
    3131    gLog << "      MARS -- STandard Analysis and Reconstruction"       << endl;
    32     gLog << "   Compiled with ROOT v" << ROOTVER << " on <" << __DATE__ << ">" << endl;
     32    gLog << "     Compiled with ROOT v" << ROOTVER << " on <" << __DATE__ << ">" << endl;
    3333    gLog << "========================================================" << endl;
    3434    gLog << endl;
Note: See TracChangeset for help on using the changeset viewer.