source: fact/tools/pyscripts/pyfact/FITS.h@ 17695

Last change on this file since 17695 was 17692, checked in by dneise, 11 years ago
removed warning: "list-initializer for non-class type must not be parenthesized"
File size: 2.9 KB
Line 
1/*
2 *
3 * FITS.h
4 *
5 * Global fits header
6 *
7 * Author: lyard
8 *
9 */
10
11#ifndef MARS_FITS
12#define MARS_FITS
13
14#include <stdint.h>
15
16namespace FITS
17{
18
19 //Identifier of the compression schemes processes
20 enum CompressionProcess_t
21 {
22 kFactRaw = 0x0,
23 kFactSmoothing = 0x1,
24 kFactHuffman16 = 0x2
25 };
26
27 //ordering of the columns / rows
28 enum RowOrdering_t
29 {
30 kOrderByCol = 'C',
31 kOrderByRow = 'R'
32 };
33
34#ifdef __CINT__
35 struct TileHeader;
36 struct BlockHeader;
37#else
38 //Structure helper for tiles headers
39 struct TileHeader
40 {
41 char id[4]{'T', 'I', 'L', 'E'};
42 uint32_t numRows;
43 uint64_t size;
44
45 TileHeader() {}
46
47 TileHeader(uint32_t nRows,
48 //uint64_t s) : id({'T', 'I', 'L', 'E'}),
49 uint64_t s) :
50 numRows(nRows),
51 size(s)
52 { };
53 } __attribute__((__packed__));
54
55 //Structure helper for blocks headers and compresion schemes
56 struct BlockHeader
57 {
58 uint64_t size;
59 char ordering;
60 unsigned char numProcs;
61 uint16_t processings[];
62
63 BlockHeader(uint64_t s=0,
64 char o=kOrderByRow,
65 unsigned char n=1) : size(s),
66 ordering(o),
67 numProcs(n)
68 {}
69 } __attribute__((__packed__));
70#endif
71
72 //Helper structure to simplify the initialization and handling of compressed blocks headers
73 struct Compression
74 {
75 BlockHeader header;
76 std::vector<uint16_t> sequence;
77
78 Compression(const std::vector<uint16_t> &seq, const RowOrdering_t &order=kOrderByCol)
79 : header(0, order, seq.size()), sequence(seq)
80 {
81
82 }
83
84 Compression(const CompressionProcess_t &compression=kFactRaw, const RowOrdering_t &order=kOrderByCol)
85 : header(0, order, 1), sequence(1)
86 {
87 sequence[0] = compression;
88 }
89
90#ifdef __MARS__ // needed for CINT
91 Compression(const int &compression)
92 : header(0, kOrderByCol, 1), sequence(1)
93 {
94 sequence[0] = compression;
95 }
96#endif
97
98 RowOrdering_t getOrdering() const { return RowOrdering_t(header.ordering); }
99 uint32_t getSizeOnDisk() const { return sizeof(BlockHeader) + sizeof(uint16_t)*header.numProcs; }
100 CompressionProcess_t getProc(uint32_t i) const { return CompressionProcess_t(sequence[i]); }
101 uint16_t getNumProcs() const { return header.numProcs; }
102
103 void SetBlockSize(uint64_t size) { header.size = size; }
104 void Memcpy(char *dest) const
105 {
106 memcpy(dest, &header, sizeof(BlockHeader));
107 memcpy(dest+sizeof(BlockHeader), sequence.data(), header.numProcs*sizeof(uint16_t));
108 }
109 };
110};
111
112#endif //_FITS_H_
113
Note: See TracBrowser for help on using the repository browser.