IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 3, 2007, 10:00:03 AM (19 years ago)
Author:
eugene
Message:

adding functions to get stats on pixels and metadata independently; adding ability to get header data from readout->analysis

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStats/src/ppStats.h

    r13993 r13999  
    1111    pmFPAview *view;                    // View to analyse
    1212    // Stuff to output
    13     psStats *stats;                     // Statistics to calculate
    14     bool doStats;                       // Do statistics?
     13    psStats *stats;                     // pixel Statistics to calculate
     14    bool doStats;                       // Do pixel statistics?
    1515    bool fileLevel;                     // Output file level?
    1616    psList *headers;                    // Headers to read
    1717    psList *concepts;                   // Concepts to read
     18    psList *analysis;                   // Analysis entries to read
    1819    psList *summary;                    // Summary statistics to calculate
    1920    // Options for input data
     
    3536    );
    3637
     38psExit ppStatsChip(psMetadata *fpaResults, // Metadata holding the fpa results
     39                   pmChip *chip,     // Chip for which to get statistics
     40                   psFits *fits,     // FITS file handle
     41                   pmFPAview *view,  // View for analysis
     42                   ppStatsData *data,// The data
     43                   const pmConfig *config // Configuration
     44    );
     45
     46psExit ppStatsCell(psMetadata *chipResults, // Metadata holding the chip results
     47                   pmCell *cell,     // Cell for which to get statistics
     48                   psFits *fits,     // FITS file handle
     49                   ppStatsData *data,// The data
     50                   const pmConfig *config // Configuration
     51    );
     52
    3753/// Supplement the statistics with the fringe solution
    3854bool ppStatsFringe(psMetadata *stats,     ///< Statistics metadata to supplement
     
    4258    );
    4359
     60
     61// measure only the pixel-related statistics (stats, summary)
     62psMetadata *ppStatsPixels(psMetadata *out,
     63                          pmFPA *fpa,         // FPA for which to get statistics
     64                          pmFPAview *view,    // View for analysis
     65                          psMaskType maskVal, // Value to mask
     66                          pmConfig *config    // Configuration
     67    );
     68
     69// measure only the non-pixel-related statistics (headers, concepts)
     70psMetadata *ppStatsMetadata(psMetadata *out,
     71                            pmFPA *fpa,         // FPA for which to get statistics
     72                            pmFPAview *view,    // View for analysis
     73                            psMaskType maskVal, // Value to mask
     74                            pmConfig *config    // Configuration
     75    );
    4476
    4577/// Loop over the input image and do all the hard work
Note: See TracChangeset for help on using the changeset viewer.