IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 27, 2006, 6:03:35 PM (20 years ago)
Author:
Paul Price
Message:

Renaming pmReadoutSet{Mask,Weight} as pmReadoutGenerate{Mask,Weight}; adding pmReadoutSet{Mask,Weight}. These changes are in order to generate 'throwaway' masks and weights, in the case where we're using pmReadoutReadNext (which doesn't use the HDU).

File:
1 edited

Legend:

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

    r7309 r7715  
    2121} pmMaskValue;
    2222
     23// These functions set an extant mask/weight (or create a throwaway one).
     24// The throwaway case is intended for when the user is iterating using pmReadoutReadNext, in which case
     25// the HDU can't be generated
    2326bool pmReadoutSetMask(pmReadout *readout // Readout for which to set mask
    2427                     );
    2528bool pmReadoutSetWeight(pmReadout *readout // Readout for which to set weight
    2629                       );
    27 bool pmCellSetMaskWeight(pmCell *cell // Cell for which to set weights
    28                         );
    29 bool pmReadoutSetMaskWeight(pmReadout *readout // Readout for which to set weights
    30                            );
     30
     31// These functions generate a mask/weight suitable for output (complete with HDU entry) and then set them.
     32bool pmReadoutGenerateMask(pmReadout *readout // Readout for which to generate mask
     33                          );
     34bool pmReadoutGenerateWeight(pmReadout *readout // Readout for which to generate weight
     35                            );
     36
     37// These functions are conveniences for pmReadoutGenerateMask and pmReadoutGenerateWeight.
     38bool pmCellGenerateMaskWeight(pmCell *cell // Cell for which to generate mask and weights
     39                             );
     40bool pmReadoutGenerateMaskWeight(pmReadout *readout // Readout for which to generate mask and weights
     41                                );
    3142
    3243
Note: See TracChangeset for help on using the changeset viewer.