#ifndef FACT_Fits #define FACT_Fits //#include //#include #include "Description.h" //#include "MessageImp.h" //#include "Time.h" #include "FitsFile.h" class Converter; using namespace std; class Fits { private: FitsFile *fFile; ///Name of the "standard", i.e. data found in every fits file ///TODO make these variable static so that they are shared by every object. ///TODO add also a static boolean to initialize these only once vector fStandardColDesc; ///Format of the standard columns. vector fStandardFormats; ///the pointers to the standard variables vector fStandardPointers; ///the number of bytes taken by each standard variable vector fStandardNumBytes; ///the vector of data column names vector fDataColDesc; ///the data format of the data columns vector fDataFormats; ///the pointer to the contiguous memory location where the data is stored (i.e. the dim data pointer) void* fDataPointer; ///the copy buffer. Required to put the standard and data variable in contguous memory vector fCopyBuffer; ///to keep track of the time of the latest written entry (to update the header when closing the file) double fEndMjD; ///Keep track of number of opened fits uint32_t* fNumOpenFitsFiles; ///were to log the errors MessageImp* fMess; ///Write the FITS header keys bool WriteHeaderKeys(); public: ///current run number being logged uint32_t fRunNumber; Fits() : fFile(NULL), fDataPointer(NULL), fEndMjD(0.0), fNumOpenFitsFiles(NULL), fMess(NULL), fRunNumber(0) {} virtual ~Fits() { Close(); } ///returns wether or not the file is currently open or not bool IsOpen() const { return fFile != NULL && fFile->IsOpen(); } ///Adds a column that exists in all FITS files void AddStandardColumn(const Description& desc, const string &dataFormat, void* dataPointer, long unsigned int numDataBytes); ///Adds columns specific to the service being logged. void InitDataColumns(const vector &desc, const vector& dataFormat, void* dataPointer); ///Opens a FITS file bool Open(const string& fileName, const string& tableName, uint32_t* fitsCounter, MessageImp* out, int runNumber, CCfits::FITS *file=0);//ostream& out); ///Write one line of data. Use the given converter. bool Write(const Converter &conv); ///Close the currently opened file. void Close(); ///Get the size currently written on the disk int GetWrittenSize() const; string GetName() const { return fFile ? fFile->GetName() : ""; } };//Fits #endif /*FITS_H_*/ // WriteToFITS vs Open/Close