IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 17, 2006, 4:29:15 PM (20 years ago)
Author:
Paul Price
Message:

Removing inclusion of config.h in header files, and putting it in all source files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmFPA.c

    r9584 r9621  
    1 /** @file  pmFPA.c
    2 *
    3 *  @brief This file defines the basic types for the FPA hierarchy
    4 *
    5 *  @ingroup AstroImage
    6 *
    7 *  @author GLG, MHPCC
    8 *
    9 * XXX: We should review the extent of the warning messages on these functions
    10 * 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 Hawaii
    18 */
    19 
    201#ifdef HAVE_CONFIG_H
    212#include <config.h>
    223#endif
    234
    24 /******************************************************************************/
    25 /*  INCLUDE FILES                                                             */
    26 /******************************************************************************/
    275#include <string.h>
    286#include <math.h>
     
    3513#include "pmMaskBadPixels.h"
    3614
    37 /******************************************************************************
    38  *****************************************************************************/
    39 
    4015static void readoutFree(pmReadout *readout)
    4116{
    4217    // if this readout has a parent, drop that instance
    4318    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);
    4521        psArray *readouts = readout->parent->readouts;
    4622        for (int i = 0; i < readouts->n; i++) {
     
    6339    // if this cell has a parent, drop that instance
    6440    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);
    6643        psArray *cells = cell->parent->cells;
    6744        for (int i = 0; i < cells->n; i++) {
     
    8562    // if this chip has a parent, drop that instance
    8663    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);
    8866        psArray *chips = chip->parent->chips;
    8967        for (int i = 0; i < chips->n; i++) {
Note: See TracChangeset for help on using the changeset viewer.