IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 7, 2010, 9:45:30 AM (16 years ago)
Author:
Paul Price
Message:

Split output tables into .hdr and .psf parts (like SMF), and add detection efficiencies. Looks like it's working well now. Sent example to Larry for approval.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppTranslate/src/ppMopsDetections.c

    r28212 r28243  
    1010static void mopsDetectionsFree(ppMopsDetections *det)
    1111{
     12    psFree(det->component);
    1213    psFree(det->raBoresight);
    1314    psFree(det->decBoresight);
     
    1920    psFree(det->ra);
    2021    psFree(det->dec);
     22    psFree(det->deteffHeader);
     23    psFree(det->deteffTable);
    2124
    2225    return;
     
    2831    psMemSetDeallocator(det, (psFreeFunc)mopsDetectionsFree);
    2932
     33    det->component = NULL;
    3034    det->raBoresight = NULL;
    3135    det->decBoresight = NULL;
     
    4549    det->ra = NULL;
    4650    det->dec = NULL;
     51    det->deteffHeader = NULL;
     52    det->deteffTable = NULL;
    4753
    4854    return det;
Note: See TracChangeset for help on using the changeset viewer.