QwAnalysis
QwScaler_Channel.cc
Go to the documentation of this file.
1 /**********************************************************\
2 * File: QwScaler_Channel.cc *
3 * *
4 * Author: J. Pan *
5 * Date: Thu Sep 16 18:08:33 CDT 2009 *
6 \**********************************************************/
7 
8 #include <boost/algorithm/string.hpp>
9 
10 #include "QwScaler_Channel.h"
11 #include "QwHistogramHelper.h"
12 #include <stdexcept>
13 
14 #include <QwLog.h>
15 
16 
17 const Bool_t VQwScaler_Channel::kDEBUG = kFALSE;
18 
19 
20 /********************************************************/
21 void VQwScaler_Channel::InitializeChannel(TString name, TString datatosave)
22 {
23  fNormChannelPtr = NULL;
24  fNeedsExternalClock = kFALSE;
25  fIsDifferentialScaler = false;
26 
27  SetElementName(name);
28  SetDataToSave(datatosave);
29  SetNumberOfDataWords(1); //Scaler - single word, 32 bits
31 
32  // Default mockdata parameters
33  SetRandomEventParameters(300.0, 50.0);
34 
35  fValue_Raw_Old = 0;
36  fValue_Raw = 0;
37  fValue = 0.0;
38  fValueM2 = 0.0;
39  fValueError = 0.0;
40  fPedestal = 0.0;
41  fCalibrationFactor = 1.0;
42 
43  fClockNormalization = 1.0;
44 
45  fTreeArrayIndex = 0;
47 
48  fNumEvtsWithHWErrors=0;//init error counters
49  fNumEvtsWithEventCutsRejected=0;//init error counters
50 
51  fErrorFlag = 0;
53  fGoodEventCount = 0;
54  return;
55 };
56 
57 /********************************************************/
58 
59 void VQwScaler_Channel::InitializeChannel(TString subsystem, TString instrumenttype, TString name, TString datatosave){
60  InitializeChannel(name,datatosave);
61  SetSubsystemName(subsystem);
62  SetModuleType(instrumenttype);
63 }
64 
66 {
67  fValue_Raw = 0;
68  fValue = 0.0;
69  fValueM2 = 0.0;
70  fValueError = 0.0;
71 
72  fGoodEventCount = 0;
73  fErrorFlag = 0;
74 }
75 
76 void VQwScaler_Channel::RandomizeEventData(int helicity, double time)
77 {
78  // Calculate drift (if time is not specified, it stays constant at zero)
79  Double_t drift = 0.0;
80  for (UInt_t i = 0; i < fMockDriftFrequency.size(); i++) {
81  drift += fMockDriftAmplitude[i] * sin(2.0 * Qw::pi * fMockDriftFrequency[i] * time + fMockDriftPhase[i]);
82  }
83 
84  Double_t value = fMockGaussianMean * (1 + helicity * fMockAsymmetry)
86  + drift;
87 
88  fValue = value;
89  fValue_Raw = Int_t(value / fCalibrationFactor + fPedestal);
90 }
91 
92 
93 
94 
95 /*! Static member function to return the word offset within a data buffer
96  * given the module number index and the channel number index.
97  * @param scalerindex Scaler index within this buffer; counts from 1
98  * @param wordindex Word index within this scaler; counts from 1
99  * @param header Number of header words; normally is 1
100  * @return The number of words offset to the beginning of this
101  * scaler word from the beginning of the buffer.
102  */
103 Int_t VQwScaler_Channel::GetBufferOffset(Int_t scalerindex, Int_t wordindex, UInt_t header)
104 {
105  Int_t offset = -1;
106  Int_t kMaxWords = 32; // usually the scalers have 32 data words starting from 0
107 
108  if (scalerindex<0 ){
109  QwError << "QwScaler_Channel::GetBufferOffset: Invalid scaler index,"
110  << scalerindex
111  << ". Must be zero or greater."
112  << QwLog::endl;
113  } else if (scalerindex<0 || wordindex>kMaxWords){
114  QwError << "QwScaler_Channel::GetBufferOffset: Invalid word index,"
115  << wordindex
116  << ". Must be in range [0," << kMaxWords << "]."
117  << QwLog::endl;
118  } else {
119  offset = (header + kMaxWords)*scalerindex + header + wordindex ;
120  }
121  return offset;
122 }
123 
124 
125 void VQwScaler_Channel::SetEventData(Double_t value){
126 
127  this->fValue = value;
128  this->fValue_Raw = (UInt_t)value;
129  //std::cout<<"fValue is set to: value = "<<value<<std::endl;
130 
131 }
132 
134  std::string varvalue;
135  if (paramfile.ReturnValue("normclock",varvalue)){
136  boost::to_lower(varvalue);
137  SetExternalClockName(varvalue);
138  fNeedsExternalClock = kTRUE;
139  }
140 };
141 
142 template<unsigned int data_mask, unsigned int data_shift>
144 {
145  if (IsNameEmpty()) {
146  // This channel is not used, but is present in the data stream.
147  // Fill in with zero.
148  buffer.push_back( 0 );
149  } else {
150  buffer.push_back( ((this->fValue_Raw<<data_shift)&data_mask) );
151  //std::cout<<"this->fValue="<<this->fValue<<std::endl;
152  }
153 }
154 
155 
156 template<unsigned int data_mask, unsigned int data_shift>
157 Int_t QwScaler_Channel<data_mask,data_shift>::ProcessEvBuffer(UInt_t* buffer, UInt_t num_words_left,
158  UInt_t index)
159 {
160  UInt_t words_read = 0;
161  if (IsNameEmpty()){
162  // This channel is not used, but is present in the data stream.
163  // Skip over this data.
164  words_read = fNumberOfDataWords;
165  } else if (num_words_left >= fNumberOfDataWords) {
166  fValue_Raw = ((buffer[0] & data_mask) >> data_shift);
167  fValue = fCalibrationFactor * (Double_t(fValue_Raw) - Double_t(fValue_Raw_Old) - fPedestal);
168  words_read = fNumberOfDataWords;
169 
170  // Store old raw value for differential scalers
171  if (IsDifferentialScaler())
172  fValue_Raw_Old = fValue_Raw;
173  else
174  fValue_Raw_Old = 0;
175 
176  } else {
177  //QwError << "QwScaler_Channel::ProcessEvBuffer: Not enough words!"<< QwLog::endl;
178  }
179  return words_read;
180 }
181 
182 
184 {
185  if (NeedsExternalClock()){
186  if(fNormChannelPtr){
187  Double_t time = fNormChannelPtr->GetValue();
188  //QwError << "VQwScaler_Channel::ProcessEvent() "<<GetElementName()<<" "<< fValue_Raw<< " "<< fValue<<" "<<fCalibrationFactor<<" "<< fPedestal<<QwLog::endl;
189  fValue = fCalibrationFactor * (Double_t(fValue_Raw)/time - fPedestal);
190  } else {
191  QwWarning << "VQwScaler_Channel::ProcessEvent: "
192  << "Missing the reference clock, "
194  << ", for data element "
195  << GetElementName()
196  << QwLog::endl;
197  }
198  }
199 }
200 
201 
203 {
204  // printf("Name %s %23.4f +/- %15.4f", GetElementName().Data(), fValue, fValueError);
205  QwMessage << std::setw(5) << std::left << GetElementName() << " , "
206  << std::setprecision(4)
207  << std::setw(5) << std::right << GetValue() << " +/- " << GetValueError() << " sigma "<<GetValueWidth()
208  << QwLog::endl;
209 }
210 
212 {
213  QwMessage << "***************************************" << QwLog::endl;
214  QwMessage << "QwScaler channel: " << GetElementName()
215  << QwLog::endl;
216 }
217 
218 void VQwScaler_Channel::ConstructHistograms(TDirectory *folder, TString &prefix){
219  // If we have defined a subdirectory in the ROOT file, then change into it.
220  if (folder != NULL) folder->cd();
221 
222  if (GetElementName()==""){
223  // This channel is not used, so skip filling the histograms.
224  } else {
225  // Now create the histograms.
226  TString basename, fullname;
227  basename = prefix + GetElementName();
228 
229  fHistograms.resize(1, NULL);
230  size_t index=0;
231  fHistograms[index] = gQwHists.Construct1DHist(basename);
232  index += 1;
233  }
234 }
235 
237 {
238  size_t index = 0;
239  if (IsNameEmpty()) {
240  // This channel is not used, so skip creating the histograms.
241  } else {
242  if (index < fHistograms.size() && fHistograms[index] != NULL && fErrorFlag==0)
243  fHistograms[index]->Fill(this->fValue);
244  index += 1;
245  }
246 }
247 
248 void VQwScaler_Channel::ConstructBranchAndVector(TTree *tree, TString &prefix, std::vector<Double_t> &values)
249 {
250  if (IsNameEmpty()){
251  // This channel is not used, so skip setting up the tree.
252  } else {
253  TString basename = prefix + GetElementName();
254  fTreeArrayIndex = values.size();
255 
256  TString list;
257  values.push_back(0.0);
258  list = "value/D";
259  values.push_back(0.0);
260  list += ":Device_Error_Code/D";
261  if(fDataToSave==kRaw){
262  values.push_back(0.0);
263  list += ":raw/D";
264  }
265 
266  fTreeArrayNumEntries = values.size() - fTreeArrayIndex;
267  if (gQwHists.MatchDeviceParamsFromList(basename.Data()))
268  tree->Branch(basename, &(values[fTreeArrayIndex]), list);
269  }
270 }
271 
272 void VQwScaler_Channel::ConstructBranch(TTree *tree, TString &prefix)
273 {
274  if (IsNameEmpty()){
275  // This channel is not used, so skip setting up the tree.
276  } else {
277  TString basename = prefix + GetElementName();
278 
279  tree->Branch(basename, &fValue, basename+"/D");
280  }
281 }
282 
283 void VQwScaler_Channel::FillTreeVector(std::vector<Double_t> &values) const
284 {
285  if (IsNameEmpty()) {
286  // This channel is not used, so skip setting up the tree.
287  } else if (fTreeArrayNumEntries < 0) {
288  QwError << "VQwScaler_Channel::FillTreeVector: fTreeArrayNumEntries=="
290  } else if (fTreeArrayNumEntries == 0) {
291  static bool warned = false;
292  if (!warned) {
293  QwError << "VQwScaler_Channel::FillTreeVector: fTreeArrayNumEntries=="
294  << fTreeArrayNumEntries << " (no branch constructed?)" << QwLog::endl;
295  QwError << "Offending element is " << GetElementName() << QwLog::endl;
296  warned = true;
297  }
298  } else if (values.size() < fTreeArrayIndex+fTreeArrayNumEntries) {
299  QwError << "VQwScaler_Channel::FillTreeVector: values.size()=="
300  << values.size() << " name: " << fElementName
301  << "; fTreeArrayIndex+fTreeArrayNumEntries=="
302  << fTreeArrayIndex << '+' << fTreeArrayNumEntries << '='
304  << QwLog::endl;
305  } else {
306  size_t index = fTreeArrayIndex;
307  values[index++] = this->fValue;
308  values[index++] = this->fErrorFlag;
309  if(fDataToSave==kRaw){
310  values[index++] = this->fValue_Raw;
311  }
312  }
313 }
314 
315 
317  const VQwScaler_Channel* tmpptr;
318  tmpptr = dynamic_cast<const VQwScaler_Channel*>(valueptr);
319  if (tmpptr!=NULL){
320  *this = *tmpptr;
321  } else {
322  TString loc="Standard exception from VQwScaler_Channel::AssignValueFrom = "
323  +valueptr->GetElementName()+" is an incompatable type.";
324  throw std::invalid_argument(loc.Data());
325  }
326 }
328 {
329  const VQwScaler_Channel* tmpptr;
330  tmpptr = dynamic_cast<const VQwScaler_Channel*>(valueptr);
331  if (tmpptr!=NULL){
332  *this += *tmpptr;
333  } else {
334  TString loc="Standard exception from VQwScaler_Channel::AddValueFrom = "
335  +valueptr->GetElementName()+" is an incompatable type.";
336  throw std::invalid_argument(loc.Data());
337  }
338 }
340 {
341  const VQwScaler_Channel* tmpptr;
342  tmpptr = dynamic_cast<const VQwScaler_Channel*>(valueptr);
343  if (tmpptr!=NULL){
344  *this -= *tmpptr;
345  } else {
346  TString loc="Standard exception from VQwScaler_Channel::SubtractValueFrom = "
347  +valueptr->GetElementName()+" is an incompatable type.";
348  throw std::invalid_argument(loc.Data());
349  }
350 }
352 {
353  const VQwScaler_Channel* tmpptr;
354  tmpptr = dynamic_cast<const VQwScaler_Channel*>(valueptr);
355  if (tmpptr!=NULL){
356  *this *= *tmpptr;
357  } else {
358  TString loc="Standard exception from VQwScaler_Channel::MultiplyBy = "
359  +valueptr->GetElementName()+" is an incompatable type.";
360  throw std::invalid_argument(loc.Data());
361  }
362 }
363 
365 {
366  const VQwScaler_Channel* tmpptr;
367  tmpptr = dynamic_cast<const VQwScaler_Channel*>(valueptr);
368  if (tmpptr!=NULL){
369  *this /= *tmpptr;
370  } else {
371  TString loc="Standard exception from VQwScaler_Channel::DivideBy = "
372  +valueptr->GetElementName()+" is an incompatable type.";
373  throw std::invalid_argument(loc.Data());
374  }
375 }
376 
378 {
379  if(this == &value) return *this;
380  if (!IsNameEmpty()) {
382  this->fValue_Raw = value.fValue_Raw;
383  this->fValue = value.fValue;
384  this->fValueError = value.fValueError;
385  this->fValueM2 = value.fValueM2;
386  }
387  return *this;
388 }
389 
391  Double_t scale)
392 {
393  if (!IsNameEmpty()) {
394  this->fValue = value.fValue * scale;
395  this->fValueError = value.fValueError;
396  this->fValueM2 = value.fValueM2 * scale * scale;
397  this->fErrorFlag = value.fErrorFlag;//error code is updated.
398  this->fGoodEventCount = value.fGoodEventCount;
399  }
400  return;
401 }
402 
403 
405 {
406  if (!IsNameEmpty()){
407  this->fValue += value.fValue;
408  this->fValueM2 = 0.0;
409  this->fErrorFlag |= value.fErrorFlag;//error code is ORed.
410  }
411  return *this;
412 }
413 
415 {
416  if (!IsNameEmpty()){
417  this->fValue -= value.fValue;
418  this->fValueM2 = 0.0;
419  this->fErrorFlag |= (value.fErrorFlag);//error code is ORed.
420  }
421  return *this;
422 }
423 
425 {
426  if (!IsNameEmpty()){
427  this->fValue *= value.fValue;
428  fValue_Raw = 0;
429  this->fValueM2 = 0.0;
430  this->fErrorFlag |= (value.fErrorFlag);//error code is ORed.
431  }
432  return *this;
433 }
434 
436 {
437  const VQwScaler_Channel* tmpptr;
438  tmpptr = dynamic_cast<const VQwScaler_Channel*>(source);
439  if (tmpptr!=NULL){
440  *this += *tmpptr;
441  } else {
442  TString loc="Standard exception from VQwScaler_Channel::operator+= "
443  +source->GetElementName()+" "
444  +this->GetElementName()+" are not of the same type";
445  throw(std::invalid_argument(loc.Data()));
446  }
447  return *this;
448 }
450 {
451  const VQwScaler_Channel* tmpptr;
452  tmpptr = dynamic_cast<const VQwScaler_Channel*>(source);
453  if (tmpptr!=NULL){
454  *this -= *tmpptr;
455  } else {
456  TString loc="Standard exception from VQwScaler_Channel::operator-= "
457  +source->GetElementName()+" "
458  +this->GetElementName()+" are not of the same type";
459  throw(std::invalid_argument(loc.Data()));
460  }
461  return *this;
462 }
464 {
465  const VQwScaler_Channel* tmpptr;
466  tmpptr = dynamic_cast<const VQwScaler_Channel*>(source);
467  if (tmpptr!=NULL){
468  *this *= *tmpptr;
469  } else {
470  TString loc="Standard exception from VQwScaler_Channel::operator*= "
471  +source->GetElementName()+" "
472  +this->GetElementName()+" are not of the same type";
473  throw(std::invalid_argument(loc.Data()));
474  }
475  return *this;
476 }
478 {
479  const VQwScaler_Channel* tmpptr;
480  tmpptr = dynamic_cast<const VQwScaler_Channel*>(source);
481  if (tmpptr!=NULL){
482  *this /= *tmpptr;
483  } else {
484  TString loc="Standard exception from VQwScaler_Channel::operator/= "
485  +source->GetElementName()+" "
486  +this->GetElementName()+" are not of the same type";
487  throw(std::invalid_argument(loc.Data()));
488  }
489  return *this;
490 }
491 
493 {
494  *this = value1;
495  *this += value2;
496 }
497 
499  *this = value1;
500  *this -= value2;
501 }
502 
504 {
505  if (!IsNameEmpty()){
506  *this = numer;
507  *this /= denom;
508 
509  // Set the raw values to zero.
510  fValue_Raw = 0;
511 
512  // Remaining variables
514  fErrorFlag = (numer.fErrorFlag|denom.fErrorFlag);//error code is ORed.
515  }
516 }
517 
519 {
520  // In this function, leave the "raw" variables untouched.
521  Double_t ratio;
522  Double_t variance;
523  if (!IsNameEmpty()){
524  // The variances are calculated using the following formula:
525  // Var[ratio] = ratio^2 (Var[numer] / numer^2 + Var[denom] / denom^2)
526  //
527  // This requires that both the numerator and denominator are non-zero!
528  //
529  if (this->fValue != 0.0 && denom.fValue != 0.0){
530  ratio = (this->fValue) / (denom.fValue);
531  variance = ratio * ratio *
532  (this->fValueM2 / this->fValue / this->fValue
533  + denom.fValueM2 / denom.fValue / denom.fValue);
534  fValue = ratio;
535  fValueM2 = variance;
536  } else if (this->fValue == 0.0) {
537  fValue = 0.0;
538  fValueM2 = 0.0;
539  } else {
540  QwVerbose << "Attempting to divide by zero in "
541  << GetElementName() << QwLog::endl;
542  fValue = 0.0;
543  fValueM2 = 0.0;
544  }
545 
546  // Remaining variables
547  // Don't change fGoodEventCount.
548  // 'OR' the device error codes together.
549  fErrorFlag |= denom.fErrorFlag;
550  }
551 
552  // Nanny
553  if (fValue != fValue)
554  QwWarning << "Angry Nanny: NaN detected in " << GetElementName() << QwLog::endl;
555  return *this;
556 }
557 
559 {
560  if (!IsNameEmpty()){
561  fValue = numer.fValue * denom.fValue;
562  fValue_Raw = 0;
563 
564  // Remaining variables
566  fErrorFlag = (numer.fErrorFlag|denom.fErrorFlag);//error code is ORed.
567  }
568 }
569 
570 
572 {
573  if (!IsNameEmpty())
574  {
575  fValue += offset;
576  }
577 }
578 
579 
580 void VQwScaler_Channel::Scale(Double_t scale)
581 {
582  if (!IsNameEmpty())
583  {
584  fValue *= scale;
585  fValueM2 *= scale * scale;
586  }
587 }
588 
590 {
591  *this /= denom;
592 }
593 
594 /********************************************************/
596  // fErrorFlag=0;
597  if (bEVENTCUTMODE>0){//Global switch to ON/OFF event cuts set at the event cut file
598  //check for the hw_sum is zero
599  if (GetRawValue()==0){
601  }
602  }
603  return fErrorFlag;
604 }
605 
606 
607 
609 {
610  Bool_t status;
611  //QwError<<" Single Event Check ! "<<QwLog::endl;
612  if (bEVENTCUTMODE>=2){//Global switch to ON/OFF event cuts set at the event cut file
613 
614  if (fULimit==0 && fLLimit==0){
615  status=kTRUE;
616  } else if (GetValue()<=fULimit && GetValue()>=fLLimit){
617  //QwError<<" Single Event Cut passed "<<GetElementName()<<" "<<GetValue()<<QwLog::endl;
618  if (fErrorFlag !=0)
619  status=kFALSE;
620  else
621  status=kTRUE;
622  }
623  else{
624  //QwError<<" Single Event Cut Failed "<<GetElementName()<<" "<<GetValue()<<QwLog::endl;
625  if (GetValue()> fULimit)
627  else
629  status=kFALSE;
630  }
631 
632  if (bEVENTCUTMODE==3){
633  status=kTRUE; //Update the event cut fail flag but pass the event.
634  }
635 
636  }
637  else{
638  status=kTRUE;
639  fErrorFlag=0;
640  }
641 
642 
643  return status;
644 }
645 
647 {
649  fNumEvtsWithHWErrors++; //increment the hw error counter
650  }
651  if ( ((kErrorFlag_EventCut_L & fErrorFlag)==kErrorFlag_EventCut_L)
652  || ((kErrorFlag_EventCut_U & fErrorFlag)==kErrorFlag_EventCut_U)){
653  fNumEvtsWithEventCutsRejected++; //increment the event cut error counter
654  }
655 }
656 
657 
659 {
660  // Moment calculations
661  Int_t n1 = fGoodEventCount;
662  Int_t n2 = count;
663 
664  // If there are no good events, check whether device HW is good
665  if (n2 == 0 && value.fErrorFlag == 0) {
666  n2 = 1;
667  }
668  Int_t n = n1 + n2;
669 
670  // Set up variables
671  Double_t M11 = fValue;
672  Double_t M12 = value.fValue;
673  Double_t M22 = value.fValueM2;
674  if (n2 == 0) {
675  // no good events for addition
676  return;
677  } else if (n2 == 1) {
678  // simple version for addition of single event
679  fGoodEventCount++;
680  fValue += (M12 - M11) / n;
681  fValueM2 += (M12 - M11) * (M12 - fValue); // note: using updated mean
682  } else if (n2 > 1) {
683  // general version for addition of multi-event sets
684  fGoodEventCount += n2;
685  fValue += n2 * (M12 - M11) / n;
686  fValueM2 += M22 + n1 * n2 * (M12 - M11) * (M12 - M11) / n;
687  }
688 
689  // Nanny
690  if (fValue != fValue)
691  QwWarning << "Angry Nanny: NaN detected in " << GetElementName() << QwLog::endl;
692 }
693 
695 {
696  // See notes in QwVQWK_Channel; we are using:
697  // error = sqrt(M2)/n,
698  // or alternately we could use the unbiased estimator for both
699  // the sigma and error on the mean:
700  // error = sqrt(M2)/(n-1)
701  if(fGoodEventCount > 0) {
703  } else {
704  fValueError = 0.0;
705  }
706 
707 }
708 
710  if (fNumEvtsWithHWErrors>0)
711  QwMessage << "QwScaler_Channel " << GetElementName()
712  << " had " << fNumEvtsWithHWErrors
713  << " events with a hardware faliure."
714  << QwLog::endl;
715 
717  QwMessage << "QwScaler_Channel " << GetElementName()
718  << " had " << fNumEvtsWithEventCutsRejected
719  << " events rejected by Event Cuts."
720  << QwLog::endl;
721  }
722 
723 void VQwScaler_Channel::ScaledAdd(Double_t scale, const VQwHardwareChannel *value){
724 
725  const VQwScaler_Channel* input = dynamic_cast<const VQwScaler_Channel*>(value);
726 
727  // follows same steps as += but w/ scaling factor
728  if (input!=NULL && !IsNameEmpty()){
729  this->fValue += scale * input->fValue;
730  this->fValueM2 = 0.0;
731  this->fErrorFlag |= (input->fErrorFlag);
732  }
733 }
734 
735 // These explicit class template instantiations should be the
736 // last thing in this file. This list should cover all of the
737 // types that are typedef'ed in the header file.
738 template class QwScaler_Channel<0x00ffffff,0>; // QwSIS3801D24_Channel
739 template class QwScaler_Channel<0xffffffff,0>; // QwSIS3801_Channel, etc.
740 
741 
static const double pi
Angles: base unit is radian.
Definition: QwUnits.h:102
#define QwMessage
Predefined log drain for regular messages.
Definition: QwLog.h:50
static const UInt_t kErrorFlag_ZeroHW
Definition: QwTypes.h:163
const VQwHardwareChannel * fNormChannelPtr
std::string fNormChannelName
void SetRandomEventParameters(Double_t mean, Double_t sigma)
Set the normal random event parameters.
Definition: MQwMockable.cc:41
void ConstructBranchAndVector(TTree *tree, TString &prefix, std::vector< Double_t > &values)
void Scale(Double_t Offset)
virtual void SetExternalClockName(const std::string name)
Bool_t IsNameEmpty() const
Is the name of this element empty?
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.
std::vector< Double_t > fMockDriftPhase
Harmonic drift phase.
Definition: MQwMockable.h:96
static Int_t GetBufferOffset(Int_t scalerindex, Int_t wordindex, UInt_t header=1)
std::vector< Double_t > fMockDriftFrequency
Harmonic drift frequency.
Definition: MQwMockable.h:95
void AddChannelOffset(Double_t Offset)
Int_t GetRawValue() const
std::vector< TH1_ptr > fHistograms
Histograms associated with this data element.
Definition: MQwHistograms.h:46
#define QwVerbose
Predefined log drain for verbose messages.
Definition: QwLog.h:55
static const Bool_t kDEBUG
Double_t fMockGaussianSigma
Sigma of normal distribution.
Definition: MQwMockable.h:93
void SetDataToSave(TString datatosave)
Set the flag indicating if raw or derived values are in this data element.
VQwScaler_Channel & operator=(const VQwScaler_Channel &value)
VQwHardwareChannel & operator/=(const VQwHardwareChannel *input)
void SetNumberOfDataWords(const UInt_t &numwords)
Set the number of data words in this data element.
Bool_t ReturnValue(const std::string keyname, T &retvalue)
void FillTreeVector(std::vector< Double_t > &values) const
void MultiplyBy(const VQwHardwareChannel *valueptr)
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.
Bool_t MatchDeviceParamsFromList(const std::string &devicename)
void SetNumberOfSubElements(const size_t elements)
Set the number of data words in this data element.
The pure virtual base class of all data elements.
void DivideBy(const VQwHardwareChannel *valueptr)
VQwScaler_Channel & operator-=(const VQwScaler_Channel &value)
void PrintValue() const
Print single line of value and error of this data element.
A logfile class, based on an identical class in the Hermes analyzer.
Double_t GetRandomValue()
Definition: MQwMockable.cc:54
void SetSubsystemName(TString sysname)
Set the name of the inheriting subsystem name.
Double_t fMockGaussianMean
Mean of normal distribution.
Definition: MQwMockable.h:92
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)
std::vector< Double_t > fMockDriftAmplitude
Harmonic drift amplitude.
Definition: MQwMockable.h:94
void SetElementName(const TString &name)
Set the name of this element.
VQwScaler_Channel & operator*=(const VQwScaler_Channel &value)
UInt_t fErrorFlag
This the standard error code generated for the channel that contains the global/local/stability flags...
Double_t fMockAsymmetry
Helicity asymmetry.
Definition: MQwMockable.h:91
QwHistogramHelper gQwHists
Globally defined instance of the QwHistogramHelper class.
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)
UInt_t fErrorConfigFlag
contains the global/local/stability flags
void ConstructBranch(TTree *tree, TString &prefix)
void Difference(VQwScaler_Channel &value1, VQwScaler_Channel &value2)
void ConstructHistograms(TDirectory *folder, TString &prefix)
Construct the histograms for this data element.
void AssignValueFrom(const VQwDataElement *valueptr)
void FillHistograms()
Fill the histograms for this data element.
virtual VQwHardwareChannel & operator=(const VQwHardwareChannel &value)
Arithmetic assignment operator: Should only copy event-based data.
static std::ostream & endl(std::ostream &)
End of the line.
Definition: QwLog.cc:299
void SetModuleType(TString ModuleType)
set the type of the beam instrument
static const UInt_t kErrorFlag_EventCut_L
Definition: QwTypes.h:164
Int_t fGoodEventCount
Number of good events accumulated in this element.
TString fElementName
Name of this data element.
virtual const TString & GetElementName() const
Get the name of this element.
void ScaledAdd(Double_t scale, const VQwHardwareChannel *value)
Double_t GetValueError() const
void LoadChannelParameters(QwParameterFile &paramfile)
void AddValueFrom(const VQwHardwareChannel *valueptr)
Double_t GetValue() const
void ClearEventData()
Clear the event data in this element.
#define QwWarning
Predefined log drain for warnings.
Definition: QwLog.h:45
Double_t GetValueWidth() const
void PrintInfo() const
Print multiple lines of information about this data element.
TH1F * Construct1DHist(const TString &inputfile, const TString &name_title)
virtual Bool_t NeedsExternalClock()
void SubtractValueFrom(const VQwHardwareChannel *valueptr)
static const UInt_t kErrorFlag_EventCut_U
Definition: QwTypes.h:165
#define QwError
Predefined log drain for errors.
Definition: QwLog.h:40
Double_t fClockNormalization