Changeset 4694 for trunk/archive/scripts/src/papFocalPlane.h
- Timestamp:
- Aug 1, 2005, 2:21:14 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/archive/scripts/src/papFocalPlane.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/scripts/src/papFocalPlane.h
r4386 r4694 18 18 const psMetadata *camera; // Camera configuration 19 19 psDB *db; // Database 20 ps Metadata *chips; // The chips (referred to by name)20 psArray *chips; // The chips 21 21 // FITS data 22 const char *extname; // Extension name, if it corresponds to this level 22 23 psArray *pixels; // The pixel data, if it corresponds to this level 23 24 psMetadata *header; // The FITS header, if it corresponds to this level … … 33 34 // Information 34 35 psMetadata *values; // Important values (cached) 35 psMetadata *cells; // The cells (referred to by name) 36 psArray *cells; // The cells (referred to by name) 37 papFPA *parent; // Parent FPA 36 38 // FITS data 39 const char *extname; // Extension name, if it corresponds to this level 37 40 psArray *pixels; // The pixel data, if it corresponds to this level 38 41 psMetadata *header; // The FITS header, if it corresponds to this level … … 52 55 psMetadata *values; // Important values (cached) 53 56 psArray *readouts; // The readouts (referred to by number) 57 papChip *parent; // Parent chip 54 58 // FITS data 59 const char *extname; // Extension name, if it corresponds to this level 55 60 psArray *pixels; // The pixel data, if it corresponds to this level 56 61 psMetadata *header; // The FITS header, if it corresponds to this level … … 74 79 75 80 // Look for a particular value for a given cell (referred to by FPA+chip+cell) 76 psMetadataItem *psCellGetValue(papFPA *fpa, // The FPA that contains the cell 77 const char *chipName, // The name of the chip 78 const char *cellName, // The name of the cell 81 psMetadataItem *psCellGetValue(papCell *cell, // The cell 79 82 const char *valueName // Name of value 80 83 ); 81 84 82 85 // Type-specific functions provided as a convenience to the user 83 float psCellGetValueF32(papFPA *fpa, // The FPA that contains the cell 84 const char *chipName, // The name of the chip 85 const char *cellName, // The name of the cell 86 float psCellGetValueF32(papCell *cell, // The cell 86 87 const char *valueName // Name of value 87 88 ); 88 int psCellGetValueS32(papFPA *fpa, // The FPA that contains the cell 89 const char *chipName, // The name of the chip 90 const char *cellName, // The name of the cell 89 int psCellGetValueS32(papCell *cell, // The cell 91 90 const char *valueName // Name of value 92 91 ); 93 double psCellGetValueF64(papFPA *fpa, // The FPA that contains the cell 94 const char *chipName, // The name of the chip 95 const char *cellName, // The name of the cell 92 double psCellGetValueF64(papCell *cell, // The cell 96 93 const char *valueName // Name of value 97 94 ); 98 psString psCellGetValueString(papFPA *fpa, // The FPA that contains the cell 99 const char *chipName, // The name of the chip 100 const char *cellName, // The name of the cell 95 psString psCellGetValueString(papCell *cell, // The cell 101 96 const char *valueName // Name of value 102 97 ); … … 110 105 111 106 papChip *papChipAlloc(papFPA *fpa, // FPA to which the chip belongs 112 const char *name // Name of thechip107 psString name // Name of chip 113 108 ); 114 109 void p_papChipFree(papChip *chip); 115 110 116 111 papCell *papCellAlloc(papChip *chip, // Chip to which the cell belongs 117 const char *name, // Name of the cell 118 int nReadouts // Number of readouts contained 112 psString name // Name of cell 119 113 ); 120 114 void p_papCellFree(papCell *cell);
Note:
See TracChangeset
for help on using the changeset viewer.
