Changeset 6964


Ignore:
Timestamp:
04/20/05 13:12:20 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6963 r6964  
    3333       // not necessary, because without running job2 it is identical
    3434       // 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.
    3539
    3640
  • trunk/MagicSoft/Mars/NEWS

    r6963 r6964  
    1818     runs since some of the recent calibration runs have been taken
    1919     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)
    2023
    2124
  • trunk/MagicSoft/Mars/mjobs/MSequence.cc

    r6908 r6964  
    223223        case kRawAll:
    224224            d += "rawfiles/";
     225            d += fNight.GetStringFmt("%Y/%m/%d");
    225226            break;
    226227        case kRootDat:
     
    229230        case kRootAll:
    230231            d += "merpp/";
     232            d += fNight.GetStringFmt("%Y/%m/%d");
    231233            break;
    232234        case kCalibrated:
    233             d += "callisto/";
     235            d += Form("callisto/%04d/%08d/", fSequence/10000, fSequence);
    234236            break;
    235237        case kImages:
    236             d += "star/";
     238            d += Form("star/%04d/%08d/", fSequence/10000, fSequence);
    237239            break;
    238240        }
    239         d += fNight.GetStringFmt("%Y/%m/%d");
    240241    }
    241242    else
Note: See TracChangeset for help on using the changeset viewer.