IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 30, 2007, 6:33:50 PM (19 years ago)
Author:
Paul Price
Message:

Adding useful macros to turn subsets of tasks on and off.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTasks/phase2.pro

    r11336 r11476  
    2424macro phase2.status
    2525  book listbook p2PendingImfile
     26end
     27
     28macro phase2.reset
     29  book init p2PendingImfile
     30end
     31
     32macro phase2.on
     33  task phase2.imfile.load
     34    active true
     35  end
     36  task phase2.imfile.run
     37    active true
     38  end
     39end
     40
     41macro phase2.off
     42  task phase2.imfile.load
     43    active false
     44  end
     45  task phase2.imfile.run
     46    active false
     47  end
    2648end
    2749
     
    114136
    115137    ## generate output log based on filerule
    116     $outroot = $WORKDIR/$EXP_TAG
    117     $logfile = `ipp_filename.pl PHASE2.LOG $outroot $CLASS_ID`
     138    $outroot = `ipp_datapath.pl $WORKDIR`
     139    $outroot = $outroot/$EXP_TAG
     140    # $logfile = `ipp_filename.pl PHASE2.LOG $outroot $CLASS_ID`
     141    $logfile = $outroot/$EXP_TAG.$CLASS_ID.p2.log
    118142    stdout $logfile
    119143    stderr $logfile
Note: See TracChangeset for help on using the changeset viewer.