IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 38860


Ignore:
Timestamp:
Oct 14, 2015, 2:56:25 PM (11 years ago)
Author:
bills
Message:

more scripts for comparing PSPS detetctions to the IPP's smf and cmf data
These are psps specific do probably shouldn't live hear. Will reconsider later.

Location:
trunk/tools/bills
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/bills/concatsmf

    r38748 r38860  
    2121
    2222my ($ota, $save_temps, $verbose);
     23my $test_smf;
    2324
    2425GetOptions(
     
    2627    "vebose|v"          =>  \$verbose,
    2728    "save-temps"        =>  \$save_temps,
     29    "test"              =>  \$test_smf,
    2830) or pod2usage( 2 );
    2931
     
    5557
    5658my ($exp_name, $exp_id, $cam_id);
     59
     60if ($test_smf) {
     61    # Test smf created by the ippToPsps test suite
     62    # file name format is 'test.$exp_id.smf"
     63    # There is only a single psf extension for chipnum zero
     64    (undef, $exp_id) = split '\.', $infilename;
     65    extract_chip($path, $output, $exp_id, 0, 'Chip.psf');
     66    exit 0;
     67}
     68
     69# gpc1 smf
     70
    5771($exp_name, $exp_id, undef, $cam_id) = split '\.', $infilename;
    5872
  • trunk/tools/bills/matchIppToPsps

    r38747 r38860  
    3939$cmd .= " ofmt=$ofmt" if $ofmt;
    4040
     41$cmd .= " progress=none" unless $verbose;
     42
    4143print "$cmd\n" if $verbose;
    4244
Note: See TracChangeset for help on using the changeset viewer.