IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 10, 2009, 4:55:32 PM (17 years ago)
Author:
Paul Price
Message:

Activating I/O of detection efficiency. Streamlined the code a bit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/pap/psModules/src/objects/pmDetEff.h

    r25327 r25331  
    44#include <pslib.h>
    55#include <string.h>
     6
     7#include "pmFPA.h"
    68
    79#define PM_DETEFF_ANALYSIS "DETEFF"     // Location of detection efficiency on pmReadout.analysis
     
    2628                        );
    2729
     30/// Write detection efficiency to FITS file
    2831bool pmDetEffWrite(psFits *fits,        // FITS file to which to write
    2932                   pmDetEff *deteff,    // Detection efficiency to write
     
    3235                   );
    3336
     37/// Write detection efficiency from a readout to a FITS file
     38bool pmReadoutWriteDetEff(psFits *fits,// FITS file to which to write
     39                          const pmReadout *readout, // Readout with detection efficiency
     40                          const psMetadata *header, // Header to write
     41                          const char *extname // Extension name
     42    );
     43
     44/// Read detection efficiency
    3445pmDetEff *pmDetEffRead(psFits *fits,    // FITS file from which to read
    3546                       const char *extname // Extension name
    3647                       );
     48
     49/// Read detection efficiency into a readout
     50bool pmReadoutReadDetEff(psFits *fits,// FITS file to which to write
     51                         const pmReadout *readout, // Readout with detection efficiency
     52                         const char *extname // Extension name
     53    );
    3754
    3855#define PM_ASSERT_DETEFF_NON_NULL(DE, RETURN) { \
Note: See TracChangeset for help on using the changeset viewer.