Changeset 17297
- Timestamp:
- 10/21/13 14:15:50 (11 years ago)
- Location:
- trunk/Mars/mcore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mcore/FITS.h
r17290 r17297 32 32 }; 33 33 34 #ifdef __CINT__ 35 struct TileHeader; 36 struct BlockHeader; 37 #else 34 38 //Structure helper for tiles headers 35 39 struct TileHeader … … 63 67 {} 64 68 } __attribute__((__packed__)); 69 #endif 65 70 66 71 //Helper structure to simplify the initialization and handling of compressed blocks headers -
trunk/Mars/mcore/Queue.h
r17292 r17297 140 140 } 141 141 142 #ifdef __MARS__ // Needed for the compilatio of the dictionary 143 Queue() : fSize(0), fState(kIdle) 144 { 145 } 146 #endif 147 142 148 ~Queue() 143 149 { -
trunk/Mars/mcore/zofits.h
r17296 r17297 20 20 class zofits : public ofits 21 21 { 22 #ifdef __MARS__ // Needed by CINT to access the structures 23 public: 24 #endif 22 25 /// Overriding of the begin() operator to get the smallest item in the list instead of the true begin 23 26 template<class S> … … 30 33 }; 31 34 32 35 #ifdef __CINT__ 36 struct CatalogEntry; 37 #else 33 38 //catalog types 34 39 struct CatalogEntry … … 38 43 int64_t second; ///< offset of this column in the tile, from the start of the heap area 39 44 } __attribute__((__packed__)); 45 #endif 40 46 41 47 typedef std::vector<CatalogEntry> CatalogRow; 42 48 typedef std::list<CatalogRow> CatalogType; 43 44 49 45 50 /// Parameters required to write a tile to disk … … 952 957 block_head(h) 953 958 {} 959 #ifdef __MARS__ // Needed for the compilation ofthe dictionary 960 CompressedColumn() { } 961 #endif 954 962 Table::Column col; ///< the regular column entry 955 963 FITS::Compression block_head; ///< the compression data associated with that column
Note:
See TracChangeset
for help on using the changeset viewer.