QwAnalysis
MQwF1TDC.h
Go to the documentation of this file.
1 
2 /**********************************************************\
3 * File: MQwF1TDC.h *
4 * *
5 * Author: P. M. King *
6 * J. H. Lee *
7 * Time-stamp: <2008-07-08 15:40> *
8 \**********************************************************/
9 
10 
11 #ifndef __MQwF1TDC__
12 #define __MQwF1TDC__
13 
14 #include "Rtypes.h"
15 #include "QwTypes.h"
16 #include <cstdlib>
17 #include <iostream>
18 #include <iomanip>
19 
20 ///
21 /// \ingroup QwAnalysis
22 class MQwF1TDC{
23  /******************************************************************
24  * Class: MQwF1TDC
25  * Mix-in class containing decoding functions for the F1TDC
26  * 32-bit dataword.
27  * The functions in this class will decode a single word
28  * of F1TDC data and provide the components of the word
29  * through member functions.
30  ******************************************************************/
31 
32 
33  public:
34  MQwF1TDC();
35  ~MQwF1TDC();
36 
37  friend std::ostream& operator<<(std::ostream& os, const MQwF1TDC &f1tdc);
38 
39  void DecodeTDCWord(UInt_t &word, const UInt_t roc_id);
40 
41  Bool_t IsValidDataword() const;
42  const Bool_t& IsHeaderword() const {return fF1HeaderFlag;};
43 
44  const UInt_t& GetTDCSlotNumber() const {return fF1SlotNumber;};
45  const UInt_t& GetTDCChannelNumber() const {return fF1ChannelNumber;};
46  const UInt_t& GetTDCChipAddress() const {return fF1ChipAddress;};
47  const UInt_t& GetTDCChannelAddress()const {return fF1ChannelAddress;};
48 
49  const UInt_t& GetTDCData() const {return fF1Dataword;};
50  const UInt_t& GetTDCMaxChannels() const {return fF1MaxChannelsPerModule;};
51 
52 
53  UInt_t GetTDCEventNumber() const {return GetTDCHeaderEventNumber();};
54  UInt_t GetTDCTriggerTime() const {return GetTDCHeaderTriggerTime();};
55 
56 
58 
59 
60 
61 
62 
63 
64  /* Double_t SubtractReference(Double_t rawtime, Double_t reftime); */
65  /* Double_t ActualTimeDifference(Double_t raw_time, Double_t ref_time); */
66  /* Bool_t CheckDataIntegrity(const UInt_t roc_id, UInt_t *buffer, UInt_t num_words); */
67  void PrintTDCHeader(Bool_t flag);
68  void PrintTDCData(Bool_t flag);
69  void Print(Bool_t flag);
70 
71 
72 
75 
76 
77  Bool_t IsValidDataSlot() const {return fF1ValidDataSlotFlag;};
78 
79  Bool_t IsHeaderXorSetup() const {return fF1HeaderXorSetupFlag;};
80  Bool_t IsNotHeaderTrigFIFO() const {return !fF1HeaderTrigFIFOFlag;};
81  Bool_t IsOverFlowEntry() const {return fF1OverFlowEntryFlag;};
82 
83  Bool_t IsHitFIFOOverFlow() const {return fF1HitFIFOFlag;};
84  Bool_t IsOutputFIFOOverFlow() const {return fF1OutputFIFOFlag;};
85  Bool_t IsResolutionLock() const {return fF1ResolutionLockFlag;};
86 
87  Bool_t IsFakeData() const {return fF1FakeDataFlag;};
88 
89  private:
90 
91 
92  // ********* DATA and Header words ************
93  // Bit 31 - 0 bit (32 bit)
94  // 31 - 24 bit
95  static const UInt_t kF1Mask_SlotNumber;
96  static const UInt_t kF1Mask_ResolutionLockFlag;
97  static const UInt_t kF1Mask_OutputFIFOFlag;
98  static const UInt_t kF1Mask_HitFIFOFlag;
99  // F1TDC chip output 24-bit words.
100  // 23 bit for all
101  static const UInt_t kF1Mask_HeaderFlag;
102 
103 
104 
105  // ********* DATA words ************
106  // 22 bit : 1 Bit Fake Data Flag
107  // 0 > a real data
108  // 1 > a fake data
109  // This bit is not described in the F1TDC manual (1.2), I think,
110  // is introduced by after private communcation with Ed Jastrzembski.
111  // Thursday, September 16 14:04:18 EDT 2010, jhlee
112  static const UInt_t kF1Mask_FakeDataFlag;
113 
114  // 16-21 bit : upper 3 Bit Chip address, lower 3 Bit Channel address
115  // the total 6 Bit channel number 0-63
116  static const UInt_t kF1Mask_ChannelNumber;
117  static const UInt_t kF1Mask_ChipAddress;
118  static const UInt_t kF1Mask_ChannelAddress;
119 
120  // 15- 0 bit : 16 Bit time
121  static const UInt_t kF1Mask_Dataword;
122 
123 
124  // ********* Header words ************
125  // 22 bit : 1 Bit Trigger FIFO overflow
126  static const UInt_t kF1Mask_HeaderTrigFIFOFlag;
127 
128  // 21-16 bit : 6 Bit Event Number
129  static const UInt_t kF1Mask_HeaderEventNumber;
130 
131  // 15- 8 bit : 9 Bit Trigger Time
132  static const UInt_t kF1Mask_HeaderTriggerTime;
133 
134  // 7 bit : 1 Bit Xor Setup register
135  static const UInt_t kF1Mask_HeaderXorSetupFlag;
136 
137  // 6 - 0 bit : upper 3 Bit Chip address, lower 3 Bit Channel address
138  // the total 6 Bit channel number 0-63
139  static const UInt_t kF1Mask_HeaderChannelNumber;
140  static const UInt_t kF1Mask_HeaderChipAddress;
141  static const UInt_t kF1Mask_HeaderChannelAddress;
142 
143 
144  // static const UInt_t offset;
145  UInt_t fF1ROCNumber;
147 
148  Bool_t fF1HeaderFlag; // true(1) if word is 0 (header) and false(0)
149  // if word is 1 (data)
150  Bool_t fF1HitFIFOFlag; // true(1) if word is 1
151  Bool_t fF1OutputFIFOFlag; // true(1) if word is 1
152  Bool_t fF1ResolutionLockFlag; // true(1) if word is 1
153 
154 
155  Bool_t fF1FakeDataFlag; // true(1) if word is 1 (Fake)
159  UInt_t fF1Dataword;
160 
161 
162 
167 
168 
172 
173  // Slot 1 - 21 indicates valid data
174  // Slot 0 is the tag for a "filler" word. This is a non-valid data word that is
175  // inserted to make the block of data output from the module consist of
176  // an "even" number of words.
177  // Slot 30 : the module will return 30 when the data is not valid
178  //
179  // Tempoararily comment out, because I have no idea how
180  // to check this inside MQwF1TDC so we don't interrupt
181  // MQwV775TDC. I think "IsSlotRegistered()" can do instead of this
182  //
183 
184  void PrintHitFIFOStatus(const UInt_t roc_id);
185  void PrintOutputFIFOStatus(const UInt_t roc_id);
186  void PrintResolutionLockStatus(const UInt_t roc_id);
187 
188 
189 
190 };
191 
192 #endif
static const UInt_t kF1Mask_HeaderChannelNumber
Definition: MQwF1TDC.h:139
UInt_t fF1ChannelAddress
Definition: MQwF1TDC.h:158
Bool_t fF1HeaderFlag
Definition: MQwF1TDC.h:148
static const UInt_t kF1Mask_HeaderTriggerTime
Definition: MQwF1TDC.h:132
static const UInt_t kF1Mask_ChannelNumber
Definition: MQwF1TDC.h:116
friend std::ostream & operator<<(std::ostream &os, const MQwF1TDC &f1tdc)
Definition: MQwF1TDC.cc:134
UInt_t fF1ChannelNumber
Definition: MQwF1TDC.h:156
Bool_t fF1ResolutionLockFlag
Definition: MQwF1TDC.h:152
Bool_t fF1ValidDataSlotFlag
Definition: MQwF1TDC.h:171
static const UInt_t kF1Mask_SlotNumber
Definition: MQwF1TDC.h:87
void SetTDCMaxChannels(const UInt_t in)
Definition: MQwF1TDC.h:57
const UInt_t & GetTDCMaxChannels() const
Definition: MQwF1TDC.h:50
static const UInt_t kF1Mask_OutputFIFOFlag
Definition: MQwF1TDC.h:97
Bool_t fF1HeaderTrigFIFOFlag
Definition: MQwF1TDC.h:163
static const double in
Definition: QwUnits.h:66
UInt_t GetTDCHeaderTriggerTime() const
Definition: MQwF1TDC.h:74
static const UInt_t kF1Mask_FakeDataFlag
Definition: MQwF1TDC.h:112
const UInt_t & GetTDCChipAddress() const
Definition: MQwF1TDC.h:46
~MQwF1TDC()
Definition: MQwF1TDC.cc:81
void PrintOutputFIFOStatus(const UInt_t roc_id)
Definition: MQwF1TDC.cc:317
MQwF1TDC()
Definition: MQwF1TDC.cc:40
static const UInt_t kF1Mask_HeaderChipAddress
Definition: MQwF1TDC.h:140
Bool_t IsValidDataSlot() const
Definition: MQwF1TDC.h:77
static const UInt_t kF1Mask_ResolutionLockFlag
Definition: MQwF1TDC.h:96
Bool_t IsHeaderXorSetup() const
Definition: MQwF1TDC.h:79
const Bool_t & IsHeaderword() const
Definition: MQwF1TDC.h:42
const UInt_t & GetTDCData() const
Definition: MQwF1TDC.h:49
static const UInt_t kF1Mask_HeaderEventNumber
Definition: MQwF1TDC.h:129
static const UInt_t kF1Mask_HitFIFOFlag
Definition: MQwF1TDC.h:98
Bool_t IsHitFIFOOverFlow() const
Definition: MQwF1TDC.h:83
UInt_t fF1HeaderEventNumber
Definition: MQwF1TDC.h:164
static const UInt_t kF1Mask_HeaderTrigFIFOFlag
Definition: MQwF1TDC.h:126
Bool_t fF1HitFIFOFlag
Definition: MQwF1TDC.h:150
UInt_t GetTDCTriggerTime() const
Definition: MQwF1TDC.h:54
static const UInt_t kF1Mask_ChipAddress
Definition: MQwF1TDC.h:117
void PrintTDCHeader(Bool_t flag)
Definition: MQwF1TDC.cc:202
Bool_t fF1OverFlowEntryFlag
Definition: MQwF1TDC.h:170
Bool_t IsNotHeaderTrigFIFO() const
Definition: MQwF1TDC.h:80
const UInt_t & GetTDCSlotNumber() const
Definition: MQwF1TDC.h:44
UInt_t GetTDCEventNumber() const
Definition: MQwF1TDC.h:53
void PrintResolutionLockStatus(const UInt_t roc_id)
Definition: MQwF1TDC.cc:293
static const UInt_t kF1Mask_HeaderFlag
Definition: MQwF1TDC.h:101
UInt_t fF1ChipAddress
Definition: MQwF1TDC.h:157
Bool_t fF1FakeDataFlag
Definition: MQwF1TDC.h:155
static const UInt_t kF1Mask_ChannelAddress
Definition: MQwF1TDC.h:118
const UInt_t & GetTDCChannelNumber() const
Definition: MQwF1TDC.h:45
const UInt_t & GetTDCChannelAddress() const
Definition: MQwF1TDC.h:47
UInt_t GetTDCHeaderEventNumber() const
Definition: MQwF1TDC.h:73
Bool_t IsOverFlowEntry() const
Definition: MQwF1TDC.h:81
Bool_t IsResolutionLock() const
Definition: MQwF1TDC.h:85
Bool_t IsValidDataword() const
Definition: MQwF1TDC.cc:328
Bool_t IsOutputFIFOOverFlow() const
Definition: MQwF1TDC.h:84
UInt_t fF1MaxChannelsPerModule
Definition: MQwF1TDC.h:169
void PrintHitFIFOStatus(const UInt_t roc_id)
Definition: MQwF1TDC.cc:305
UInt_t fF1SlotNumber
Definition: MQwF1TDC.h:146
static const UInt_t kF1Mask_HeaderChannelAddress
Definition: MQwF1TDC.h:141
void Print(Bool_t flag)
Definition: MQwF1TDC.cc:191
static const UInt_t kF1Mask_Dataword
Definition: MQwF1TDC.h:121
void PrintTDCData(Bool_t flag)
Definition: MQwF1TDC.cc:213
UInt_t fF1Dataword
Definition: MQwF1TDC.h:159
Bool_t fF1OutputFIFOFlag
Definition: MQwF1TDC.h:151
Bool_t IsFakeData() const
Definition: MQwF1TDC.h:87
UInt_t fF1ROCNumber
Definition: MQwF1TDC.h:145
static const UInt_t kF1Mask_HeaderXorSetupFlag
Definition: MQwF1TDC.h:135
void DecodeTDCWord(UInt_t &word, const UInt_t roc_id)
Definition: MQwF1TDC.cc:84
UInt_t fF1HeaderTriggerTime
Definition: MQwF1TDC.h:165
Bool_t fF1HeaderXorSetupFlag
Definition: MQwF1TDC.h:166