IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 10, 2020, 9:40:15 AM (6 years ago)
Author:
eugene
Message:

gDiff now runs and does not crash on forced photometry

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/gDiff.20200202/src/gDiffFiles.c

    r41260 r41413  
    1 #ifdef HAVE_CONFIG_H
    2 #include <config.h>
    3 #endif
    4 
    5 #include <stdio.h>
    6 #include <pslib.h>
    7 #include <psmodules.h>
    8 #include <psphot.h>
     1/** @file gDiffFiles.c
     2 *  @brief: image subtraction based on matched Gaussians profiles
     3 *  @author Eugene Magnier @ IfA
     4 *  @version $Revision: 1.12 $
     5 *  @date $Date: 2020-01-25 $
     6 *  Copyright 2020 Institute for Astronomy, University of Hawaii
     7 */
    98
    109#include "gDiff.h"
     
    1211
    1312// Input files
    14 static const char *inputFiles[] = { "GDIFF.INPUT", "GDIFF.INPUT.MASK", "GDIFF.INPUT.VARIANCE",
    15                                     "GDIFF.INPUT.SOURCES", "GDIFF.REF", "GDIFF.REF.MASK",
    16                                     "GDIFF.REF.VARIANCE", "GDIFF.REF.SOURCES", NULL };
     13static const char *inputFiles[] = { "GDIFF.INPUT",
     14                                    "GDIFF.INPUT.MASK",
     15                                    "GDIFF.INPUT.VARIANCE",
     16                                    "GDIFF.INPUT.SOURCES",
     17                                    "GDIFF.REF",
     18                                    "GDIFF.REF.MASK",
     19                                    "GDIFF.REF.VARIANCE",
     20                                    "GDIFF.REF.SOURCES", NULL };
    1721
    1822// Convolved files
    1923static const char *convFiles[] = { "GDIFF.INPUT.CONV", "GDIFF.INPUT.CONV.MASK", "GDIFF.INPUT.CONV.VARIANCE",
    20                                    "GDIFF.REF.CONV", "GDIFF.REF.CONV.MASK", "GDIFF.REF.CONV.VARIANCE",
     24                                   "GDIFF.REF.CONV",   "GDIFF.REF.CONV.MASK",  "GDIFF.REF.CONV.VARIANCE",
    2125                                   NULL };
    2226
     
    234238    return true;
    235239}
     240
Note: See TracChangeset for help on using the changeset viewer.