Changeset 6713 for branches/rel10_ifa/psModules/src/astrom/pmFPA.h
- Timestamp:
- Mar 27, 2006, 4:16:26 PM (20 years ago)
- File:
-
- 1 edited
-
branches/rel10_ifa/psModules/src/astrom/pmFPA.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/rel10_ifa/psModules/src/astrom/pmFPA.h
r6673 r6713 7 7 * @author GLG, MHPCC 8 8 * 9 * @version $Revision: 1.1.4. 4$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-03-2 3 03:09:57$9 * @version $Revision: 1.1.4.5 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-03-28 02:16:26 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 88 88 pmFPA *parent; ///< Parent FPA 89 89 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)? 91 92 pmHDU *hdu; ///< FITS data 92 93 } … … 110 111 pmChip *parent; ///< Parent chip 111 112 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)? 113 115 pmHDU *hdu; ///< FITS data 114 116 } … … 133 135 psMetadata *analysis; ///< Readout-level analysis metadata 134 136 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)? 135 140 } 136 141 pmReadout; … … 207 212 ); 208 213 209 214 /* functions to turn on/off the file_exists flags */ 215 bool pmFPASetFileStatus (pmFPA *fpa, bool status); 216 bool pmChipSetFileStatus (pmChip *chip, bool status); 217 bool pmCellSetFileStatus (pmCell *cell, bool status); 218 219 /* functions to turn on/off the data_exists flags */ 220 bool pmFPASetDataStatus (pmFPA *fpa, bool status); 221 bool pmChipSetDataStatus (pmChip *chip, bool status); 222 bool pmCellSetDataStatus (pmCell *cell, bool status); 210 223 211 224 /** FUNC DESC
Note:
See TracChangeset
for help on using the changeset viewer.
