Changeset 6964
- Timestamp:
- 04/20/05 13:12:20 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6963 r6964 33 33 // not necessary, because without running job2 it is identical 34 34 // with job1 35 36 * mjobs/MSequence.cc: 37 - use the sequence number'd directories in case of calibrated data 38 and image files instead of the date. 35 39 36 40 -
trunk/MagicSoft/Mars/NEWS
r6963 r6964 18 18 runs since some of the recent calibration runs have been taken 19 19 with Pin Diode. 20 21 - Changed the default paths for calibrated data and image files. 22 (The implemented access to these files doesn't yet exist) 20 23 21 24 -
trunk/MagicSoft/Mars/mjobs/MSequence.cc
r6908 r6964 223 223 case kRawAll: 224 224 d += "rawfiles/"; 225 d += fNight.GetStringFmt("%Y/%m/%d"); 225 226 break; 226 227 case kRootDat: … … 229 230 case kRootAll: 230 231 d += "merpp/"; 232 d += fNight.GetStringFmt("%Y/%m/%d"); 231 233 break; 232 234 case kCalibrated: 233 d += "callisto/";235 d += Form("callisto/%04d/%08d/", fSequence/10000, fSequence); 234 236 break; 235 237 case kImages: 236 d += "star/";238 d += Form("star/%04d/%08d/", fSequence/10000, fSequence); 237 239 break; 238 240 } 239 d += fNight.GetStringFmt("%Y/%m/%d");240 241 } 241 242 else
Note:
See TracChangeset
for help on using the changeset viewer.