Changeset 9305 for trunk/ippTasks/phase0.pro
- Timestamp:
- Oct 5, 2006, 12:02:44 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippTasks/phase0.pro (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTasks/phase0.pro
r9104 r9305 1 2 1 ## this file contains the tasks for running the phase 0 stage 3 2 4 3 ## these tasks use the queue Phase0Imfiles 5 4 ## the Phase0Imfiles queue contains: 6 ## STATE EXP_ KEYCLASS CLASS_ID URI-FITS5 ## STATE EXP_TAG CLASS CLASS_ID URI-FITS 7 6 ## queue keys are counted from 0 8 7 … … 41 40 for i 0 $Nqueue 42 41 queuepop stdout -var line 43 queuepush Phase0Imfiles -uniq -key 1 "NEW $line" 42 list word -split $line 43 $EXP_TAG = $word:0 44 $CLASS = $word:1 45 $CLASS_ID = $word:2 46 $URI = $word:3 47 queuepush Phase0Imfiles -uniq -key 1 "NEW $EXP_TAG $CLASS $CLASS_ID $URI" 44 48 end 45 49 … … 80 84 81 85 ## the Phase0Imfiles queue contains (line has popped STATE) 82 ## STATE EXP_ KEYCLASS CLASS_ID URI-FITS86 ## STATE EXP_TAG CLASS CLASS_ID URI-FITS 83 87 list word -split $line 88 $EXP_TAG = $word:0 89 $CLASS = $word:1 90 $CLASS_ID = $word:2 91 $URI = $word:3 84 92 85 93 # specify choice of remote host:(need to choose based on chips) … … 91 99 92 100 # do something better with this output target 93 stdout $ word:0.$word:2.log94 stderr $ word:0.$word:2.log101 stdout $EXP_TAG.$CLASS_ID.log 102 stderr $EXP_TAG.$CLASS_ID.log 95 103 96 104 # create the command line 97 105 options "$line" 98 echo command phase0 imfile.pl --exp_id $word:0 --class_id $word:2 --uri $word:399 command phase0 imfile.pl --exp_id $word:0 --class_id $word:2 --uri $word:3106 echo command phase0_imfile.pl --exp_tag $EXP_TAG --class $CLASS --class_id $CLASS_ID --uri $URI 107 command phase0_imfile.pl --exp_tag $EXP_TAG --class $CLASS --class_id $CLASS_ID --uri $URI 100 108 end 101 109 … … 121 129 ## these tasks use the queue Phase0Exposures 122 130 ## the Phase0Exposures queue contains: 123 ## STATE EXP_ KEYCAMERA TELESCOPE TYPE NCLASS131 ## STATE EXP_TAG CAMERA TELESCOPE TYPE NCLASS 124 132 125 133 # select images ready for phase0 analysis … … 146 154 for i 0 $Nqueue 147 155 queuepop stdout -var line 148 queuepush Phase0Exposures -uniq -key 1 "NEW $line" 156 list word -split $line 157 $EXP_TAG = $word:0 158 # $EXP_ID = $word:1 159 # $CAMERA = $word:2 160 # $TELESCOPE = $word:3 161 # $TYPE = $word:4 162 # $IMFILES = $word:5 163 queuepush Phase0Exposures -uniq -key 1 "NEW $EXP_TAG" 149 164 end 150 165 … … 185 200 186 201 ## the Phase0Exposures queue contains: 187 ## STATE EXP_ KEYCAMERA TELESCOPE TYPE NCLASS202 ## STATE EXP_TAG CAMERA TELESCOPE TYPE NCLASS 188 203 list word -split $line 204 $EXP_TAG = $word:0 189 205 190 206 # do something better with this output target 191 stdout $ word:0.log192 stderr $ word:0.log207 stdout $EXP_TAG.log 208 stderr $EXP_TAG.log 193 209 194 210 # specify choice of remote host:(need to choose based on chips) … … 201 217 # create the command line 202 218 options "$line" 203 echo command phase0 exp.pl $word:0204 command phase0 exp.pl $word:0219 echo command phase0_exp.pl --exp_tag $EXP_TAG 220 command phase0_exp.pl --exp_tag $EXP_TAG 205 221 end 206 222
Note:
See TracChangeset
for help on using the changeset viewer.
