PandaRoot
MvdOfflineTBAnalysis_Topix4/mrf_confitem.h
Go to the documentation of this file.
1 /*============================================================*/
2 /* mrf_confitem.h */
3 /* MVD Readout Framework Configuration Item */
4 /* M.C. Mertens */
5 /*============================================================*/
6 
7 #ifndef __MRF_CONFITEM_H__
8 #define __MRF_CONFITEM_H__
9 
10 #include "mrfbase.h"
11 
13 
16 class TConfItem {
17  public:
18  TConfItem();
19 
21 
29  // TConfItem(const mrf::registertype value, const UInt_t position, const UInt_t length);
30 
31  TConfItem(const mrf::registertype value, const UInt_t position, const UInt_t length);
32 
33  TConfItem(const mrf::registertype value, const UInt_t position, const UInt_t length, const UInt_t min, const UInt_t max, const UInt_t flags = 0);
34 
37 
39  UInt_t position;
40 
42  UInt_t length;
43 
45  UInt_t min;
46 
48  UInt_t max;
49 
51  UInt_t flags;
52 
53  protected:
54  private:
55 };
56 
57 #endif // __MRF_CONFITEM_H__
UInt_t flags
Flag field to store additional properties of data.
UInt_t min
Minimum valid value. Corresponds to disabled for state data.
UInt_t position
Holds the position of the data value in the data stream.
Configuration Item to be used in TMrfData structures.
UInt_t length
Holds the length of reserved space for the data value in the data stream.
UInt_t registertype
Register content data type.
UInt_t max
Maximum valid value. Corresponds to enabled for state data.
mrf::registertype value
Holds the data value.