Changeset 14233 for trunk/FACT++/src/Fits.h
- Timestamp:
- 06/26/12 12:37:25 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/Fits.h
r12536 r14233 39 39 40 40 ///the pointer to the contiguous memory location where the data is stored (i.e. the dim data pointer) 41 void* fDataPointer;41 // void* fDataPointer; 42 42 ///the copy buffer. Required to put the standard and data variable in contguous memory 43 43 vector<char> fCopyBuffer; … … 61 61 62 62 Fits() : fFile(NULL), 63 fDataPointer(NULL),64 63 fEndMjD(0.0), 65 64 fNumOpenFitsFiles(NULL), … … 80 79 81 80 ///Adds columns specific to the service being logged. 82 void InitDataColumns(const vector<Description> &desc, const vector<string>& dataFormat, void* dataPointer, MessageImp* out);81 void InitDataColumns(const vector<Description> &desc, const vector<string>& dataFormat, const void* dataPointer, MessageImp* out); 83 82 84 83 ///Opens a FITS file … … 86 85 87 86 ///Write one line of data. Use the given converter. 88 bool Write(const Converter &conv );87 bool Write(const Converter &conv, const void* data); 89 88 90 89 ///Close the currently opened file.
Note:
See TracChangeset
for help on using the changeset viewer.