Changeset 9058
- Timestamp:
- 07/31/08 10:40:13 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9057 r9058 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2008/07/31 Thomas Bretz 22 23 * merpp.cc: 24 - fixed merpping a single report file 25 - Strip the dir name from MJMerpp's name 26 27 * mreports/MReportCamera.cc: 28 - also allow empty HV Settings file names 29 30 20 31 21 32 2008/07/30 Thomas Bretz -
trunk/MagicSoft/Mars/merpp.cc
r9043 r9058 124 124 { 125 125 return 126 name.EndsWith(".rep") || name.EndsWith(".txt") || 127 name.EndsWith(".raw") || name.EndsWith(".raw.gz"); 126 name.EndsWith(".rep") || name.EndsWith(".txt") || 127 name.EndsWith(".raw") || name.EndsWith(".raw.gz") || 128 name.EndsWith(".root"); 128 129 } 129 130 … … 207 208 208 209 const Bool_t isseq = 209 (narg==1 && !(HasExtension(arg0) && !arg0.EndsWith(".txt"))) ||210 (narg==2 && !HasExtension(arg1)) ||210 (narg==1 && arg0.EndsWith(".txt")) || 211 (narg==2 && !HasExtension(arg1)) || 211 212 (narg==3); 212 213 … … 218 219 kNamein = arg2; 219 220 220 if ( HasExtension(arg2)) // set --summary221 if (arg2.EndsWith(".txt")) // set --summary 221 222 kHeaderRun = 0; 222 223 … … 246 247 247 248 { 248 MJMerpp merpp(Form("MJMerpp %s", arg0.Data()));249 MJMerpp merpp(Form("MJMerpp %s", gSystem->BaseName(arg0.Data()))); 249 250 merpp.SetOverwrite(kOverwrite); 250 251 merpp.SetCompression(kComprlvl);
Note:
See TracChangeset
for help on using the changeset viewer.