IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13214


Ignore:
Timestamp:
May 3, 2007, 2:54:09 PM (19 years ago)
Author:
magnier
Message:

adding PlotApResid

Location:
trunk/psModules/src/objects
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/objects/Makefile.am

    r12949 r13214  
    2323     pmSourcePlotPSFModel.c \
    2424     pmSourcePlotMoments.c \
     25     pmSourcePlotApResid.c \
    2526     pmResiduals.c \
    2627     pmPSF.c \
  • trunk/psModules/src/objects/pmSourcePlots.c

    r12832 r13214  
    55 *  @author EAM, IfA
    66 *
    7  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2007-04-14 03:22:48 $
     7 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2007-05-04 00:54:09 $
    99 *
    1010 *  Copyright 2006 IfA, University of Hawaii
     
    6767        layout->nX = 4;
    6868        layout->nY = 2;
    69         layout->aspectRatio = 2.0;
     69        layout->aspectRatio = 1.0;
    7070        // count the number of chips and their layout (xrange, yrange, axis ratio)
    7171        for (int i = 0; i < fpa->chips->n; i++) {
     
    104104        layout = pmSourcePlotLayoutAlloc ();
    105105        layout->nTotal = 1;
     106        layout->nX = 1;
     107        layout->nY = 1;
     108        layout->aspectRatio = 1.0;
    106109    } else {
    107110        psMemIncrRefCounter (layout);
     
    119122            if (!strcmp (file->name, "SOURCE.PLOT.MOMENTS")) {
    120123                pmSourcePlotMoments (newView, file, config, layout);
     124            }
     125            if (!strcmp (file->name, "SOURCE.PLOT.APRESID")) {
     126                pmSourcePlotApResid (newView, file, config, layout);
    121127            }
    122128        }
  • trunk/psModules/src/objects/pmSourcePlots.h

    r12832 r13214  
    44 * @author EAM, IfA
    55 *
    6  * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    7  * @date $Date: 2007-04-14 03:22:48 $
     6 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     7 * @date $Date: 2007-05-04 00:54:09 $
    88 * Copyright 2006 Institute for Astronomy, University of Hawaii
    99 */
     
    3636bool pmSourcePlotPSFModel (const pmFPAview *view, pmFPAfile *file, const pmConfig *config, pmSourcePlotLayout *layout);
    3737bool pmSourcePlotMoments (const pmFPAview *view, pmFPAfile *file, const pmConfig *config, pmSourcePlotLayout *layout);
     38bool pmSourcePlotApResid (const pmFPAview *view, pmFPAfile *file, const pmConfig *config, pmSourcePlotLayout *layout);
    3839
    3940/// @}
Note: See TracChangeset for help on using the changeset viewer.