IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 14, 2023, 12:59:01 PM (3 years ago)
Author:
tdeboer
Message:

burntool handling/parsing updates

File:
1 edited

Legend:

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

    r39971 r42394  
    375375            if ($product eq 'BURN.TABLE.DOESNT.HAVE.A.PRODUCT') {
    376376                my $bt_state = $entry->{burntool_state};
    377                 if ($bt_state != -14) { next; }
     377                if ($bt_state > -14) { next; }
    378378                my $bt_file = $entry->{uri};
    379                 $bt_file    =~ s/fits$/burn.tbl/;
     379
     380                if($bt_state <= -15) {
     381                  $bt_file =~ s/fits$/burn.v15.tbl/;       
     382                } else {
     383                  $bt_file =~ s/fits$/burn.tbl/;           
     384                }
    380385                push @keys, $bt_file;
    381386
Note: See TracChangeset for help on using the changeset viewer.