Changeset 12800
- Timestamp:
- Apr 10, 2007, 5:16:04 PM (19 years ago)
- Location:
- trunk/ippScripts/scripts
- Files:
-
- 23 edited
-
camera_exp.pl (modified) (1 diff)
-
chip_imfile.pl (modified) (1 diff)
-
detrend_norm_apply.pl (modified) (1 diff)
-
detrend_norm_calc.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) (1 diff)
-
detrend_stack.pl (modified) (1 diff)
-
diff_skycell.pl (modified) (1 diff)
-
ipp_serial_camera.pl (modified) (1 diff)
-
ipp_serial_chip.pl (modified) (1 diff)
-
ipp_serial_detrend.pl (modified) (1 diff)
-
ipp_serial_inject.pl (modified) (1 diff)
-
ipp_serial_inject_mosaic.pl (modified) (1 diff)
-
ipp_serial_register.pl (modified) (1 diff)
-
register_exp.pl (modified) (1 diff)
-
register_imfile.pl (modified) (1 diff)
-
stack_skycell.pl (modified) (1 diff)
-
warp_overlap.pl (modified) (1 diff)
-
warp_skycell.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/camera_exp.pl
r12421 r12800 13 13 $VERSION = '0.01'; 14 14 15 use IPC::Cmd qw( can_run run );15 use IPC::Cmd 0.36 qw( can_run run ); 16 16 use PS::IPP::Metadata::Config; 17 17 use PS::IPP::Metadata::List qw( parse_md_list ); -
trunk/ippScripts/scripts/chip_imfile.pl
r12421 r12800 10 10 print "Starting script $0 on $host\n\n"; 11 11 12 use IPC::Cmd qw( can_run run );12 use IPC::Cmd 0.36 qw( can_run run ); 13 13 use PS::IPP::Metadata::Config; 14 14 use PS::IPP::Metadata::Stats; -
trunk/ippScripts/scripts/detrend_norm_apply.pl
r12421 r12800 11 11 12 12 use PS::IPP::Metadata::Stats; 13 use IPC::Cmd qw( can_run run );13 use IPC::Cmd 0.36 qw( can_run run ); 14 14 use Data::Dumper; 15 15 -
trunk/ippScripts/scripts/detrend_norm_calc.pl
r11837 r12800 10 10 print "Starting script $0 on $host\n\n"; 11 11 12 use IPC::Cmd qw( can_run );12 use IPC::Cmd 0.36 qw( can_run ); 13 13 use IPC::Run qw ( run ); 14 14 use PS::IPP::Metadata::Config; -
trunk/ippScripts/scripts/detrend_norm_exp.pl
r12584 r12800 13 13 $VERSION = '0.01'; 14 14 15 use IPC::Cmd qw( can_run run );15 use IPC::Cmd 0.36 qw( can_run run ); 16 16 use PS::IPP::Metadata::Config; 17 17 use PS::IPP::Metadata::List qw( parse_md_list ); -
trunk/ippScripts/scripts/detrend_process_exp.pl
r12576 r12800 13 13 $VERSION = '0.01'; 14 14 15 use IPC::Cmd qw( can_run run );15 use IPC::Cmd 0.36 qw( can_run run ); 16 16 use PS::IPP::Metadata::Config; 17 17 use PS::IPP::Metadata::List qw( parse_md_list ); -
trunk/ippScripts/scripts/detrend_process_imfile.pl
r12421 r12800 13 13 $VERSION = '0.01'; 14 14 15 use IPC::Cmd qw( can_run run );15 use IPC::Cmd 0.36 qw( can_run run ); 16 16 use PS::IPP::Metadata::Config; 17 17 use PS::IPP::Metadata::Stats; -
trunk/ippScripts/scripts/detrend_reject_exp.pl
r12694 r12800 13 13 $VERSION = '0.01'; 14 14 15 use IPC::Cmd qw( can_run run );15 use IPC::Cmd 0.36 qw( can_run run ); 16 16 use PS::IPP::Metadata::Config; 17 17 use PS::IPP::Metadata::List qw( parse_md_list ); -
trunk/ippScripts/scripts/detrend_reject_imfile.pl
r12678 r12800 13 13 $VERSION = '0.01'; 14 14 15 use IPC::Cmd qw( can_run run );15 use IPC::Cmd 0.36 qw( can_run run ); 16 16 use PS::IPP::Metadata::Config; 17 17 use PS::IPP::Metadata::List qw( parse_md_list ); -
trunk/ippScripts/scripts/detrend_resid.pl
r12421 r12800 13 13 $VERSION = '0.01'; 14 14 15 use IPC::Cmd qw( can_run run );15 use IPC::Cmd 0.36 qw( can_run run ); 16 16 use PS::IPP::Metadata::Config; 17 17 use PS::IPP::Metadata::Stats; -
trunk/ippScripts/scripts/detrend_stack.pl
r12578 r12800 13 13 $VERSION = '0.01'; 14 14 15 use IPC::Cmd qw( can_run run );15 use IPC::Cmd 0.36 qw( can_run run ); 16 16 use PS::IPP::Metadata::Config; 17 17 use PS::IPP::Metadata::List qw( parse_md_list ); -
trunk/ippScripts/scripts/diff_skycell.pl
r12421 r12800 13 13 $VERSION = '0.01'; 14 14 15 use IPC::Cmd qw( can_run run );15 use IPC::Cmd 0.36 qw( can_run run ); 16 16 use PS::IPP::Metadata::Config; 17 17 use PS::IPP::Metadata::Stats; -
trunk/ippScripts/scripts/ipp_serial_camera.pl
r12253 r12800 4 4 use strict; 5 5 6 use IPC::Cmd qw( can_run run );6 use IPC::Cmd 0.36 qw( can_run run ); 7 7 use PS::IPP::Metadata::Config; 8 8 use PS::IPP::Metadata::List qw( parse_md_list ); -
trunk/ippScripts/scripts/ipp_serial_chip.pl
r12253 r12800 4 4 use strict; 5 5 6 use IPC::Cmd qw( can_run run );6 use IPC::Cmd 0.36 qw( can_run run ); 7 7 use PS::IPP::Metadata::Config; 8 8 use PS::IPP::Metadata::List qw( parse_md_list ); -
trunk/ippScripts/scripts/ipp_serial_detrend.pl
r12669 r12800 6 6 use Getopt::Long; 7 7 use Pod::Usage qw( pod2usage ); 8 use IPC::Cmd qw( can_run run );8 use IPC::Cmd 0.36 qw( can_run run ); 9 9 use PS::IPP::Metadata::Config; 10 10 use PS::IPP::Metadata::List qw( parse_md_list ); -
trunk/ippScripts/scripts/ipp_serial_inject.pl
r11590 r12800 7 7 use strict; 8 8 9 use IPC::Cmd qw( can_run run );9 use IPC::Cmd 0.36 qw( can_run run ); 10 10 use PS::IPP::Metadata::Config; 11 11 use PS::IPP::Metadata::List qw( parse_md_list ); -
trunk/ippScripts/scripts/ipp_serial_inject_mosaic.pl
r12657 r12800 4 4 use strict; 5 5 6 use IPC::Cmd qw( can_run run );6 use IPC::Cmd 0.36 qw( can_run run ); 7 7 use PS::IPP::Config; 8 8 use Data::Dumper; -
trunk/ippScripts/scripts/ipp_serial_register.pl
r12636 r12800 4 4 use strict; 5 5 6 use IPC::Cmd qw( can_run run );6 use IPC::Cmd 0.36 qw( can_run run ); 7 7 use PS::IPP::Metadata::Config; 8 8 use PS::IPP::Metadata::List qw( parse_md_list ); -
trunk/ippScripts/scripts/register_exp.pl
r12645 r12800 13 13 use Storable qw( freeze thaw ); 14 14 use File::Basename qw( basename ); 15 use IPC::Cmd qw( can_run run );15 use IPC::Cmd 0.36 qw( can_run run ); 16 16 use PS::IPP::Metadata::Config; 17 17 use PS::IPP::Metadata::List qw( parse_md_list ); -
trunk/ippScripts/scripts/register_imfile.pl
r12360 r12800 16 16 use Storable qw(freeze thaw); 17 17 use File::Basename qw( basename); 18 use IPC::Cmd qw( can_run run );18 use IPC::Cmd 0.36 qw( can_run run ); 19 19 use PS::IPP::Metadata::Config; 20 20 use PS::IPP::Metadata::Stats; -
trunk/ippScripts/scripts/stack_skycell.pl
r12421 r12800 13 13 $VERSION = '0.01'; 14 14 15 use IPC::Cmd qw( can_run run );15 use IPC::Cmd 0.36 qw( can_run run ); 16 16 use PS::IPP::Metadata::Config; 17 17 use PS::IPP::Metadata::Stats; -
trunk/ippScripts/scripts/warp_overlap.pl
r12798 r12800 13 13 $VERSION = '0.01'; 14 14 15 use IPC::Cmd qw( can_run run );15 use IPC::Cmd 0.36 qw( can_run run ); 16 16 use PS::IPP::Metadata::Config; 17 17 use PS::IPP::Metadata::Stats; -
trunk/ippScripts/scripts/warp_skycell.pl
r12421 r12800 13 13 $VERSION = '0.01'; 14 14 15 use IPC::Cmd qw( can_run run );15 use IPC::Cmd 0.36 qw( can_run run ); 16 16 use PS::IPP::Metadata::Config; 17 17 use PS::IPP::Metadata::Stats;
Note:
See TracChangeset
for help on using the changeset viewer.
