IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 16, 2006, 5:42:55 PM (20 years ago)
Author:
Paul Price
Message:

Documenting pmHDUUtils.[ch]

File:
1 edited

Legend:

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

    r8815 r9608  
    99
    1010
    11 pmHDU *pmHDUFromFPA(const pmFPA *fpa    // FPA for which to find HDU
    12                    )
     11pmHDU *pmHDUFromFPA(const pmFPA *fpa)
    1312{
    1413    PS_ASSERT_PTR_NON_NULL(fpa, NULL);
     
    1615}
    1716
    18 pmHDU *pmHDUFromChip(const pmChip *chip // Chip for which to find HDU
    19                     )
     17pmHDU *pmHDUFromChip(const pmChip *chip)
    2018{
    2119    PS_ASSERT_PTR_NON_NULL(chip, NULL);
     
    2927}
    3028
    31 pmHDU *pmHDUFromCell(const pmCell *cell // Cell for which to find HDU
    32                     )
     29pmHDU *pmHDUFromCell(const pmCell *cell)
    3330{
    3431    PS_ASSERT_PTR_NON_NULL(cell, NULL);
     
    4239}
    4340
    44 pmHDU *pmHDUFromReadout(const pmReadout *readout // Readout for which to find HDU
    45                        )
     41pmHDU *pmHDUFromReadout(const pmReadout *readout)
    4642{
    4743    PS_ASSERT_PTR_NON_NULL(readout, NULL);
     
    5349
    5450// Get the lowest HDU
    55 pmHDU *pmHDUGetLowest(const pmFPA *fpa, // The FPA
    56                       const pmChip *chip, // The chip, or NULL
    57                       const pmCell *cell // The cell, or NULL
    58                      )
     51pmHDU *pmHDUGetLowest(const pmFPA *fpa, const pmChip *chip, const pmCell *cell)
    5952{
    6053    pmHDU *hdu = NULL;          // The HDU that's at the lowest level
     
    7164
    7265// Get the highest HDU
    73 pmHDU *pmHDUGetHighest(const pmFPA *fpa, // The FPA
    74                        const pmChip *chip, // The chip, or NULL
    75                        const pmCell *cell // The cell, or NULL
    76                       )
     66pmHDU *pmHDUGetHighest(const pmFPA *fpa, const pmChip *chip, const pmCell *cell)
    7767{
    7868    pmHDU *hdu = NULL;          // The HDU that's at the highest level
     
    9080}
    9181
    92 void pmHDUPrint(FILE *fd,               // File descriptor to which to print
    93                 const pmHDU *hdu,       // HDU to print
    94                 int level,              // Level at which to print
    95                 bool header             // Print header?
    96                )
     82void pmHDUPrint(FILE *fd, const pmHDU *hdu, int level, bool header)
    9783{
    9884    PS_ASSERT_PTR_NON_NULL(hdu,);
Note: See TracChangeset for help on using the changeset viewer.