-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathORIpeV4FLTEnergyHistogramDecoder.hh
72 lines (57 loc) · 3.1 KB
/
ORIpeV4FLTEnergyHistogramDecoder.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// ORIpeV4FLTEnergyHistogramDecoder.hh
#ifndef _ORIpeV4FLTEnergyHistogramDecoder_hh_
#define _ORIpeV4FLTEnergyHistogramDecoder_hh_
#include "ORVBasicTreeDecoder.hh"
/** Decodes the binary Orca data format and writes it into a ROOT TFile.
* The binary data format description is in \file ORIpeV4FLTDecoder.m .
* In \file ORIpeV4FLTModel.m in in - (NSDictionary*) dataRecordDescription
* the entries in the data dictionary define the data key and its according
* selector of the decoder. In this case it is "IpeV4FLTHistogram". The decoder of
* this dictionary is defined as ORIpeV4FLTDecoderForHistogram.
* The source code (in \file ORIpeV4FLTDecoder.m) of this method (ORIpeV4FLTDecoderForHistogram)
* holds the description of this format.
*
* This format is recognized by the return value of GetDataObjectPath() which is
* "ORIpeV4FLTModel:IpeV4FLTHistogram".
*/ //-tb- 2008-07-25 .
class ORIpeV4FLTEnergyHistogramDecoder : public ORVBasicTreeDecoder
{
public:
ORIpeV4FLTEnergyHistogramDecoder() {fDataRecord = NULL; fHistogramLength = -1;}
virtual ~ORIpeV4FLTEnergyHistogramDecoder() {}
enum EIpeV4FLTEnergyHistogramConsts {kBufHeadLen = 12,
kNumFLTChannels = 22};
size_t fHistogramLength;
virtual bool SetDataRecord(UInt_t* dataRecord);
virtual inline UInt_t ChannelOf(UInt_t* record)
{ return ( record[1] & 0x00000ff0 ) >> 8; }
//Functions that return data from buffer header:
virtual inline UInt_t ReadoutSecOf(UInt_t* record) { return record[2]; }
virtual inline UInt_t RefreshTimeOf(UInt_t* record) { return record[3]; }
virtual inline UInt_t FirstBinOf(UInt_t* record) { return record[4]; }
virtual inline UInt_t LastBinOf(UInt_t* record) { return record[5]; }
virtual inline UInt_t HistogramLengthOf(UInt_t* record) { return record[6]; }
virtual inline UInt_t MaxHistogramLengthOf(UInt_t* record) { return record[7]; }
virtual inline UInt_t BinSizeOf(UInt_t* record) { return record[8]; }
virtual inline UInt_t OffsetEMinOf(UInt_t* record) { return record[9]; }
virtual inline UInt_t HistogramIDOf(UInt_t* record) { return record[10]; }
virtual inline UInt_t HistogramInfoOf(UInt_t* record) { return record[11]; }
// Histogram Functions
inline UInt_t* GetHistogramDataPointer();
virtual size_t CopyHistogramData(UInt_t* histogram, size_t len);
// for basic trees
virtual size_t GetNPars() { return 11; }
virtual std::string GetParName(size_t iPar);
virtual size_t GetNRows(UInt_t* /*record*/) { return 1; }
virtual UInt_t GetPar(UInt_t* record, size_t iPar, size_t /*iRow*/);
virtual std::string GetDataObjectPath() { return "ORIpeV4FLTModel:IpeV4FLTHistogram"; }
//!< IpeV4FLTHistogram is the key in ORIpeV4FLTModel.m in - (NSDictionary*) dataRecordDescription -tb- 2008-07-25
protected:
UInt_t* fDataRecord;
};
//inline functions: ************************************************************************
inline UInt_t* ORIpeV4FLTEnergyHistogramDecoder::GetHistogramDataPointer()
{
return (fDataRecord + kBufHeadLen);
}
#endif