IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 20937


Ignore:
Timestamp:
Dec 7, 2008, 4:51:14 PM (17 years ago)
Author:
eugene
Message:

changing pmPeaks to contain a pointer to pmFootprints, which just means re-ordering references to pmPeaks.h and pmFootprints.h

Location:
trunk/psModules/src
Files:
42 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmFPAfileIO.c

    r20639 r20937  
    2424#include "pmFPAfileIO.h"
    2525#include "pmFPAfileFitsIO.h"
     26#include "pmSpan.h"
     27#include "pmFootprint.h"
    2628#include "pmPeaks.h"
    2729#include "pmMoments.h"
  • trunk/psModules/src/camera/pmReadoutFake.c

    r20468 r20937  
    1717#include "pmModel.h"
    1818#include "pmModelClass.h"
     19#include "pmSpan.h"
     20#include "pmFootprint.h"
    1921#include "pmPeaks.h"
    2022#include "pmSource.h"
  • trunk/psModules/src/imcombine/pmPSFEnvelope.c

    r19998 r20937  
    2020#include "pmModelClass.h"
    2121#include "pmModelUtils.h"
     22#include "pmSpan.h"
     23#include "pmFootprint.h"
    2224#include "pmPeaks.h"
    2325#include "pmSource.h"
  • trunk/psModules/src/imcombine/pmSubtractionStamps.c

    r20714 r20937  
    99// All these includes required to get stamps out of an array of pmSources
    1010#include "pmMoments.h"
     11#include "pmSpan.h"
     12#include "pmFootprint.h"
    1113#include "pmPeaks.h"
    1214#include "pmResiduals.h"
  • trunk/psModules/src/objects/pmFootprint.c

    r18828 r20937  
    44 * @author RHL, Princeton & IfA; EAM, IfA
    55 *
    6  * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    7  * @date $Date: 2008-08-01 00:00:17 $
     6 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     7 * @date $Date: 2008-12-08 02:51:14 $
    88 * Copyright 2006 Institute for Astronomy, University of Hawaii
    99 */
     
    1818#include <strings.h>
    1919#include <pslib.h>
    20 #include "pmPeaks.h"
    2120#include "pmSpan.h"
    2221#include "pmFootprint.h"
     22#include "pmPeaks.h"
    2323
    2424static void footprintFree(pmFootprint *tmp)
  • trunk/psModules/src/objects/pmFootprintArrayGrow.c

    r20457 r20937  
    33 * @author RHL, Princeton & IfA; EAM, IfA
    44 *
    5  * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
    6  * @date $Date: 2008-10-29 02:45:44 $
     5 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
     6 * @date $Date: 2008-12-08 02:51:14 $
    77 * Copyright 2006 Institute for Astronomy, University of Hawaii
    88 */
     
    1919#include "pmSpan.h"
    2020#include "pmFootprint.h"
     21#include "pmPeaks.h"
    2122
    2223# define USE_FFTS_TO_CONVOLVE 1
  • trunk/psModules/src/objects/pmFootprintArraysMerge.c

    r18828 r20937  
    33 * @author RHL, Princeton & IfA; EAM, IfA
    44 *
    5  * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    6  * @date $Date: 2008-08-01 00:00:17 $
     5 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     6 * @date $Date: 2008-12-08 02:51:14 $
    77 * Copyright 2006 Institute for Astronomy, University of Hawaii
    88 */
     
    1919#include "pmSpan.h"
    2020#include "pmFootprint.h"
     21#include "pmPeaks.h"
    2122
    2223/*
  • trunk/psModules/src/objects/pmFootprintAssignPeaks.c

    r18828 r20937  
    33 * @author RHL, Princeton & IfA; EAM, IfA
    44 *
    5  * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    6  * @date $Date: 2008-08-01 00:00:17 $
     5 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     6 * @date $Date: 2008-12-08 02:51:14 $
    77 * Copyright 2006 Institute for Astronomy, University of Hawaii
    88 */
     
    1717#include <strings.h>
    1818#include <pslib.h>
    19 #include "pmPeaks.h"
    2019#include "pmSpan.h"
    2120#include "pmFootprint.h"
     21#include "pmPeaks.h"
    2222
    2323/*
     
    7171        pmFootprint *fp = footprints->data[id - 1];
    7272        psArrayAdd(fp->peaks, 5, peak);
    73         peak->footprint = (struct pmFootprint *) fp; // reference to containing footprint
     73        peak->footprint = fp; // reference to containing footprint
    7474    }
    7575   
  • trunk/psModules/src/objects/pmFootprintFind.c

    r19876 r20937  
    44 * @author RHL, Princeton & IfA; EAM, IfA
    55 *
    6  * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
    7  * @date $Date: 2008-10-03 03:21:22 $
     6 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
     7 * @date $Date: 2008-12-08 02:51:14 $
    88 * Copyright 2006 Institute for Astronomy, University of Hawaii
    99 */
     
    2020#include "pmSpan.h"
    2121#include "pmFootprint.h"
     22#include "pmPeaks.h"
    2223
    2324// XXX EAM : why use WSPAN in here rather than pmSpan?
  • trunk/psModules/src/objects/pmFootprintFindAtPoint.c

    r18828 r20937  
    44 * @author RHL, Princeton & IfA; EAM, IfA
    55 *
    6  * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    7  * @date $Date: 2008-08-01 00:00:17 $
     6 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     7 * @date $Date: 2008-12-08 02:51:14 $
    88 * Copyright 2006 Institute for Astronomy, University of Hawaii
    99 */
     
    1818#include <strings.h>
    1919#include <pslib.h>
    20 #include "pmPeaks.h"
    2120#include "pmSpan.h"
    2221#include "pmFootprint.h"
     22#include "pmPeaks.h"
    2323
    2424/*
  • trunk/psModules/src/objects/pmFootprintIDs.c

    r18828 r20937  
    44 * @author RHL, Princeton & IfA; EAM, IfA
    55 *
    6  * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    7  * @date $Date: 2008-08-01 00:00:17 $
     6 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     7 * @date $Date: 2008-12-08 02:51:14 $
    88 * Copyright 2006 Institute for Astronomy, University of Hawaii
    99 */
     
    2020#include "pmSpan.h"
    2121#include "pmFootprint.h"
     22#include "pmPeaks.h"
    2223
    2324/*
  • trunk/psModules/src/objects/pmGrowthCurve.c

    r20232 r20937  
    55 *  @author EAM, IfA
    66 *
    7  *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2008-10-17 22:58:23 $
     7 *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2008-12-08 02:51:14 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2020#include "pmHDU.h"
    2121#include "pmFPA.h"
     22#include "pmSpan.h"
     23#include "pmFootprint.h"
    2224#include "pmPeaks.h"
    2325#include "pmMoments.h"
  • trunk/psModules/src/objects/pmGrowthCurveGenerate.c

    r20447 r20937  
    55 *  @author EAM, IfA
    66 *
    7  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2008-10-29 00:00:37 $
     7 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2008-12-08 02:51:14 $
    99 *
    1010 *  Copyright 2004 Institute for Astronomy, University of Hawaii
     
    2424#include "pmHDU.h"
    2525#include "pmFPA.h"
     26#include "pmSpan.h"
     27#include "pmFootprint.h"
    2628#include "pmPeaks.h"
    2729#include "pmMoments.h"
  • trunk/psModules/src/objects/pmModelClass.c

    r19902 r20937  
    66 *  @author EAM, IfA
    77 *
    8  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2008-10-06 12:57:58 $
     8 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-12-08 02:51:14 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2323#include "pmHDU.h"
    2424#include "pmFPA.h"
     25#include "pmSpan.h"
     26#include "pmFootprint.h"
    2527#include "pmPeaks.h"
    2628#include "pmMoments.h"
  • trunk/psModules/src/objects/pmModelGroup.c

    r15562 r20937  
    66 *  @author EAM, IfA
    77 *
    8  *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2007-11-10 01:09:20 $
     8 *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-12-08 02:51:14 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2323#include "pmHDU.h"
    2424#include "pmFPA.h"
     25#include "pmSpan.h"
     26#include "pmFootprint.h"
    2527#include "pmPeaks.h"
    2628#include "pmMoments.h"
  • trunk/psModules/src/objects/pmPSF.c

    r20076 r20937  
    66 *  @author EAM, IfA
    77 *
    8  *  @version $Revision: 1.38 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2008-10-13 01:56:42 $
     8 *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-12-08 02:51:14 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2525#include "pmHDU.h"
    2626#include "pmFPA.h"
     27#include "pmSpan.h"
     28#include "pmFootprint.h"
    2729#include "pmPeaks.h"
    2830#include "pmMoments.h"
  • trunk/psModules/src/objects/pmPSF_IO.c

    r19906 r20937  
    66 *  @author EAM, IfA
    77 *
    8  *  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2008-10-06 13:05:13 $
     8 *  @version $Revision: 1.36 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-12-08 02:51:14 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3737#include "pmFPAfileFitsIO.h"
    3838
     39#include "pmSpan.h"
     40#include "pmFootprint.h"
    3941#include "pmPeaks.h"
    4042#include "pmMoments.h"
  • trunk/psModules/src/objects/pmPSFtry.c

    r20582 r20937  
    55 *  @author EAM, IfA
    66 *
    7  *  @version $Revision: 1.66 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2008-11-08 01:52:34 $
     7 *  @version $Revision: 1.67 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2008-12-08 02:51:14 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2020#include "pmFPA.h"
    2121#include "pmFPAMaskWeight.h"
     22#include "pmSpan.h"
     23#include "pmFootprint.h"
    2224#include "pmPeaks.h"
    2325#include "pmMoments.h"
  • trunk/psModules/src/objects/pmPeaks.c

    r20332 r20937  
    66 *  @author EAM, IfA: significant modifications.
    77 *
    8  *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2008-10-22 22:19:42 $
     8 *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-12-08 02:51:14 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2121#include <string.h>
    2222#include <pslib.h>
     23#include "pmSpan.h"
     24#include "pmFootprint.h"
    2325#include "pmPeaks.h"
    2426
  • trunk/psModules/src/objects/pmPeaks.h

    r18971 r20937  
    1010 * @author GLG, MHPCC
    1111 *
    12  * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
    13  * @date $Date: 2008-08-08 19:41:56 $
     12 * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
     13 * @date $Date: 2008-12-08 02:51:14 $
    1414 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    1515 */
     
    6060    bool assigned;                      ///< is peak assigned to a source?
    6161    pmPeakType type;                    ///< Description of peak.
    62     struct pmFootprint *footprint;      ///< reference to containing footprint
     62    pmFootprint *footprint;     ///< reference to containing footprint
    6363}
    6464pmPeak;
  • trunk/psModules/src/objects/pmSource.c

    r20522 r20937  
    66 *  @author EAM, IfA: significant modifications.
    77 *
    8  *  @version $Revision: 1.65 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2008-11-04 02:41:33 $
     8 *  @version $Revision: 1.66 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-12-08 02:51:14 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2525#include "pmFPA.h"
    2626#include "pmFPAMaskWeight.h"
     27#include "pmSpan.h"
     28#include "pmFootprint.h"
    2729#include "pmPeaks.h"
    2830#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceContour.c

    r15980 r20937  
    66 *  @author EAM, IfA: significant modifications.
    77 *
    8  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2008-01-02 20:39:04 $
     8 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-12-08 02:51:14 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2323#include "pmHDU.h"
    2424#include "pmFPA.h"
     25#include "pmSpan.h"
     26#include "pmFootprint.h"
    2527#include "pmPeaks.h"
    2628#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceExtendedPars.c

    r15889 r20937  
    66 *  @author EAM, IfA: significant modifications.
    77 *
    8  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2007-12-22 00:31:41 $
     8 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-12-08 02:51:14 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2424#include "pmFPA.h"
    2525#include "pmFPAMaskWeight.h"
     26#include "pmSpan.h"
     27#include "pmFootprint.h"
    2628#include "pmPeaks.h"
    2729#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceFitModel.c

    r15054 r20937  
    66 *  @author GLG, MHPCC
    77 *
    8  *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2007-09-28 00:38:56 $
     8 *  @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-12-08 02:51:14 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2323#include "pmHDU.h"
    2424#include "pmFPA.h"
     25#include "pmSpan.h"
     26#include "pmFootprint.h"
    2527#include "pmPeaks.h"
    2628#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceFitSet.c

    r15980 r20937  
    66 *  @author GLG, MHPCC
    77 *
    8  *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2008-01-02 20:39:04 $
     8 *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-12-08 02:51:14 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2323#include "pmHDU.h"
    2424#include "pmFPA.h"
     25#include "pmSpan.h"
     26#include "pmFootprint.h"
    2527#include "pmPeaks.h"
    2628#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceIO.c

    r20826 r20937  
    33 *  @author EAM, IfA
    44 *
    5  *  @version $Revision: 1.68 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2008-11-25 01:27:52 $
     5 *  @version $Revision: 1.69 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2008-12-08 02:51:14 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3131#include "pmConcepts.h"
    3232
     33#include "pmSpan.h"
     34#include "pmFootprint.h"
    3335#include "pmPeaks.h"
    3436#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceIO_CMP.c

    r18845 r20937  
    33 *  @author EAM, IfA
    44 *
    5  *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2008-08-01 18:33:01 $
     5 *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2008-12-08 02:51:14 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828#include "pmFPAfile.h"
    2929
     30#include "pmSpan.h"
     31#include "pmFootprint.h"
    3032#include "pmPeaks.h"
    3133#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceIO_OBJ.c

    r18841 r20937  
    33 *  @author EAM, IfA
    44 *
    5  *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2008-08-01 01:05:39 $
     5 *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2008-12-08 02:51:14 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828#include "pmFPAfile.h"
    2929
     30#include "pmSpan.h"
     31#include "pmFootprint.h"
    3032#include "pmPeaks.h"
    3133#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceIO_PS1_CAL_0.c

    r20741 r20937  
    33 *  @author EAM, IfA
    44 *
    5  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2008-11-14 02:11:45 $
     5 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2008-12-08 02:51:14 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828#include "pmFPAfile.h"
    2929
     30#include "pmSpan.h"
     31#include "pmFootprint.h"
    3032#include "pmPeaks.h"
    3133#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceIO_PS1_DEV_0.c

    r15980 r20937  
    33 *  @author EAM, IfA
    44 *
    5  *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2008-01-02 20:39:04 $
     5 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2008-12-08 02:51:14 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828#include "pmFPAfile.h"
    2929
     30#include "pmSpan.h"
     31#include "pmFootprint.h"
    3032#include "pmPeaks.h"
    3133#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceIO_PS1_DEV_1.c

    r19976 r20937  
    33 *  @author EAM, IfA
    44 *
    5  *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2008-10-08 02:33:56 $
     5 *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2008-12-08 02:51:14 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828#include "pmFPAfile.h"
    2929
     30#include "pmSpan.h"
     31#include "pmFootprint.h"
    3032#include "pmPeaks.h"
    3133#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceIO_RAW.c

    r19879 r20937  
    33 *  @author EAM, IfA
    44 *
    5  *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2008-10-03 20:59:16 $
     5 *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2008-12-08 02:51:14 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828#include "pmFPAfile.h"
    2929
     30#include "pmSpan.h"
     31#include "pmFootprint.h"
    3032#include "pmPeaks.h"
    3133#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceIO_SMPDATA.c

    r15562 r20937  
    33 *  @author EAM, IfA
    44 *
    5  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2007-11-10 01:09:20 $
     5 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2008-12-08 02:51:14 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828#include "pmFPAfile.h"
    2929
     30#include "pmSpan.h"
     31#include "pmFootprint.h"
    3032#include "pmPeaks.h"
    3133#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceIO_SX.c

    r18845 r20937  
    33 *  @author EAM, IfA
    44 *
    5  *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2008-08-01 18:33:14 $
     5 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2008-12-08 02:51:14 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828#include "pmFPAfile.h"
    2929
     30#include "pmSpan.h"
     31#include "pmFootprint.h"
    3032#include "pmPeaks.h"
    3133#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceMoments.c

    r19949 r20937  
    66 *  @author EAM, IfA: significant modifications.
    77 *
    8  *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2008-10-07 20:06:42 $
     8 *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-12-08 02:51:14 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2525#include "pmFPA.h"
    2626#include "pmFPAMaskWeight.h"
     27#include "pmSpan.h"
     28#include "pmFootprint.h"
    2729#include "pmPeaks.h"
    2830#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourcePhotometry.c

    r20307 r20937  
    33 *  @author EAM, IfA; GLG, MHPCC
    44 *
    5  *  @version $Revision: 1.46 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2008-10-22 02:11:08 $
     5 *  @version $Revision: 1.47 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2008-12-08 02:51:14 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2222#include "pmFPA.h"
    2323#include "pmFPAMaskWeight.h"
     24#include "pmSpan.h"
     25#include "pmFootprint.h"
    2426#include "pmPeaks.h"
    2527#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourcePlotApResid.c

    r20882 r20937  
    44 *  @author EAM, IfA
    55 *
    6  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    7  *  @date $Date: 2008-12-04 00:07:25 $
     6 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     7 *  @date $Date: 2008-12-08 02:51:14 $
    88 *  Copyright 2006 IfA, University of Hawaii
    99 */
     
    2525#include "pmFPAview.h"
    2626#include "pmFPAfile.h"
     27#include "pmSpan.h"
     28#include "pmFootprint.h"
    2729#include "pmPeaks.h"
    2830#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourcePlotMoments.c

    r19879 r20937  
    55 *  @author EAM, IfA
    66 *
    7  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2008-10-03 20:59:16 $
     7 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2008-12-08 02:51:14 $
    99 *
    1010 *  Copyright 2006 IfA, University of Hawaii
     
    2828#include "pmFPAview.h"
    2929#include "pmFPAfile.h"
     30#include "pmSpan.h"
     31#include "pmFootprint.h"
    3032#include "pmPeaks.h"
    3133#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourcePlotPSFModel.c

    r19879 r20937  
    55 *  @author EAM, IfA
    66 *
    7  *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2008-10-03 20:59:16 $
     7 *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2008-12-08 02:51:14 $
    99 *
    1010 *  Copyright 2006 IfA, University of Hawaii
     
    2828#include "pmFPAview.h"
    2929#include "pmFPAfile.h"
     30#include "pmSpan.h"
     31#include "pmFootprint.h"
    3032#include "pmPeaks.h"
    3133#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceSky.c

    r18554 r20937  
    66 *  @author EAM, IfA: significant modifications.
    77 *
    8  *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2008-07-15 20:25:00 $
     8 *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-12-08 02:51:14 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2424#include "pmFPA.h"
    2525#include "pmFPAMaskWeight.h"
     26#include "pmSpan.h"
     27#include "pmFootprint.h"
    2628#include "pmPeaks.h"
    2729#include "pmMoments.h"
  • trunk/psModules/src/objects/pmSourceUtils.c

    r15562 r20937  
    66 *  @author EAM, IfA: significant modifications.
    77 *
    8  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2007-11-10 01:09:20 $
     8 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-12-08 02:51:14 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2424#include "pmFPA.h"
    2525#include "pmFPAMaskWeight.h"
     26#include "pmSpan.h"
     27#include "pmFootprint.h"
    2628#include "pmPeaks.h"
    2729#include "pmMoments.h"
  • trunk/psModules/src/psmodules.h

    r20801 r20937  
    100100
    101101// the following headers are from psModule:objects
    102 #include <pmPeaks.h>
    103102#include <pmSpan.h>
    104103#include <pmFootprint.h>
     104#include <pmPeaks.h>
    105105#include <pmDetections.h>
    106106#include <pmMoments.h>
Note: See TracChangeset for help on using the changeset viewer.