Changeset 18594
- Timestamp:
- 09/16/16 15:21:16 (8 years ago)
- Location:
- trunk/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mcore/fits.h
r18049 r18594 491 491 } 492 492 493 // Public for the root dictionary 494 typedef std::pair<void*, Table::Column> Address; 495 typedef std::vector<Address> Addresses; 496 typedef std::unordered_map<std::string, void*> Pointers; 497 493 498 protected: 494 499 std::ofstream fCopy; … … 497 502 Table fTable; 498 503 499 typedef std::pair<void*, Table::Column> Address;500 typedef std::vector<Address> Addresses;501 504 //map<void*, Table::Column> fAddresses; 502 505 Addresses fAddresses; 503 506 504 typedef std::unordered_map<std::string, void*> Pointers;505 507 Pointers fPointers; 506 508 -
trunk/Mars/mcore/zofits.h
r17779 r18594 988 988 // data layout related stuff 989 989 /// Regular columns augmented with compression informations 990 991 public: // Public for the root dictionary 990 992 struct CompressedColumn 991 993 { … … 999 1001 FITS::Compression block_head; ///< the compression data associated with that column 1000 1002 }; 1003 1004 protected: 1001 1005 std::vector<CompressedColumn> fRealColumns; ///< Vector hosting the columns of the file 1002 1006 uint32_t fRealRowWidth; ///< Width in bytes of one uncompressed row -
trunk/Mars/mfileio/MWriteFitsFile.h
r17868 r18594 152 152 void SetupHeaderKeys(MRawRunHeader &header); 153 153 154 public: 154 155 //Header keys related stuff 155 156 template<typename _T> … … 184 185 } 185 186 186 public:187 187 template<typename _T> 188 188 bool SetHeaderKey(const std::string& key,
Note:
See TracChangeset
for help on using the changeset viewer.