IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 16, 2014, 3:30:14 PM (12 years ago)
Author:
eugene
Message:

merge changes from trunk

Location:
branches/eam_branches/ipp-20140610
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20140610

  • branches/eam_branches/ipp-20140610/Ohana/src/getstar

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/eam_branches/ipp-20140610/ippTasks/remote.pro

    r36884 r37027  
    1010
    1111$remote_label_iter = 0
     12$remote_label_iter2 = 0
    1213$remote_stage_iter = 0
    1314$remoteP_DB = 0
     
    1819  chip
    1920  camera
    20   warp
     21#  warp
    2122  stack
    2223end
    2324
    24 task          remote.define.chip
     25macro  remote.off
     26  task  remote.define
     27    active false
     28  end
     29  task  remote.define.warp
     30    active false
     31  end
     32  task  remote.prep.load
     33    active false
     34  end
     35  task  remote.prep.run
     36    active false
     37  end
     38  task  remote.exec.load
     39    active false
     40  end
     41  task  remote.exec.run
     42    active false
     43  end
     44  task  remote.poll.load
     45    active false
     46  end
     47  task  remote.poll.run
     48    active false
     49  end
     50end
     51
     52macro  remote.on
     53  task  remote.define
     54    active true
     55  end
     56  task  remote.define.warp
     57    active true
     58  end
     59  task  remote.prep.load
     60    active true
     61  end
     62  task  remote.prep.run
     63    active true
     64  end
     65  task  remote.exec.load
     66    active true
     67  end
     68  task  remote.exec.run
     69    active true
     70  end
     71  task  remote.poll.load
     72    active true
     73  end
     74  task  remote.poll.run
     75    active true
     76  end
     77end
     78
     79
     80task          remote.define
    2581  host        local
    2682  periods     -poll $LOADPOLL
    27   periods     -exec $LOADEXEC
     83  periods     -exec 300
    2884  periods     -timeout 30
    2985  npending    1
     
    45101    end
    46102
    47     $run = remotetool -definebyquery -label $label -stage $stage -path_base neb://@HOST@.0/remote/$label
    48     echo $run
    49     command $run
    50    
    51     end
    52     # success
    53     task.exit  0
    54   end
    55   # locked list                                                                                                                                   
    56   task.exit    default
    57     showcommand failure
    58   end
    59   task.exit    crash
    60     showcommand crash
    61   end
    62   #operation times out?                                                                                                                           
    63   task.exit    timeout
    64     showcommand timeout
    65   end
    66 end
    67 
    68 
    69 task         remote.prep.load
    70   host       local
    71   periods    -poll $LOADPOLL
    72   periods    -exec $LOADEXEC
    73   npending   1
    74 
    75   task.exec
    76     stdout NULL
    77     stderr $LOGDIR/remote.prep.load
    78 
    79     $run = remotetool -listrun -state new
    80 
     103    $run = remotetool -definebyquery -label $label -stage $stage -path_base neb://@HOST@.0/remote/$label -limit 500
    81104    if ($DB:n == 0)
    82105      option DEFAULT
     
    88111    end
    89112
     113    echo $run
     114    command $run
     115   
     116    end
     117    # success
     118    task.exit  0
     119  end
     120  # locked list                                                                                                                                   
     121  task.exit    default
     122    showcommand failure
     123  end
     124  task.exit    crash
     125    showcommand crash
     126  end
     127  #operation times out?                                                                                                                           
     128  task.exit    timeout
     129    showcommand timeout
     130  end
     131end
     132
     133task          remote.define.warp
     134  host        local
     135  periods     -poll $LOADPOLL
     136  periods     -exec 1800
     137  periods     -timeout 30
     138  npending    1
     139
     140  task.exec
     141    stdout NULL
     142    stderr $LOGDIR/remote.define.chip
     143
     144    $label = $LABEL:$remote_label_iter2
     145
     146    if ($remote_label_iter >= $LABEL:n) set remote_label_iter = 0
     147    echo  $remote_label_iter $label warp
     148
     149    $run = remotetool -definebyquery -label $label -stage warp -path_base neb://@HOST@.0/remote/$label -limit 500
     150    if ($DB:n == 0)
     151      option DEFAULT
     152    else
     153      option $DB:$remoteP_DB
     154      $run = $run -dbname $DB:$remoteP_DB
     155      $remoteP_DB ++
     156      if ($remoteP_DB >= $DB:n) set remoteP_DB = 0
     157    end
     158
     159    echo $run
     160    command $run
     161   
     162  end
     163    # success
     164  task.exit  0
     165  end
     166  # locked list                                                                                                                                   
     167  task.exit    default
     168    showcommand failure
     169  end
     170  task.exit    crash
     171    showcommand crash
     172  end
     173  #operation times out?                                                                                                                           
     174  task.exit    timeout
     175    showcommand timeout
     176  end
     177end
     178
     179task         remote.prep.load
     180  host       local
     181  periods    -poll $LOADPOLL
     182  periods    -exec 30
     183  npending   1
     184
     185  task.exec
     186    stdout NULL
     187    stderr $LOGDIR/remote.prep.load
     188
     189    $run = remotetool -listrun -state new
     190
     191    if ($DB:n == 0)
     192      option DEFAULT
     193    else
     194      option $DB:$remoteP_DB
     195      $run = $run -dbname $DB:$remoteP_DB
     196      $remoteP_DB ++
     197      if ($remoteP_DB >= $DB:n) set remoteP_DB = 0
     198    end
     199
    90200    add_poll_labels run
    91201    command $run
     
    118228  periods      -poll $LOADPOLL
    119229  periods      -exec $LOADEXEC
    120   periods      -timeout 60000
     230  periods      -timeout 600000
    121231  active       true
    122232  npending     10
     
    228338  host         local
    229339  periods      -poll $LOADPOLL
    230   periods      -exec $LOADEXEC
    231   periods      -timeout 60000
     340  periods      -exec 30
     341  periods      -timeout 6000000
    232342  active       true
    233   npending     1
     343  npending     3
    234344
    235345  task.exec
     
    328438  host         local
    329439  periods      -poll $LOADPOLL
    330   periods      -exec $LOADEXEC
    331   periods      -timeout 60000
     440  periods      -exec 30
     441  periods      -timeout 6000000
    332442  active       true
    333   npending     1
     443  npending     3
    334444
    335445  task.exec
  • branches/eam_branches/ipp-20140610/ippconfig

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/eam_branches/ipp-20140610/ippconfig/recipes/ppSub.config

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/eam_branches/ipp-20140610/ippconfig/recipes/reductionClasses.mdc

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/eam_branches/ipp-20140610/pstamp/scripts/pstamp_checkdependent.pl

    r36928 r37027  
    318318            $command .= " -set_label $rlabel" if $rlabel;
    319319
    320             # if this is one of the chipRuns from the PV1 LAP regenerate without using the ppImage configdump file
     320            my $update_mode;
    321321            if ($chip->{data_group} =~ /^LAP.ThreePi.20120706/) {
    322                 $command .= ' -set_update_mode 1';
     322                # if this is one of the chipRuns from the PV1 LAP regenerate without using the ppImage configdump file.
     323                # XXX: PV2 processing is complete. Don't do this anymore
     324                # $update_mode = 1;
     325            } elsif ($chip->{data_group} =~ /^M31.rp.2013/) {
     326                # Version of M31 processed with recipes and auxiliary masks incompatible with the
     327                # current code. Run from scratch which will use compatible versions of the same masks..
     328                $update_mode = 1;
    323329            }
     330            $command .= " -set_update_mode $update_mode" if $update_mode;
    324331
    325332            if (!$no_update) {
  • branches/eam_branches/ipp-20140610/pstamp/scripts/pstamp_finish.pl

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/eam_branches/ipp-20140610/pstamp/scripts/pstampparse.pl

    • Property svn:mergeinfo changed (with no actual effect on merging)
Note: See TracChangeset for help on using the changeset viewer.