IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 5983


Ignore:
Timestamp:
Jan 13, 2006, 9:01:27 PM (21 years ago)
Author:
magnier
Message:

added pmGrowthCurve to pmPSF, added pmPSF_ApTrendOptions to selet ApTrend masking, changed ApTrend to 4D

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_rel9_p0/psModules/src/objects/pmPSF.h

    r5958 r5983  
    66 *  @author EAM, IfA
    77 *
    8  *  @version $Revision: 1.1.18.1 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2006-01-10 04:46:03 $
     8 *  @version $Revision: 1.1.18.2 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2006-01-14 07:01:27 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1616# define PM_PSF_H
    1717
     18#include "pmGrowthCurve.h"
    1819
    1920/** pmPSF data structure
     
    3334    pmModelType type;   ///< PSF Model in use
    3435    psArray *params;   ///< Model parameters (psPolynomial2D)
    35     psPolynomial3D *ApTrend;  ///< ApResid vs (x,y,rflux) (rflux = ten(0.4*mInst)
     36    psPolynomial4D *ApTrend;  ///< ApResid vs (x,y,rflux) (rflux = ten(0.4*mInst)
     37    pmGrowthCurve *growth;  ///< apMag vs Radius
    3638    float ApResid;   ///< ???
    3739    float dApResid;   ///< ???
    3840    float skyBias;   ///< ???
     41    float skySat;   ///< ???
    3942    float chisq;   ///< PSF goodness statistic
    4043    int nPSFstars;   ///< number of stars used to measure PSF
     
    4346pmPSF;
    4447
     48typedef enum {
     49    PM_PSF_NONE,
     50    PM_PSF_CONSTANT,
     51    PM_PSF_SKYBIAS,
     52    PM_PSF_SKYSAT,
     53    PM_PSF_XY_LIN,
     54    PM_PSF_XY_QUAD,
     55    PM_PSF_SKY_XY_LIN,
     56    PM_PSF_SKYSAT_XY_LIN,
     57    PM_PSF_ALL
     58} pmPSF_ApTrendOptions;
    4559
    4660/**
     
    87101);
    88102
     103bool pmPSF_MaskApTrend (pmPSF *psf, pmPSF_ApTrendOptions option);
     104
    89105# endif
Note: See TracChangeset for help on using the changeset viewer.