Changeset 31011 for trunk/ippToPsps/src/Batch.h
- Timestamp:
- Mar 22, 2011, 4:11:23 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/src/Batch.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/src/Batch.h
r30968 r31011 18 18 #include <libxml/tree.h> 19 19 20 #include "Fits.h" 21 20 22 /** 21 23 Abstract base class for all batches. Known subclasses are: … … 25 27 - StackBatch 26 28 27 All subclasses need to implement the run() method and may need to implenent print() and/or init()29 All subclasses need to implement the run() method and may need to implenent print() 28 30 */ 29 31 typedef struct Batch { … … 37 39 uint16_t numOfInputFiles; // number of input files 38 40 char** inputFiles; // array of input file names 39 char fitsOutFile[100]; // FITS output filename 40 char fitsOutPath[1000]; // path to FITS output 41 fitsfile *fitsOut; // output FITS file 42 char configsDir[500]; // path to IPP/PSPS mapping file 41 Fits *fitsOut; // output FITS file 43 42 pmConfig* pmconfig; // pmConfig 44 43 dvoConfig* dvoConfig; // dvo database 45 IppToPspsConfig* config; // config structure44 Config* config; // config structure 46 45 char todaysDate[20]; // today's date 47 46 int exitCode; // ps exit code … … 50 49 // methods 51 50 bool (*parseArguments)(); 52 bool (*init)();53 51 int (*run)(); 54 52 void (*print)(); … … 58 56 bool (*gotConfig)(); 59 57 bool (*gotSurveyType)(); 58 59 // destructor 60 60 void (*destroy)(); 61 61
Note:
See TracChangeset
for help on using the changeset viewer.
