IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 41705 for trunk/ippScripts


Ignore:
Timestamp:
Jul 8, 2021, 9:47:22 AM (5 years ago)
Author:
eugene
Message:

reintegrate changes from tag ipp-ps1-20210510

Location:
trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/ippScripts/scripts/camera_exp.pl

    r41352 r41705  
    3939    exit($PS_EXIT_CONFIG_ERROR);
    4040}
     41
     42my @ARGS = @ARGV;
    4143
    4244my ( $exp_tag, $cam_id, $camera, $outroot, $dbname, $reduction, $dvodb, $verbose, $no_update,
     
    9698    print "\n\n";
    9799    print "Starting script $0 on $host\n\n";
    98     print "COMMAND IS: @ARGV\n\n";
     100    print "FULL COMMAND: $0 @ARGS\n\n";
    99101}
    100102
  • trunk/ippScripts/scripts/diff_skycell.pl

    r39947 r41705  
    4040my ($skycell_id, $diff_skyfile_id);
    4141my ($use_convolved);
     42
     43my @ARGS = @ARGV;
    4244
    4345GetOptions(
     
    8486}
    8587$ipprc->redirect_to_logfile($logDest) or my_die( "Unable to redirect output", $diff_id, $skycell_id, $PS_EXIT_SYS_ERROR ) if $redirect;
     88print "FULL COMMAND: $0 @ARGS\n\n";
    8689
    8790my $source_id = $ipprc->source_id($dbname, $PS_TABLE_ID_DIFF);
  • trunk/ippScripts/scripts/fake_imfile.pl

    r27718 r41705  
    5050    exit($PS_EXIT_CONFIG_ERROR);
    5151}
     52
     53my @ARGS = @ARGV;
    5254
    5355# Parse the command-line arguments
     
    8486my $logDest = $ipprc->filename("LOG.IMFILE", $outroot, $class_id) or &my_die("Missing entry from camera config", $exp_id, $fake_id, $class_id, $PS_EXIT_CONFIG_ERROR);
    8587$ipprc->redirect_output($logDest) or my_die( "Unable to redirect output", $exp_id, $fake_id, $class_id, $PS_EXIT_SYS_ERROR ) if $redirect;
     88print "FULL COMMAND: $0 @ARGS\n\n";
    8689
    8790# Recipes to use based on reduction class
  • trunk/ippScripts/scripts/ipp_serial_diff.pl

    r21020 r41705  
    1717
    1818my $ipprc = PS::IPP::Config->new(); # IPP configuration
     19
     20my @ARGS = @ARGV;
    1921
    2022my ($dbname,                    # Database name to use
     
    5355}
    5456
     57print "FULL COMMAND: $0 @ARGS\n\n";
    5558
    5659# Image differencing
  • trunk/ippScripts/scripts/ipp_serial_warp.pl

    r18512 r41705  
    1717
    1818my $ipprc = PS::IPP::Config->new(); # IPP configuration
     19
     20my @ARGS = @ARGV;
    1921
    2022my ($dbname,                    # Database name to use
     
    5456    exit($PS_EXIT_CONFIG_ERROR);
    5557}
     58
     59print "FULL COMMAND: $0 @ARGS\n\n";
    5660
    5761
  • trunk/ippScripts/scripts/sc_prepare_diff.pl

    r38168 r41705  
    2828    exit($PS_EXIT_CONFIG_ERROR);
    2929}
     30
     31my @ARGS = @ARGV;
    3032
    3133my ($remote_id,$diff_id,$camera,$dbname,$verbose,$path_base,$no_update,$cmd_recipe);
     
    5052    defined($dbname);
    5153
     54print "FULL COMMAND: $0 @ARGS\n\n";
    5255
    5356# Hard coded values
  • trunk/ippScripts/scripts/sc_prepare_warp.pl

    r38168 r41705  
    2828    exit($PS_EXIT_CONFIG_ERROR);
    2929}
     30
     31my @ARGS = @ARGV;
    3032
    3133my ($remote_id,$warp_id,$camera,$dbname,$verbose,$path_base,$no_update,$cmd_recipe);
     
    5052    defined($dbname);
    5153
     54print "FULL COMMAND: $0 @ARGS\n\n";
    5255
    5356# Hard coded values
  • trunk/ippScripts/scripts/warp_overlap.pl

    r41653 r41705  
    3434    exit($PS_EXIT_CONFIG_ERROR);
    3535}
     36
     37my @ARGS = @ARGV;
    3638
    3739my ($warp_id, $camera, $tess_dir, $dbname, $verbose, $no_update, $no_op, $logfile, $save_temps);
     
    5860my $ipprc = PS::IPP::Config->new( $camera ) or my_die( "Unable to set up", $warp_id, $PS_EXIT_CONFIG_ERROR ); # IPP configuration
    5961$ipprc->redirect_to_logfile($logfile) or my_die( "Unable to redirect output", $warp_id, $PS_EXIT_SYS_ERROR ) if $logfile;
     62print "FULL COMMAND: $0 @ARGS\n\n";
    6063
    6164&my_die("Tessellation identifier not provided: $tess_dir", $warp_id, $PS_EXIT_SYS_ERROR) unless $tess_dir ne "NULL";
  • trunk/ippScripts/scripts/warp_skycell.pl

    r39186 r41705  
    3636    exit($PS_EXIT_CONFIG_ERROR);
    3737}
     38
     39my @ARGS = @ARGV;
    3840
    3941my ($warp_id, $skycell_id, $warp_skyfile_id, $tess_dir, $reduction, $camera, $dbname, $outroot, $threads, $run_state, $magicked, $verbose, $no_update, $no_op, $redirect, $save_temps);
     
    9294
    9395$ipprc->redirect_to_logfile($logDest) or my_die( "Unable to redirect output", $warp_id, $skycell_id, $tess_dir, $PS_EXIT_SYS_ERROR ) if $redirect;
     96print "FULL COMMAND: $0 @ARGS\n\n";
    9497
    9598# Recipes to use based on reduction class
Note: See TracChangeset for help on using the changeset viewer.