IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 27, 2006, 4:16:26 PM (20 years ago)
Author:
magnier
Message:

added HDU weights, masks; substantial work on the pmFPAfile,view concepts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/rel10_ifa/psModules/src/astrom/pmFPA.h

    r6673 r6713  
    77*  @author GLG, MHPCC
    88*
    9 *  @version $Revision: 1.1.4.4 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2006-03-23 03:09:57 $
     9*  @version $Revision: 1.1.4.5 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2006-03-28 02:16:26 $
    1111*
    1212*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8888    pmFPA *parent;                      ///< Parent FPA
    8989    bool process;                       ///< Do we bother about reading and working with this chip?
    90     bool exists;                        ///< Does the chip exist --- has it been read in?
     90    bool file_exists;                   ///< Does the file for this chip exist (read case only)?
     91    bool data_exists;                   ///< Does the data for this chip exist (read case only)?
    9192    pmHDU *hdu;                         ///< FITS data
    9293}
     
    110111    pmChip *parent;                     ///< Parent chip
    111112    bool process;                       ///< Do we bother about reading and working with this cell?
    112     bool exists;                        ///< Does the cell exist --- has it been read in?
     113    bool file_exists;                   ///< Does the file for this cell exist (read case only)?
     114    bool data_exists;                   ///< Does the data for this cell exist (read case only)?
    113115    pmHDU *hdu;                         ///< FITS data
    114116}
     
    133135    psMetadata *analysis;               ///< Readout-level analysis metadata
    134136    pmCell *parent;                     ///< Parent cell
     137    bool process;                       ///< Do we bother about reading and working with this readout?
     138    bool file_exists;                   ///< Does the file for this readout exist (read case only)?
     139    bool data_exists;                   ///< Does the data for this readout exist (read case only)?
    135140}
    136141pmReadout;
     
    207212);
    208213
    209 
     214/* functions to turn on/off the file_exists flags */
     215bool pmFPASetFileStatus (pmFPA *fpa, bool status);
     216bool pmChipSetFileStatus (pmChip *chip, bool status);
     217bool pmCellSetFileStatus (pmCell *cell, bool status);
     218
     219/* functions to turn on/off the data_exists flags */
     220bool pmFPASetDataStatus (pmFPA *fpa, bool status);
     221bool pmChipSetDataStatus (pmChip *chip, bool status);
     222bool pmCellSetDataStatus (pmCell *cell, bool status);
    210223
    211224/** FUNC DESC
Note: See TracChangeset for help on using the changeset viewer.