IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 17, 2015, 12:37:52 PM (11 years ago)
Author:
eugene
Message:

apply zero point calibration to R5,R6,R7 data and set mean in Jy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20150405/Ohana/src/dvolens/include/dvolens.h

    r37358 r38143  
    44# include <signal.h>
    55# include <pthread.h>
     6
     7# ifndef MAX_INT
     8# define MAX_INT 2147483647
     9# endif
     10
     11typedef struct {
     12  int minID;
     13  int maxID;
     14  int *index;
     15  int Nindex;
     16  int NINDEX;
     17} myIndexType;
    618
    719typedef enum {
     
    6375int           client_logger_message   PROTO((char *format,...));
    6476
     77myIndexType *myIndexAlloc ();
     78int myIndexFree (myIndexType *myIndex);
     79void myIndexInit (myIndexType *myIndex);
     80int myIndexUpdateLimits (myIndexType *myIndex, int value);
     81int myIndexSetRange (myIndexType *myIndex);
     82int myIndexSetEntry (myIndexType *myIndex, int value, int entry);
     83int myIndexGetEntry (myIndexType *myIndex, int value);
Note: See TracChangeset for help on using the changeset viewer.