IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 26, 2006, 4:35:44 PM (20 years ago)
Author:
eugene
Message:

finished sedstar

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/addstar/include/sedstar.h

    r7693 r7696  
     1# include "addstar.h"
     2# include "kapa.h"
    13
    2 typedef structu {
    3   int Nfilter;
    4   float *wavecode;
    5   float *vegaToAB;
    6   int *hashcode;
    7   int codeP;
    8   int codeM;
    9   SEDtableRow **row;
    10   int Nrow;
    11 } SEDtable;
     4typedef enum {
     5  SED_FIT,
     6  SED_REQ,
     7  SED_MODEL,
     8  SED_SAMPLE,
     9} SEDtableModes;
    1210
    1311typedef struct {
     
    2422} SEDfit;
    2523
     24typedef struct {
     25  int Nfilter;
     26  float *wavecode;
     27  float *vegaToAB;
     28  int *mode;
     29  int *hashcode;
     30  int *code;
     31  int codeP;
     32  int codeM;
     33  SEDtableRow **row;
     34  int Nrow;
     35} SEDtable;
     36
    2637SEDtableRow **sort_SEDtable (SEDtableRow *raw, int N);
    27 int SEDcolorBracket (SEDtableRow **table, int Ntable, float color);
    2838SEDfit SEDchisq (SEDtableRow *ref, SEDtableRow *data, SEDtableRow *error, int Nfilter);
    29 
     39SEDtable *SEDtableLoad (char *filename);
     40int SEDcolorBracket (SEDtable *table, float color);
     41int SEDfitInit (SEDtable *table);
     42int SEDfitPlot (SEDtable *table, double R, double D, SEDfit *minFit, SEDtableRow *sourceValue, SEDtableRow *sourceError);
     43int SEDfitCatalog (Catalog *outcat, Catalog *incat, SEDtable *table);
     44void SetLimitsRaw (float *xvec, float *yvec, int Nelements, Graphdata *graphmode);
Note: See TracChangeset for help on using the changeset viewer.