Changeset 9621 for trunk/psModules/src/camera
- Timestamp:
- Oct 17, 2006, 4:29:15 PM (20 years ago)
- Location:
- trunk/psModules/src/camera
- Files:
-
- 6 edited
-
pmFPA.c (modified) (4 diffs)
-
pmFPA.h (modified) (2 diffs)
-
pmFPAFlags.c (modified) (1 diff)
-
pmFPAFlags.h (modified) (2 diffs)
-
pmFPALevel.c (modified) (1 diff)
-
pmFPALevel.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmFPA.c
r9584 r9621 1 /** @file pmFPA.c2 *3 * @brief This file defines the basic types for the FPA hierarchy4 *5 * @ingroup AstroImage6 *7 * @author GLG, MHPCC8 *9 * XXX: We should review the extent of the warning messages on these functions10 * when the transformations are not successful.11 *12 * XXX: Should we implement non-linear cell->chip transforms?13 *14 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $15 * @date $Date: 2006-10-17 00:33:56 $16 *17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii18 */19 20 1 #ifdef HAVE_CONFIG_H 21 2 #include <config.h> 22 3 #endif 23 4 24 /******************************************************************************/25 /* INCLUDE FILES */26 /******************************************************************************/27 5 #include <string.h> 28 6 #include <math.h> … … 35 13 #include "pmMaskBadPixels.h" 36 14 37 /******************************************************************************38 *****************************************************************************/39 40 15 static void readoutFree(pmReadout *readout) 41 16 { 42 17 // if this readout has a parent, drop that instance 43 18 if (readout->parent) { 44 psTrace("psModules.camera", 9, "Removing readout %zd from cell %zd...\n", (size_t)readout, (size_t)readout->parent); 19 psTrace("psModules.camera", 9, "Removing readout %zd from cell %zd...\n", 20 (size_t)readout, (size_t)readout->parent); 45 21 psArray *readouts = readout->parent->readouts; 46 22 for (int i = 0; i < readouts->n; i++) { … … 63 39 // if this cell has a parent, drop that instance 64 40 if (cell->parent) { 65 psTrace("psModules.camera", 9, "Removing cell %zd from chip %zd...\n", (size_t)cell, (size_t)cell->parent); 41 psTrace("psModules.camera", 9, "Removing cell %zd from chip %zd...\n", 42 (size_t)cell, (size_t)cell->parent); 66 43 psArray *cells = cell->parent->cells; 67 44 for (int i = 0; i < cells->n; i++) { … … 85 62 // if this chip has a parent, drop that instance 86 63 if (chip->parent) { 87 psTrace("psModules.camera", 9, "Removing chip %zd from fpa %zd...\n", (size_t)chip, (size_t)chip->parent); 64 psTrace("psModules.camera", 9, "Removing chip %zd from fpa %zd...\n", 65 (size_t)chip, (size_t)chip->parent); 88 66 psArray *chips = chip->parent->chips; 89 67 for (int i = 0; i < chips->n; i++) { -
trunk/psModules/src/camera/pmFPA.h
r9584 r9621 9 9 /// @author Eugene Magnier, IfA 10 10 /// 11 /// @version $Revision: 1. 7$ $Name: not supported by cvs2svn $12 /// @date $Date: 2006-10-1 7 00:33:56$11 /// @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 12 /// @date $Date: 2006-10-18 02:29:15 $ 13 13 /// 14 14 /// Copyright 2005-2006 Institute for Astronomy, University of Hawaii … … 17 17 #ifndef PM_FPA_H 18 18 #define PM_FPA_H 19 20 #if HAVE_CONFIG_H21 #include <config.h>22 #endif23 19 24 20 #include <pslib.h> -
trunk/psModules/src/camera/pmFPAFlags.c
r9584 r9621 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <pslib.h> -
trunk/psModules/src/camera/pmFPAFlags.h
r9584 r9621 9 9 /// @author Eugene Magnier, IfA 10 10 /// 11 /// @version $Revision: 1. 1$ $Name: not supported by cvs2svn $12 /// @date $Date: 2006-10-1 7 00:33:56$11 /// @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 12 /// @date $Date: 2006-10-18 02:29:15 $ 13 13 /// 14 14 /// Copyright 2005-2006 Institute for Astronomy, University of Hawaii … … 17 17 #ifndef PM_FPA_FLAGS_H 18 18 #define PM_FPA_FLAGS_H 19 20 #if HAVE_CONFIG_H21 #include <config.h>22 #endif23 19 24 20 #include "pmFPA.h" -
trunk/psModules/src/camera/pmFPALevel.c
r9584 r9621 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <strings.h> -
trunk/psModules/src/camera/pmFPALevel.h
r9584 r9621 7 7 /// @author Eugene Magnier, MHPCC 8 8 /// 9 /// @version $Revision: 1. 1$ $Name: not supported by cvs2svn $10 /// @date $Date: 2006-10-1 7 00:33:56$9 /// @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 10 /// @date $Date: 2006-10-18 02:29:15 $ 11 11 /// 12 12 /// Copyright 2005-2006 Institute for Astronomy, University of Hawaii … … 15 15 #ifndef PM_FPA_LEVEL_H 16 16 #define PM_FPA_LEVEL_H 17 18 #if HAVE_CONFIG_H19 #include <config.h>20 #endif21 22 17 23 18 /// Specify the level of the FPA hierarchy
Note:
See TracChangeset
for help on using the changeset viewer.
