Changeset 6930 for trunk/psModules
- Timestamp:
- Apr 20, 2006, 12:30:33 PM (20 years ago)
- Location:
- trunk/psModules/src/astrom
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/astrom/pmFPA.c
r6896 r6930 12 12 * XXX: Should we implement non-linear cell->chip transforms? 13 13 * 14 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $15 * @date $Date: 2006-04- 19 03:24:09$14 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2006-04-20 22:30:33 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 267 267 268 268 tmpCell->concepts = psMetadataAlloc(); 269 tmpCell->conceptsRead = PM_CONCEPT_SOURCE_NONE; 269 270 psBool rc = psMetadataAddStr(tmpCell->concepts, PS_LIST_HEAD, "CELL.NAME", 0, NULL, name); 270 271 if (rc == false) { … … 313 314 314 315 tmpChip->concepts = psMetadataAlloc(); 316 tmpChip->conceptsRead = PM_CONCEPT_SOURCE_NONE; 315 317 psBool rc = psMetadataAddStr(tmpChip->concepts, PS_LIST_HEAD, "CHIP.NAME", 0, NULL, name); 316 318 if (rc == false) { … … 353 355 354 356 tmpFPA->concepts = psMetadataAlloc(); 357 tmpFPA->conceptsRead = PM_CONCEPT_SOURCE_NONE; 355 358 tmpFPA->analysis = NULL; 356 359 tmpFPA->camera = psMemIncrRefCounter((psPtr)camera); -
trunk/psModules/src/astrom/pmFPA.h
r6896 r6930 7 7 * @author GLG, MHPCC 8 8 * 9 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-04- 19 03:24:09$9 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-04-20 22:30:33 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 51 51 // Information 52 52 psMetadata *concepts; ///< Cache for PS concepts 53 unsigned int conceptsRead; ///< Which concepts have been read 53 54 psMetadata *analysis; ///< FPA-level analysis metadata 54 55 const psMetadata *camera; ///< Camera configuration … … 84 85 // Information 85 86 psMetadata *concepts; ///< Cache for PS concepts 87 unsigned int conceptsRead; ///< Which concepts have been read 86 88 psMetadata *analysis; ///< Chip-level analysis metadata 87 89 psArray *cells; ///< The cells (referred to by name) … … 106 108 { 107 109 psMetadata *concepts; ///< Cache for PS concepts 110 unsigned int conceptsRead; ///< Which concepts have been read 108 111 psMetadata *config; ///< Cell configuration info 109 112 psMetadata *analysis; ///< Cell-level analysis metadata
Note:
See TracChangeset
for help on using the changeset viewer.
