IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 17, 2008, 12:16:38 PM (18 years ago)
Author:
Paul Price
Message:

Changing use of psDB* to pmConfig* so that the database handle only has to be set up when required.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmFPAWrite.h

    r12705 r18163  
    44 * @author Paul Price, IfA
    55 *
    6  * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
    7  * @date $Date: 2007-03-31 04:17:41 $
     6 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
     7 * @date $Date: 2008-06-17 22:16:38 $
    88 * Copyright 2005-2006 Institute for Astronomy, University of Hawaii
    99 */
     
    1111#ifndef PM_FPA_WRITE_H
    1212#define PM_FPA_WRITE_H
     13
     14#include <pmConfig.h>
    1315
    1416/// @addtogroup Camera Camera Layout
     
    3234bool pmCellWrite(pmCell *cell,          ///<  Cell to write
    3335                 psFits *fits,          ///<  FITS file to which to write
    34                  psDB *db,              ///<  Database handle for "concepts" update
     36                 pmConfig *config,      ///<  Configuration
    3537                 bool blank             ///<  Write a blank PHU?
    3638                );
     
    4446bool pmChipWrite(pmChip *chip,          ///<  Chip to write
    4547                 psFits *fits,          ///<  FITS file to which to write
    46                  psDB *db,              ///<  Database handle for "concepts" update
     48                 pmConfig *config,      ///<  Configuration
    4749                 bool blank,            ///<  Write a blank PHU?
    4850                 bool recurse           ///<  Recurse to lower levels?
     
    5759bool pmFPAWrite(pmFPA *fpa,             ///<  FPA to write
    5860                psFits *fits,           ///<  FITS file to which to write
    59                 psDB *db,               ///<  Database handle for "concepts" update
     61                pmConfig *config,       ///<  Configuration
    6062                bool blank,             ///<  Write a blank PHU?
    6163                bool recurse            ///<  Recurse to lower levels?
     
    7072bool pmCellWriteMask(pmCell *cell,      ///<  Cell to write
    7173                     psFits *fits,      ///<  FITS file to which to write
    72                      psDB *db,          ///<  Database handle for "concepts" update
     74                     pmConfig *config,  ///<  Configuration
    7375                     bool blank         ///<  Write a blank PHU?
    7476                    );
     
    8385bool pmChipWriteMask(pmChip *chip,      ///<  Chip to write
    8486                     psFits *fits,      ///<  FITS file to which to write
    85                      psDB *db,          ///<  Database handle for "concepts" update
     87                     pmConfig *config,  ///<  Configuration
    8688                     bool blank,        ///<  Write a blank PHU?
    8789                     bool recurse       ///<  Recurse to lower levels?
     
    9799bool pmFPAWriteMask(pmFPA *fpa,         ///<  FPA to write
    98100                    psFits *fits,       ///<  FITS file to which to write
    99                     psDB *db,           ///<  Database handle for "concepts" update
     101                    pmConfig *config,   ///<  Configuration
    100102                    bool blank,         ///<  Write a blank PHU?
    101103                    bool recurse        ///<  Recurse to lower levels?
     
    110112bool pmCellWriteWeight(pmCell *cell,    ///<  Cell to write
    111113                       psFits *fits,    ///<  FITS file to which to write
    112                        psDB *db,        ///<  Database handle for "concepts" update
     114                       pmConfig *config, ///<  Configuration
    113115                       bool blank       ///<  Write a blank PHU?
    114116                      );
     
    123125bool pmChipWriteWeight(pmChip *chip,    ///<  Chip to write
    124126                       psFits *fits,    ///<  FITS file to which to write
    125                        psDB *db,        ///<  Database handle for "concepts" update
     127                       pmConfig *config, ///<  Configuration
    126128                       bool blank,      ///<  Write a blank PHU?
    127129                       bool recurse     ///<  Recurse to lower levels?
     
    137139bool pmFPAWriteWeight(pmFPA *fpa,       ///<  FPA to write
    138140                      psFits *fits,     ///<  FITS file to which to write
    139                       psDB *db,         ///<  Database handle for "concepts" update
     141                      pmConfig *config, ///<  Configuration
    140142                      bool blank,       ///<  Write a blank PHU?
    141143                      bool recurse      ///<  Recurse to lower levels?
Note: See TracChangeset for help on using the changeset viewer.