QwAnalysis
QwScaler_Channel.h
Go to the documentation of this file.
1 /**********************************************************\
2 * File: QwScaler_Channel.h *
3 * *
4 * Author: J. Pan *
5 * Date: Thu Sep 16 18:08:33 CDT 2009 *
6 \**********************************************************/
7 
8 #ifndef __QWSCALER_CHANNEL__
9 #define __QWSCALER_CHANNEL__
10 
11 // System headers
12 #include <vector>
13 
14 // ROOT headers
15 #include "TTree.h"
16 
17 // Qweak headers
18 #include "VQwHardwareChannel.h"
19 #include "MQwMockable.h"
20 
21 // Forward declarations
22 class QwParameterFile;
23 
24 ///
25 /// \ingroup QwAnalysis_ADC
26 ///
27 /// \ingroup QwAnalysis_BL
29 
30 public:
31  static Int_t GetBufferOffset(Int_t scalerindex, Int_t wordindex, UInt_t header = 1);
32  static void PrintErrorCounterHead();
33  static void PrintErrorCounterTail();
34 
40 
43 
44 public:
46  InitializeChannel("","");
47  }
48 
49  VQwScaler_Channel(TString name, TString datatosave = "raw"): MQwMockable() {
50  InitializeChannel(name,datatosave);
51  };
53  : VQwHardwareChannel(source),MQwMockable(source),
55  fValue_Raw(source.fValue_Raw),
56  fValue(source.fValue),
57  fValueM2(source.fValueM2),
58  fValueError(source.fValueError),
59  // TODO: Don't copy the pointer; we need to regenerate it somehow.
60  //fNormChannelPtr(source.fNormChannelPtr);
65  { }
66  virtual ~VQwScaler_Channel() { };
67 
68  /// \brief Initialize the fields in this object
69  void InitializeChannel(TString name, TString datatosave = "raw");
70 
71  /// \brief Initialize the fields in this object
72  void InitializeChannel(TString subsystem, TString instrumenttype, TString name, TString datatosave);
73 
74  void SetDefaultSampleSize(size_t NumberOfSamples_map) {
75  //std::cerr << "QwScaler_Channel SetDefaultSampleSize does nothing!"
76  // << std::endl;
77  }
78 
79  void LoadChannelParameters(QwParameterFile &paramfile);
80 
81  void ClearEventData();
82 
83  void RandomizeEventData(int helicity = 0, double time = 0.0);
84  void SetEventData(Double_t value);
85 
86  virtual void EncodeEventData(std::vector<UInt_t> &buffer) = 0;
87  virtual Int_t ProcessEvBuffer(UInt_t* buffer, UInt_t num_words_left, UInt_t index = 0) = 0;
88 
89  void ProcessEvent();
90 
91  Int_t GetRawValue(size_t element) const { return fValue_Raw; };
92  Double_t GetValue(size_t element) const { return fValue; };
93  Double_t GetValueM2(size_t element) const { return fValueM2; };
94  Double_t GetValueError(size_t element) const { return fValueError; };
95 
97  void AssignScaledValue(const VQwScaler_Channel &value, Double_t scale);
98  void AssignValueFrom(const VQwDataElement* valueptr);
99  void AddValueFrom(const VQwHardwareChannel* valueptr);
100  void SubtractValueFrom(const VQwHardwareChannel* valueptr);
101  void MultiplyBy(const VQwHardwareChannel* valueptr);
102  void DivideBy(const VQwHardwareChannel* valueptr);
103 
104  // VQwHardwareChannel& operator= (const VQwHardwareChannel &data_value);
108 
113 
114  void Sum(VQwScaler_Channel &value1, VQwScaler_Channel &value2);
115  void Difference(VQwScaler_Channel &value1, VQwScaler_Channel &value2);
116  void Ratio(const VQwScaler_Channel &numer, const VQwScaler_Channel &denom);
117  void Product(VQwScaler_Channel &numer, VQwScaler_Channel &denom);
118  void AddChannelOffset(Double_t Offset);
119  void Scale(Double_t Offset);
120  void DivideBy(const VQwScaler_Channel &denom);
121 
122 
123  Int_t ApplyHWChecks(); //Check for harware errors in the devices. This will return the device error code.
124 
125  Bool_t ApplySingleEventCuts();//check values read from modules are at desired level
126 
127  void IncrementErrorCounters();
128 
129  /// report number of events failed due to HW and event cut failure
130  void PrintErrorCounters() const;
131 
132 // UInt_t GetDeviceErrorCode(){//return the device error code
133 // return fDeviceErrorCode;
134 // };
135 
136  void ConstructHistograms(TDirectory *folder, TString &prefix);
137  void FillHistograms();
138 
139  void ConstructBranchAndVector(TTree *tree, TString &prefix, std::vector<Double_t> &values);
140 
141  void ConstructBranch(TTree *tree, TString &prefix);
142  void FillTreeVector(std::vector<Double_t> &values) const;
143 
144  inline void AccumulateRunningSum(const VQwScaler_Channel& value){
146  }
147  void AccumulateRunningSum(const VQwScaler_Channel &value, Int_t count);
148  void AccumulateRunningSum(const VQwHardwareChannel *value, Int_t count){
149  const VQwScaler_Channel *tmp_ptr = dynamic_cast<const VQwScaler_Channel*>(value);
150  if (tmp_ptr != NULL) AccumulateRunningSum(*tmp_ptr, count);
151  };
152  inline void DeaccumulateRunningSum(const VQwScaler_Channel& value){
153  AccumulateRunningSum(value, -1);
154  };
155 
156  void PrintValue() const;
157  void PrintInfo() const;
159 
160  // These are related to those hardware channels that need to normalize
161  // to an external clock
162  virtual Bool_t NeedsExternalClock() { return fNeedsExternalClock; };
163  virtual void SetNeedsExternalClock(Bool_t needed) { fNeedsExternalClock = needed; };
164  virtual std::string GetExternalClockName() { return fNormChannelName; };
165  virtual void SetExternalClockPtr( const VQwHardwareChannel* clock) { fNormChannelPtr = clock; };
166  virtual void SetExternalClockName( const std::string name) { fNormChannelName = name; };
167 
168  // Differential scalers automatically subtract the previous value
169  virtual Bool_t IsDifferentialScaler() { return fIsDifferentialScaler; };
170  virtual void SetDifferentialScaler(Bool_t diff) { fIsDifferentialScaler = diff; };
171 
172  void ScaledAdd(Double_t scale, const VQwHardwareChannel *value);
173 
174 protected:
176 
177 protected:
178  static const Bool_t kDEBUG;
179 
181  UInt_t fValue_Raw;
182  Double_t fValue;
183  Double_t fValueM2;
184  Double_t fValueError;
187  std::string fNormChannelName;
188 
191 
192 
193  Int_t fNumEvtsWithHWErrors;//counts the HW failed events
194  Int_t fNumEvtsWithEventCutsRejected;////counts the Event cut rejected events
195 };
196 
197 
198 // Derived templated class
199 template <UInt_t data_mask=0xffffffff, UInt_t data_shift=0 >
201 {
202  public:
203 
204  // Define the constructors (cascade)
207  : VQwScaler_Channel(source) { };
208  QwScaler_Channel(TString name, TString datatosave = "raw")
209  : VQwScaler_Channel(name,datatosave) { };
210 
211  public:
212 
213  // Implement the templated methods
214  void EncodeEventData(std::vector<UInt_t> &buffer);
215  Int_t ProcessEvBuffer(UInt_t* buffer, UInt_t num_words_left, UInt_t index = 0);
216 
217 
218 };
219 
220 
221 // These typedef's should be the last things in the file.
222 // Class template instationation must be made in the source
223 // file for anything defined here.
224 typedef class QwScaler_Channel<0x00ffffff,0> QwSIS3801D24_Channel;
225 typedef class QwScaler_Channel<0xffffffff,0> QwSIS3801D32_Channel;
226 typedef class QwScaler_Channel<0xffffffff,0> QwSIS3801_Channel;
227 typedef class QwScaler_Channel<0xffffffff,0> QwSTR7200_Channel;
228 
229 
230 #endif
virtual void SetNeedsExternalClock(Bool_t needed)
virtual std::string GetExternalClockName()
const VQwHardwareChannel * fNormChannelPtr
Double_t GetValueError(size_t element) const
std::string fNormChannelName
virtual void DeaccumulateRunningSum(const VQwHardwareChannel *value)
void ConstructBranchAndVector(TTree *tree, TString &prefix, std::vector< Double_t > &values)
QwScaler_Channel(TString name, TString datatosave="raw")
void Scale(Double_t Offset)
virtual void SetExternalClockName(const std::string name)
void RandomizeEventData(int helicity=0, double time=0.0)
Internally generate random event data.
void InitializeChannel(TString name, TString datatosave="raw")
Initialize the fields in this object.
static Int_t GetBufferOffset(Int_t scalerindex, Int_t wordindex, UInt_t header=1)
void AddChannelOffset(Double_t Offset)
Int_t GetRawValue() const
virtual Int_t ProcessEvBuffer(UInt_t *buffer, UInt_t num_words_left, UInt_t index=0)=0
Process the CODA event buffer for this element.
Double_t GetValueM2() const
static const Bool_t kDEBUG
class QwScaler_Channel< 0xffffffff, 0 > QwSTR7200_Channel
VQwScaler_Channel & operator=(const VQwScaler_Channel &value)
VQwScaler_Channel(TString name, TString datatosave="raw")
VQwHardwareChannel & operator/=(const VQwHardwareChannel *input)
static void PrintErrorCounterHead()
Double_t GetValue(size_t element) const
VQwScaler_Channel(const VQwScaler_Channel &source)
void FillTreeVector(std::vector< Double_t > &values) const
void MultiplyBy(const VQwHardwareChannel *valueptr)
virtual void AccumulateRunningSum(const VQwHardwareChannel *value, Int_t count)=0
void PrintErrorCounters() const
report number of events failed due to HW and event cut failure
Int_t ProcessEvBuffer(UInt_t *buffer, UInt_t num_words_left, UInt_t index=0)
Process the CODA event buffer for this element.
virtual void EncodeEventData(std::vector< UInt_t > &buffer)=0
Encode the event data into a CODA buffer.
The pure virtual base class of all data elements.
void DivideBy(const VQwHardwareChannel *valueptr)
VQwScaler_Channel & operator-=(const VQwScaler_Channel &value)
virtual Bool_t IsDifferentialScaler()
void PrintValue() const
Print single line of value and error of this data element.
virtual void SetDifferentialScaler(Bool_t diff)
class QwScaler_Channel< 0xffffffff, 0 > QwSIS3801_Channel
virtual ~VQwScaler_Channel()
void SetEventData(Double_t value)
Int_t fNumEvtsWithEventCutsRejected
void Product(VQwScaler_Channel &numer, VQwScaler_Channel &denom)
void EncodeEventData(std::vector< UInt_t > &buffer)
Encode the event data into a CODA buffer.
void AssignScaledValue(const VQwScaler_Channel &value, Double_t scale)
VQwScaler_Channel & operator*=(const VQwScaler_Channel &value)
void Sum(VQwScaler_Channel &value1, VQwScaler_Channel &value2)
void AccumulateRunningSum(const VQwScaler_Channel &value)
void Ratio(const VQwScaler_Channel &numer, const VQwScaler_Channel &denom)
VQwScaler_Channel & operator+=(const VQwScaler_Channel &value)
class QwScaler_Channel< 0xffffffff, 0 > QwSIS3801D32_Channel
void ConstructBranch(TTree *tree, TString &prefix)
void Difference(VQwScaler_Channel &value1, VQwScaler_Channel &value2)
void DeaccumulateRunningSum(const VQwScaler_Channel &value)
class QwScaler_Channel< 0x00ffffff, 0 > QwSIS3801D24_Channel
virtual void SetExternalClockPtr(const VQwHardwareChannel *clock)
void ConstructHistograms(TDirectory *folder, TString &prefix)
Construct the histograms for this data element.
void AssignValueFrom(const VQwDataElement *valueptr)
static void PrintErrorCounterTail()
QwScaler_Channel(const QwScaler_Channel &source)
Int_t GetRawValue(size_t element) const
void FillHistograms()
Fill the histograms for this data element.
Int_t fGoodEventCount
Number of good events accumulated in this element.
void ScaledAdd(Double_t scale, const VQwHardwareChannel *value)
Double_t GetValueError() const
void LoadChannelParameters(QwParameterFile &paramfile)
void AddValueFrom(const VQwHardwareChannel *valueptr)
void SetDefaultSampleSize(size_t NumberOfSamples_map)
Double_t GetValue() const
void AccumulateRunningSum(const VQwHardwareChannel *value, Int_t count)
Double_t GetValueM2(size_t element) const
void ClearEventData()
Clear the event data in this element.
Double_t GetValueWidth() const
void PrintInfo() const
Print multiple lines of information about this data element.
virtual Bool_t NeedsExternalClock()
void SubtractValueFrom(const VQwHardwareChannel *valueptr)
Double_t fClockNormalization