Changeset 10955 for trunk/FACT++/src/Fits.h
- Timestamp:
- 06/09/11 17:13:03 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/Fits.h
r10934 r10955 50 50 double fRefMjD; 51 51 ///Write the FITS header keys 52 voidWriteHeaderKeys();52 bool WriteHeaderKeys(); 53 53 public: 54 54 ///Name of the openned file. For querying stats … … 94 94 95 95 ///Opens a FITS file 96 voidOpen(const string& fileName, const string& tableName, CCfits::FITS* file, int* fitsCounter, MessageImp* out, int runNumber);//ostream& out);96 bool Open(const string& fileName, const string& tableName, CCfits::FITS* file, int* fitsCounter, MessageImp* out, int runNumber);//ostream& out); 97 97 98 98 ///Write one line of data. Use the given converter. 99 voidWrite(Converter* conv);99 bool Write(Converter* conv); 100 100 101 101 ///Close the currently opened file. … … 106 106 private: 107 107 template <typename T> 108 voidWriteSingleHeaderKey(string name, T value, string comment);108 bool WriteSingleHeaderKey(string name, T value, string comment); 109 109 110 110 };//Fits
Note:
See TracChangeset
for help on using the changeset viewer.