Changeset 7801 for trunk/MagicSoft
- Timestamp:
- 07/26/06 10:36:25 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7800 r7801 18 18 19 19 -*-*- 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 20 29 2006/07/23 Thomas Bretz 21 30 -
trunk/MagicSoft/Mars/datacenter/macros/fillsinope.C
r7528 r7801 108 108 for (Int_t i=0 ; i<9 ; i++) 109 109 { 110 // cout << "value: " << values[i] << endl;111 // cout << "str: " << str << endl;112 110 str = env.GetValue(values[i], ""); 113 111 if (str.IsNull()) -
trunk/MagicSoft/Mars/mbase/MContinue.h
r6949 r7801 26 26 27 27 // 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(); 31 31 32 32 // MContinue -
trunk/MagicSoft/Mars/merpp.cc
r7432 r7801 64 64 gLog << all << endl; 65 65 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; 67 67 gLog << " Arguments:" << endl; 68 gLog << " inputfile.raw 68 gLog << " inputfile.raw[.gz] Magic DAQ binary file." << endl; 69 69 gLog << " inputfile.rep Magic Central Control report file." << endl; 70 70 gLog << " inputfile.txt Magic DC currents file." << endl; … … 213 213 const Bool_t israw = !isreport && !isdc; 214 214 215 if (!kNamein.EndsWith(".raw") && israw)216 kNamein += ".raw ";215 if (!kNamein.EndsWith(".raw") && !kNamein.EndsWith(".raw.gz") && israw) 216 kNamein += ".raw.gz"; 217 217 218 218 if (kNameout.IsNull()) -
trunk/MagicSoft/Mars/star.cc
r7432 r7801 30 30 gLog << " Star - MARS V" << MARSVER << endl; 31 31 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; 33 33 gLog << "========================================================" << endl; 34 34 gLog << endl;
Note:
See TracChangeset
for help on using the changeset viewer.