IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 9, 2008, 1:00:32 PM (18 years ago)
Author:
Paul Price
Message:

Read functions for readouts need to take a database handle so they can read the concepts.

File:
1 edited

Legend:

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

    r16580 r18030  
    44 * @author Paul Price, IfA
    55 *
    6  * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    7  * @date $Date: 2008-02-22 01:20:24 $
     6 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     7 * @date $Date: 2008-06-09 22:59:02 $
    88 * Copyright 2005-2006 Institute for Astronomy, University of Hawaii
    99 */
     
    1919                   psFits *fits,        ///< FITS file from which to read
    2020                   int z,               ///< Readout number/plane; zero-offset indexing
    21                    int numScans         ///< Number of scans (rows/cols) to read
     21                   int numScans,        ///< Number of scans (rows/cols) to read
     22                   psDB *db             ///< Database handle for concepts
    2223    );
    2324
     
    2930                        int z,          ///< Readout number/plane; zero-offset indexing
    3031                        int numScans,   ///< Number of scans (rows/cols) to read
    31                         int overlap     ///< Overlap between consecutive reads
     32                        int overlap,    ///< Overlap between consecutive reads
     33                        psDB *db        ///< Database handle for concepts
    3234    );
    3335
     
    3537bool pmReadoutRead(pmReadout *readout,  ///< Readout of interest
    3638                   psFits *fits,        ///< FITS file from which to read
    37                    int z               ///< Readout number/plane; zero-offset indexing
     39                   int z,               ///< Readout number/plane; zero-offset indexing
     40                   psDB *db             ///< Database handle for concepts
    3841    );
    3942
     
    9295                       psFits *fits,    ///< FITS file from which to read
    9396                       int z,           ///< Readout number/plane; zero-offset indexing
    94                        int numScans     ///< Number of scans (rows/cols) to read
     97                       int numScans,    ///< Number of scans (rows/cols) to read
     98                       psDB *db         ///< Database handle for concepts
    9599    );
    96100
     
    102106                            int z,      ///< Readout number/plane; zero-offset indexing
    103107                            int numScans, ///< Number of scans (rows/cols) to read
    104                             int overlap ///< Overlap between consecutive reads
     108                            int overlap, ///< Overlap between consecutive reads
     109                            psDB *db    ///< Database handle for concepts
    105110    );
    106111
     
    108113bool pmReadoutReadMask(pmReadout *readout, ///< Readout of interest
    109114                       psFits *fits,    ///< FITS file from which to read
    110                        int z            ///< Readout number/plane; zero-offset indexing
     115                       int z,           ///< Readout number/plane; zero-offset indexing
     116                       psDB *db         ///< Database handle for concepts
    111117    );
    112118
     
    141147                         psFits *fits,  ///< FITS file from which to read
    142148                         int z,         ///< Readout number/plane; zero-offset indexing
    143                          int numScans   ///< Number of scans (rows/cols) to read
     149                         int numScans,  ///< Number of scans (rows/cols) to read
     150                         psDB *db       ///< Database handle for concepts
    144151    );
    145152
     
    151158                              int z,    ///< Readout number/plane; zero-offset indexing
    152159                              int numScans, ///< Number of scans (rows/cols) to read
    153                               int overlap ///< Overlap between consecutive reads
     160                              int overlap, ///< Overlap between consecutive reads
     161                              psDB *db  ///< Database handle for concepts
    154162    );
    155163
     
    157165bool pmReadoutReadWeight(pmReadout *readout, ///< Readout of interest
    158166                         psFits *fits,  ///< FITS file from which to read
    159                          int z          ///< Readout number/plane; zero-offset indexing
     167                         int z,         ///< Readout number/plane; zero-offset indexing
     168                         psDB *db       ///< Database handle for concepts
    160169    );
    161170
Note: See TracChangeset for help on using the changeset viewer.