IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 40769


Ignore:
Timestamp:
May 30, 2019, 9:08:36 AM (7 years ago)
Author:
eugene
Message:

merge changes from trunk (pstamp fixes)

Location:
tags/ipp-ps2-20190404
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • tags/ipp-ps2-20190404

  • tags/ipp-ps2-20190404/ppStack/src/ppStackPrepare.c

    r36855 r40769  
    380380        psImage *P      = psImageAlloc(m,num,PS_TYPE_F32);
    381381       
     382        // XXX: we should not pass in images to this analysis which have already been rejected by the FWHM limits
    382383        if (!psMM1DClass(options->inputSeeing,
    383384                         options->inputSeeing->n,
  • tags/ipp-ps2-20190404/pstamp/scripts/detect_query_read

    r33284 r40769  
    244244            $cmd .= " -dateobs_begin $dateobs_begin -dateobs_end $dateobs_end ";
    245245            $cmd .= " -ra $ra -decl $dec -radius 1.5 -limit 1 -diff_mode 2";
     246            $cmd .= " -diff_mode 2";
    246247        }
    247248        elsif ($colData{STAGE}[$i] eq 'diff') {
  • tags/ipp-ps2-20190404/pstamp/scripts/dquery_job_run.pl

    r33285 r40769  
    133133    print $targetfile "$r_x $r_y\n";
    134134    my $row = $rows[$i];
    135     if ((abs($r_ra - $row->{RA1_DEG}) < 1e-8) && (abs($r_dec - $row->{DEC1_DEG}))) {
     135    if ((abs($r_ra - $row->{RA1_DEG}) < 1e-8) && (abs($r_dec - $row->{DEC1_DEG}) < 1e-8)) {
    136136        $row->{X_PXL} = $r_x;
    137137        $row->{Y_PXL} = $r_y;
  • tags/ipp-ps2-20190404/pstamp/scripts/dqueryparse.pl

    r36463 r40769  
    216216        }
    217217
     218        ## 20190317 MEH hack to add to row
     219        # Set common request components
     220        my $option_mask |= 1;
     221        $option_mask |= $PSTAMP_SELECT_IMAGE;
     222        $option_mask |= $PSTAMP_SELECT_MASK;
     223        $option_mask |= $PSTAMP_SELECT_VARIANCE;
     224        $option_mask |= $PSTAMP_SELECT_PSF;
     225
    218226        # Set up a rowList with default values
    219227        my @rowList;
     
    223231            $rowList[$i]->{ID} = $query{$fpa_id}{ROWNUM}[$i];
    224232            $rowList[$i]->{COORD_MASK} = 0;
     233            # 20190317 MEH hack add to row 
     234            $rowList[$i]->{OPTION_MASK} = $option_mask;
    225235            # Set default values
    226236            $query{$fpa_id}{BAD_COMPONENT}[$i] = 1;
     
    259269        }
    260270        # Set common request components
    261         my $option_mask |= 1;
    262         $option_mask |= $PSTAMP_SELECT_IMAGE;
    263         $option_mask |= $PSTAMP_SELECT_MASK;
    264         $option_mask |= $PSTAMP_SELECT_VARIANCE;
    265         $option_mask |= $PSTAMP_SELECT_PSF;
     271#       my $option_mask |= 1;
     272#       $option_mask |= $PSTAMP_SELECT_IMAGE;
     273#       $option_mask |= $PSTAMP_SELECT_MASK;
     274#       $option_mask |= $PSTAMP_SELECT_VARIANCE;
     275#       $option_mask |= $PSTAMP_SELECT_PSF;
    266276
    267277        # magic is dead
  • tags/ipp-ps2-20190404/pstamp/scripts/pstamp_server_status

    r36639 r40769  
    3939# isn't necessary if the pstamp/web stuff is configured to point at the
    4040# ipp build. But currently it's running out of Bill's build
    41 my $ipphome = "/home/panstarrs/ipp";
     41
     42# EAM 2017.03.08 : need to point at temporary ITC location:
     43# my $ipphome = "/home/panstarrs/ipp";
     44my $ipphome = "/data/ippc64.1/ippitc";
    4245my $status_cmd = "psstatus";
    4346
     
    4649chdir $rundir or die "failed to cd to $rundir";
    4750
    48 
     51# print "pantasks_client: $pantasks_client\n";
    4952
    5053my $now = `date -u`;
Note: See TracChangeset for help on using the changeset viewer.