Changeset 11829
- Timestamp:
- Feb 15, 2007, 10:27:09 AM (19 years ago)
- Location:
- trunk/ippScripts/scripts
- Files:
-
- 15 edited
-
detrend_norm_apply.pl (modified) (1 diff)
-
detrend_norm_exp.pl (modified) (1 diff)
-
detrend_process_exp.pl (modified) (1 diff)
-
detrend_process_imfile.pl (modified) (1 diff)
-
detrend_reject_exp.pl (modified) (1 diff)
-
detrend_reject_imfile.pl (modified) (1 diff)
-
detrend_resid.pl (modified) (2 diffs)
-
detrend_stack.pl (modified) (1 diff)
-
phase0_exp.pl (modified) (1 diff)
-
phase0_imfile.pl (modified) (1 diff)
-
phase2.pl (modified) (1 diff)
-
phase3.pl (modified) (1 diff)
-
phase4_overlap.pl (modified) (1 diff)
-
phase4_warp.pl (modified) (1 diff)
-
phase5_subtract.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/detrend_norm_apply.pl
r11492 r11829 168 168 169 169 warn($msg); 170 if ($det_id and $iter and $class_id ) {170 if ($det_id and $iter and $class_id and not $no_update) { 171 171 my $command = "$dettool -addnormalizedimfile -det_id $det_id -iteration $iter -class_id $class_id -code $exit_code"; 172 172 $command .= " -dbname $dbname" if defined $dbname; -
trunk/ippScripts/scripts/detrend_norm_exp.pl
r11492 r11829 191 191 192 192 warn($msg); 193 if ($det_id and $iter ) {193 if ($det_id and $iter and not $no_update) { 194 194 my $command = "$dettool -addprocessedimfile -det_id $det_id -iter $iter -code $exit_code"; 195 195 $command .= " -dbname $dbname" if defined $dbname; -
trunk/ippScripts/scripts/detrend_process_exp.pl
r11492 r11829 198 198 199 199 warn($msg); 200 if ($det_id && $exp_tag) {200 if ($det_id and $exp_tag and not $no_update) { 201 201 my $command = "$dettool -addprocessedexp -det_id $det_id -exp_tag $exp_tag -code $exit_code"; 202 202 $command .= " -dbname $dbname" if defined $dbname; -
trunk/ippScripts/scripts/detrend_process_imfile.pl
r11492 r11829 173 173 174 174 warn($msg); 175 if ($det_id and $exp_tag and $class_id ) {175 if ($det_id and $exp_tag and $class_id and not $no_update) { 176 176 my $command = "$dettool -addprocessedimfile -det_id $det_id -exp_tag $exp_tag -class_id $class_id -code $exit_code"; 177 177 $command .= " -dbname $dbname" if defined $dbname; -
trunk/ippScripts/scripts/detrend_reject_exp.pl
r11501 r11829 276 276 277 277 warn($msg); 278 if ($det_id and $iter ) {278 if ($det_id and $iter and not $no_update) { 279 279 my $command = "$dettool -adddetrunsummary -det_id $det_id -iteration $iter -code $exit_code"; 280 280 $command .= " -dbname $dbname" if defined $dbname; -
trunk/ippScripts/scripts/detrend_reject_imfile.pl
r11502 r11829 313 313 314 314 warn($msg); 315 if ($det_id and $iter and $exp_tag ) {315 if ($det_id and $iter and $exp_tag and not $no_update) { 316 316 my $command = "$dettool -addresidexp -det_id $det_id -iteration $iter -exp_tag $exp_tag -code $exit_code"; 317 317 $command .= " -dbname $dbname" if defined $dbname; -
trunk/ippScripts/scripts/detrend_resid.pl
r11492 r11829 189 189 } else { 190 190 # May be undefined if there is only a single imfile 191 $command .= ' -bg_ stdev 0';191 $command .= ' -bg_mean_stdev 0'; 192 192 } 193 193 … … 217 217 218 218 warn($msg); 219 if ($det_id and $iter and $exp_tag ) {219 if ($det_id and $iter and $exp_tag and not $no_update) { 220 220 my $command = "$dettool -addresidimfile -det_id $det_id -iteration $iter -exp_tag $exp_tag -class_id $class_id -code $exit_code"; 221 221 $command .= " -dbname $dbname" if defined $dbname; -
trunk/ippScripts/scripts/detrend_stack.pl
r11492 r11829 184 184 185 185 warn($msg); 186 if ($det_id and $iter and $class_id ) {186 if ($det_id and $iter and $class_id and not $no_update) { 187 187 my $command = "$dettool -addstacked -det_id $det_id -iteration $iter -class_id $class_id -code $exit_code"; 188 188 $command .= " -dbname $dbname" if defined $dbname; -
trunk/ippScripts/scripts/phase0_exp.pl
r11492 r11829 253 253 my $exp_tag = $_[0]; 254 254 my $exit_code = $_[1]; 255 if ($exp_tag ) {255 if ($exp_tag and not $no_update) { 256 256 my $command = "$p0tool -addprocessedexp -exp_tag $exp_tag -code $exit_code"; 257 257 $command .= " -dbname $dbname" if defined $dbname; -
trunk/ippScripts/scripts/phase0_imfile.pl
r11492 r11829 232 232 my $class_id = $_[1]; 233 233 my $exit_code = $_[2]; 234 if ($exp_tag && $class_id ) {234 if ($exp_tag && $class_id and not $no_update) { 235 235 my $command = "$p0tool -addprocessedimfile -exp_tag $exp_tag -class_id $class_id -code $exit_code"; 236 236 $command .= " -dbname $dbname" if defined $dbname; -
trunk/ippScripts/scripts/phase2.pl
r11574 r11829 160 160 161 161 warn($msg); 162 if ($exp_tag and $class_id ) {162 if ($exp_tag and $class_id and not $no_update) { 163 163 my $command = "$p2tool -addprocessedimfile"; 164 164 $command .= " -exp_tag $exp_tag"; -
trunk/ippScripts/scripts/phase3.pl
r11575 r11829 252 252 253 253 warn($msg); 254 if ($exp_tag ) {254 if ($exp_tag and not $no_update) { 255 255 my $command = "$p3tool -addprocessedexp -exp_tag $exp_tag -code $exit_code"; 256 256 $command .= " -dbname $dbname" if defined $dbname; -
trunk/ippScripts/scripts/phase4_overlap.pl
r11806 r11829 123 123 124 124 warn($msg); 125 if ($p4_id ) {125 if ($p4_id and not $no_update) { 126 126 my $command = "$p4tool -addoverlap -p4_id $p4_id -code $exit_code"; 127 127 $command .= " -dbname $dbname" if defined $dbname; -
trunk/ippScripts/scripts/phase4_warp.pl
r11817 r11829 164 164 165 165 warn($msg); 166 if ($p4_id and $skycell_id ) {166 if ($p4_id and $skycell_id and not $no_update) { 167 167 my $command = "$p4tool -warped -p4_id $p4_id -skycell_id $skycell_id -code $exit_code"; 168 168 $command .= " -dbname $dbname" if defined $dbname; -
trunk/ippScripts/scripts/phase5_subtract.pl
r11828 r11829 199 199 200 200 warn($msg); 201 if ($det_id and $iter and $exp_tag ) {201 if ($det_id and $iter and $exp_tag and not $no_update) { 202 202 my $command = "$p5tool -updaterun -p5_id $p5_id -state stop -code $exit_code"; 203 203 $command .= " -dbname $dbname" if defined $dbname;
Note:
See TracChangeset
for help on using the changeset viewer.
