Changeset 8587 for trunk/MagicSoft/Mars/mjobs
- Timestamp:
- 06/19/07 14:21:52 (17 years ago)
- Location:
- trunk/MagicSoft/Mars/mjobs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjobs/MJSpectrum.cc
r8582 r8587 1332 1332 cont.Add(fDisplay); 1333 1333 1334 return WriteContainer(cont, fPathOut, "RECREATE");1335 } 1334 return WriteContainer(cont, "", "RECREATE"); 1335 } -
trunk/MagicSoft/Mars/mjobs/MJob.cc
r8539 r8587 286 286 287 287 TString oname(fPathOut); 288 oname += "/"; 289 oname += name; 288 if (!TString(name).IsNull()) 289 { 290 if (oname!="/") 291 oname += "/"; 292 oname += name; 293 } 290 294 291 295 *fLog << inf << "Writing to file: " << oname << endl;
Note:
See TracChangeset
for help on using the changeset viewer.