IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 23778


Ignore:
Timestamp:
Apr 9, 2009, 2:45:48 PM (17 years ago)
Author:
bills
Message:

allow file lists to be empty. For cleaned raw distribution and clean

Location:
trunk/ippScripts/scripts
Files:
2 edited

Legend:

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

    r23777 r23778  
    249249my $bytes;
    250250my $md5sum;
    251 if (0) {
    252 if (($stage eq 'fake')  or (($stage eq 'raw') and $clean)) {
    253     open DUMMY, ">$tmpdir/fake.$component" or &my_die("Unable to create placeholder for fake component",
    254         $dist_id, $component, $PS_EXIT_CONFIG_ERROR);
    255     print DUMMY "This file is a placeholder\n";
    256     close DUMMY;
    257 }
    258 }
     251
    259252if ($num_files) {
    260253    # create the tarfile
     
    386379    } elsif ($stage eq "camera") {
    387380        $config_file_rule = "PSASTRO.CONFIG";
    388         $component = "";
    389381    } elsif ($stage eq 'fake') {
    390382        # XXX: fake is a no op now return an emtpy list
  • trunk/ippScripts/scripts/magic_process.pl

    r23688 r23778  
    6666# to form valid file names.
    6767# So forbid nebulous path in outroot. We could relax this by change DetectStreaks to take all
    68 # of the file names as arguments or by teaching it aoubt Nebulous
     68# of the file names as arguments or by teaching it about Nebulous
    6969if ($outroot =~ 'neb:/') {
    7070    &my_die("DetectStreaks does not support nebulous paths in outroot", $magic_id, $node, $PS_EXIT_CONFIG_ERROR);
     
    139139
    140140        # set threshold to 4 sigma
    141         $command .= ' -t 4 -S';
     141        $command .= ' -t 4';
     142        # add -S except not for MD images
     143        # $command .= ' -S';
    142144
    143145        # create the list of inputs used at this stage. At higher levels the
Note: See TracChangeset for help on using the changeset viewer.