IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 27130


Ignore:
Timestamp:
Mar 1, 2010, 6:20:23 PM (16 years ago)
Author:
Paul Price
Message:

DATA is probably more appropriate.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/stack_skycell.pl

    r27129 r27130  
    107107}
    108108
    109 &my_die("Stack list contains less than two elements", $stack_id, $PS_EXIT_CONFIG_ERROR) unless
     109&my_die("Stack list contains less than two elements", $stack_id, $PS_EXIT_DATA_ERROR) unless
    110110    scalar @$files >= 2;
    111111
     
    120120    if ($file->{ignored}) { next; }
    121121    if (defined $tess_id) {
    122         &my_die("Tesselation identifiers don't match", $stack_id, $PS_EXIT_CONFIG_ERROR) unless
     122        &my_die("Tesselation identifiers don't match", $stack_id, $PS_EXIT_DATA_ERROR) unless
    123123            $file->{tess_id} eq $tess_id;
    124124    } else {
     
    126126    }
    127127    if (defined $skycell_id) {
    128         &my_die("Skycell identifiers don't match", $stack_id, $PS_EXIT_CONFIG_ERROR) unless
     128        &my_die("Skycell identifiers don't match", $stack_id, $PS_EXIT_DATA_ERROR) unless
    129129            $file->{skycell_id} eq $skycell_id;
    130130    } else {
     
    132132    }
    133133    if (defined $camera) {
    134         &my_die("Cameras don't match", $stack_id, $PS_EXIT_CONFIG_ERROR) unless $file->{camera} eq $camera;
     134        &my_die("Cameras don't match", $stack_id, $PS_EXIT_DATA_ERROR) unless $file->{camera} eq $camera;
    135135    } else {
    136136        $camera = $file->{camera};
Note: See TracChangeset for help on using the changeset viewer.