IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 10, 2006, 5:53:19 PM (20 years ago)
Author:
Paul Price
Message:

Changed to allow copy with binning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/rel10_ifa/psModules/src/astrom/pmFPACopy.h

    r6720 r6828  
    22#define PM_FPA_COPY_H
    33
     4// Copy the FPA components, including the pixels
    45int pmFPACopy(pmFPA *target,            // The target FPA
    56              pmFPA *source             // The source FPA, to be copied
     
    1213              );
    1314
     15// Versions that copy the structure and not the pixels; they also allow binning
     16int pmFPACopyStructure(pmFPA *target,   // The target FPA
     17                       pmFPA *source,   // The source FPA, to be copied
     18                       int xBin, int yBin     // Binning factors in x and y
     19                      );
     20int pmChipCopyStructure(pmChip *target, // The target chip
     21                        pmChip *source, // The source chip, to be copied
     22                        int xBin, int yBin   // Binning factors in x and y
     23                       );
     24int pmCellCopyStructure(pmCell *target, // The target cell
     25                        pmCell *source, // The source cell, to be copied
     26                        int xBin, int yBin // Binning factors in x and y
     27                       );
     28
     29
    1430#endif
Note: See TracChangeset for help on using the changeset viewer.