QwAnalysis
QwBPMCavity.cc
Go to the documentation of this file.
1 /**********************************************************\
2 * File: QwBPMCavity.cc *
3 * *
4 * Author: *
5 * Time-stamp: *
6 \**********************************************************/
7 
8 #include "QwBPMCavity.h"
9 
10 // System headers
11 #include <stdexcept>
12 
13 // Qweak headers
14 #include "QwDBInterface.h"
15 
16 
17 /* Position calibration factor, transform ADC counts in mm*/
18 const Double_t QwBPMCavity::kQwCavityCalibration = 1e-8;
19 //The value of kQwCavityCalibration is made up so we have to replace it with an actual value when it is determined
20 //Josh Kaisen
21 const Double_t QwBPMCavity::kRotationCorrection = 1./1.414;
22 const TString QwBPMCavity::subelement[3]={"X","Y","Q"};
23 
25 {
26  Short_t i=0;
27  Bool_t localdebug = kFALSE;
28 
30 
31  for(i=kXAxis;i<kNumAxes;i++)
32  fAbsPos[i].InitializeChannel(name+"Abs"+kAxisLabel[i],"derived");
33 
34  fEffectiveCharge.InitializeChannel(name+"_EffectiveCharge","raw");
35 
36  for(i=0;i<2;i++) {
37  fWire[i].InitializeChannel(name+subelement[i],"raw");
38  if(localdebug)
39  std::cout<<" Wire ["<<i<<"]="<<fWire[i].GetElementName()<<"\n";
40  }
41 
42  for(i=kXAxis;i<kNumAxes;i++) fRelPos[i].InitializeChannel(name+"Rel"+subelement[i],"derived");
43 
44  bFullSave=kTRUE;
45 
46  return;
47 }
48 
49 void QwBPMCavity::InitializeChannel(TString subsystem, TString name)
50 {
51  Short_t i=0;
52  Bool_t localdebug = kFALSE;
53 
55 
56  for(i=kXAxis;i<kNumAxes;i++)
57  fAbsPos[i].InitializeChannel(subsystem, "QwBPMCavity", name+"Abs"+kAxisLabel[i],"derived");
58 
59  fEffectiveCharge.InitializeChannel(subsystem, "QwBPMCavity", name+"_EffectiveCharge","raw");
60 
61  for(i=0;i<2;i++) {
62  fWire[i].InitializeChannel(subsystem, "QwBPMCavity", name+subelement[i],"raw");
63  if(localdebug)
64  std::cout<<" Wire ["<<i<<"]="<<fWire[i].GetElementName()<<"\n";
65  }
66 
67  for(i=kXAxis;i<kNumAxes;i++) fRelPos[i].InitializeChannel(subsystem, "QwBPMCavity", name+"Rel"+subelement[i],"derived");
68 
69  bFullSave=kTRUE;
70 
71  return;
72 }
73 
75 {
76  Short_t i=0;
77 
78  for(i=0;i<2;i++){
80  fWire[i].ClearEventData();
82  }
84 
85  return;
86 }
87 
88 
90 {
91  Bool_t eventokay=kTRUE;
92 
93  UInt_t deviceerror=0;
94  for(Short_t i=0;i<2;i++)
95  {
96  deviceerror|= fWire[i].ApplyHWChecks(); //OR the error code from each wire
97  eventokay &= (deviceerror & 0x0);//AND with 0 since zero means HW is good.
98 
99  if (bDEBUG) std::cout<<" Inconsistent within BPM terminals wire[ "<<i<<" ] "<<std::endl;
100  if (bDEBUG) std::cout<<" wire[ "<<i<<" ] sequence num "<<fWire[i].GetSequenceNumber()<<" sample size "<<fWire[i].GetNumberOfSamples()<<std::endl;
101  }
102  deviceerror = fEffectiveCharge.ApplyHWChecks();
103  eventokay &= (deviceerror & 0x0);//AND with 0
104  return eventokay;
105 }
106 
108 {
109  Short_t i=0;
110 
111  for(i=0;i<2;i++) {
115  }
117 }
118 
120 {
121  Short_t i=0;
122 
123  for(i=0;i<2;i++) {
127  }
129 }
130 
132 {
133  Short_t i=0;
134  UInt_t error=0;
135  for(i=0;i<2;i++) {
136  error|=fWire[i].GetEventcutErrorFlag();
137  error|=fRelPos[i].GetEventcutErrorFlag();
138  error|=fAbsPos[i].GetEventcutErrorFlag();
139  }
141 
142  return error;
143 }
144 
146 {
147  Short_t i=0;
148  UInt_t error1=0;
149  UInt_t error2=0;
150  for(i=0;i<2;i++) {
151  error1|=fWire[i].GetErrorCode();
152  error2|=fWire[i].GetEventcutErrorFlag();
153  }
154  for(i=kXAxis;i<kNumAxes;i++) {
155  fRelPos[i].UpdateErrorFlag(error1);
156  fAbsPos[i].UpdateErrorFlag(error1);
157  error2|=fRelPos[i].GetEventcutErrorFlag();
158  error2|=fAbsPos[i].GetEventcutErrorFlag();
159  }
162  return error2;
163 }
164 
166 {
167  Bool_t status=kTRUE;
168  Int_t i=0;
169  UInt_t error_code = 0;
170  //Event cuts for X & Y
171  for(i=0;i<2;i++){
172 
173  if (fWire[i].ApplySingleEventCuts()){ //for RelX
174  status&=kTRUE;
175  }
176  else{
177  status&=kFALSE;
178  if (bDEBUG) std::cout<<" Rel X event cut failed ";
179  }
180  error_code |= fWire[i].GetErrorCode();//this to be updated in the rel and abp pos channels
181  }
182  for(i=kXAxis;i<kNumAxes;i++){
183  fRelPos[i].UpdateErrorFlag(error_code);
184  if (fRelPos[i].ApplySingleEventCuts()){ //for RelX
185  status&=kTRUE;
186  }
187  else{
188  status&=kFALSE;
189  if (bDEBUG) std::cout<<" Rel X event cut failed ";
190  }
191  }
192 
193  for(i=kXAxis;i<kNumAxes;i++){
194  fAbsPos[i].UpdateErrorFlag(error_code);
195  if (fAbsPos[i].ApplySingleEventCuts()){ //for RelX
196  status&=kTRUE;
197  }
198  else{
199  status&=kFALSE;
200  if (bDEBUG) std::cout<<" Abs X event cut failed ";
201  }
202  }
203 
204  //Event cuts for four wire sum (EffectiveCharge)
205  fEffectiveCharge.UpdateErrorFlag(error_code);
207  status&=kTRUE;
208  }
209  else{
210  status&=kFALSE;
211  if (bDEBUG) std::cout<<"EffectiveCharge event cut failed ";
212  }
213  return status;
214 }
215 
217 {
218  VQwHardwareChannel* tmpptr = NULL;
219  ch_name.ToLower();
220  if (ch_name=="relx"){
221  tmpptr = &fRelPos[0];
222  }else if (ch_name=="rely"){
223  tmpptr = &fRelPos[1];
224  }else if (ch_name=="absx" || ch_name=="x" ){
225  tmpptr = &fAbsPos[0];
226  }else if (ch_name=="absy" || ch_name=="y"){
227  tmpptr = &fAbsPos[1];
228  }else if (ch_name=="effectivecharge" || ch_name=="charge"){
229  tmpptr = &fEffectiveCharge;
230  } else {
231  TString loc="QwLinearDiodeArray::GetSubelementByName for"
232  + this->GetElementName() + " was passed "
233  + ch_name + ", which is an unrecognized subelement name.";
234  throw std::invalid_argument(loc.Data());
235  }
236  return tmpptr;
237 }
238 
239 
240 /*
241 void QwBPMCavity::SetSingleEventCuts(TString ch_name, Double_t minX, Double_t maxX)
242 {
243 
244  if (ch_name=="relx"){
245  QwMessage<<"RelX LL " << minX <<" UL " << maxX <<QwLog::endl;
246  fRelPos[0].SetSingleEventCuts(minX,maxX);
247 
248  }else if (ch_name=="rely"){
249  QwMessage<<"RelY LL " << minX <<" UL " << maxX <<QwLog::endl;
250  fRelPos[1].SetSingleEventCuts(minX,maxX);
251 
252  } else if (ch_name=="absx"){
253  QwMessage<<"AbsX LL " << minX <<" UL " << maxX <<QwLog::endl;
254  fAbsPos[0].SetSingleEventCuts(minX,maxX);
255 
256  }else if (ch_name=="absy"){
257  QwMessage<<"AbsY LL " << minX <<" UL " << maxX <<QwLog::endl;
258  fAbsPos[1].SetSingleEventCuts(minX,maxX);
259 
260  }else if (ch_name=="effectivecharge"){
261  QwMessage<<"EffectveQ LL " << minX <<" UL " << maxX <<QwLog::endl;
262  fEffectiveCharge.SetSingleEventCuts(minX,maxX);
263 
264  }
265 
266 }
267 
268 void QwBPMCavity::SetSingleEventCuts(TString ch_name, UInt_t errorflag,Double_t minX, Double_t maxX, Double_t stability){
269  errorflag|=kBPMErrorFlag;//update the device flag
270  if (ch_name=="relx"){
271  QwMessage<<"RelX LL " << minX <<" UL " << maxX <<QwLog::endl;
272  fRelPos[0].SetSingleEventCuts(errorflag,minX,maxX,stability);
273 
274  }else if (ch_name=="rely"){
275  QwMessage<<"RelY LL " << minX <<" UL " << maxX <<QwLog::endl;
276  fRelPos[1].SetSingleEventCuts(errorflag,minX,maxX,stability);
277 
278  } else if (ch_name=="absx"){
279  QwMessage<<"AbsX LL " << minX <<" UL " << maxX <<QwLog::endl;
280  fAbsPos[0].SetSingleEventCuts(errorflag,minX,maxX,stability);
281 
282  }else if (ch_name=="absy"){
283  QwMessage<<"AbsY LL " << minX <<" UL " << maxX <<QwLog::endl;
284  fAbsPos[1].SetSingleEventCuts(errorflag,minX,maxX,stability);
285 
286  }else if (ch_name=="effectivecharge"){
287  QwMessage<<"EffectveQ LL " << minX <<" UL " << maxX <<QwLog::endl;
288  fEffectiveCharge.SetSingleEventCuts(errorflag,minX,maxX,stability);
289 
290  }
291 
292 }
293 
294 */
295 
296 void QwBPMCavity::UpdateErrorFlag(const VQwBPM *ev_error){
297  Short_t i=0;
298  try {
299  if(typeid(*ev_error)==typeid(*this)) {
300  // std::cout<<" Here in QwBPMStripline::UpdateErrorFlag \n";
301  if (this->GetElementName()!="") {
302  const QwBPMCavity* value_bpm = dynamic_cast<const QwBPMCavity* >(ev_error);
303  for(i=0;i<2;i++){
304  fWire[i].UpdateErrorFlag(value_bpm->fWire[i]);
305  }
306  for(i=kXAxis;i<kNumAxes;i++) {
307  fRelPos[i].UpdateErrorFlag(value_bpm->fRelPos[i]);
308  fAbsPos[i].UpdateErrorFlag(value_bpm->fAbsPos[i]);
309  }
311  }
312  } else {
313  TString loc="Standard exception from QwBPMCavity::UpdateErrorFlag :"+
314  ev_error->GetElementName()+" "+this->GetElementName()+" are not of the "
315  +"same type";
316  throw std::invalid_argument(loc.Data());
317  }
318  } catch (std::exception& e) {
319  std::cerr<< e.what()<<std::endl;
320  }
321 };
322 
323 
324 
326 {
327  Bool_t localdebug = kFALSE;
328  Short_t i = 0;
329 
330 
331  ApplyHWChecks();
332  /**First apply HW checks and update HW error flags.
333  Calling this routine here and not in ApplySingleEventCuts
334  makes a difference for a BPMs because they have derrived devices.
335  */
336  for(i=0;i<2;i++)
337  {
338  fWire[i].ProcessEvent();
339  }
341 
342  if (localdebug) {
344  fWire[i].PrintInfo();
345  }
346 
347  for(i=kXAxis;i<kNumAxes;i++){
348  fRelPos[i]= fWire[i];
350  fAbsPos[i]= fRelPos[i];
352  }
353 
354  return;
355 }
356 
357 
358 Int_t QwBPMCavity::ProcessEvBuffer(UInt_t* buffer, UInt_t word_position_in_buffer,UInt_t index)
359 {
360  if(index<2)
361  {
362  fWire[index].ProcessEvBuffer(buffer,word_position_in_buffer);
363  }
364  else if(index==2)
365  {
366  fEffectiveCharge.ProcessEvBuffer(buffer,word_position_in_buffer);
367  }
368  else
369  {
370  std::cerr <<
371  "QwBPMCavity::ProcessEvBuffer(): attempt to fill in raw date for a wire that doesn't exist \n";
372  }
373  return word_position_in_buffer;
374 }
375 
376 
377 
379 {
380  for (Short_t i = 0; i < 2; i++) {
381  fAbsPos[i].PrintValue();
382  fWire[i].PrintValue();
383  fRelPos[i].PrintValue();
384  }
385  return;
386 }
387 
389 {
390  Short_t i = 0;
391  for (i = 0; i < 2; i++) {
392  fWire[i].PrintInfo();
393  fAbsPos[i].PrintInfo();
394  fRelPos[i].PrintInfo();
395  }
397 }
398 
399 
400 TString QwBPMCavity::GetSubElementName(Int_t subindex)
401 {
402  TString thisname;
403  if(subindex<2&&subindex>-1)
404  thisname=fWire[subindex].GetElementName();
405  else
406  std::cerr<<"QwBPMCavity::GetSubElementName for "<<
407  GetElementName()<<" this subindex doesn't exists \n";
408 
409  return thisname;
410 }
411 
412 UInt_t QwBPMCavity::GetSubElementIndex(TString subname)
413 {
414  subname.ToUpper();
415  UInt_t localindex=kInvalidSubelementIndex;
416  for(Short_t i=0;i<3;i++) if(subname==subelement[i])localindex=i;
417 
418  if(localindex==kInvalidSubelementIndex)
419  std::cerr << "QwBPMCavity::GetSubElementIndex is unable to associate the string -"
420  <<subname<<"- to any index"<<std::endl;
421 
422  return localindex;
423 }
424 
426 {
427  for(Short_t i=0;i<2;i++){
428  fRelPos[i] = fWire[i];
429  fAbsPos[i]= fRelPos[i];
431  }
432  // For Z, the absolute position will be the offset we are reading from the
433  // geometry map file. Since we are not putting that to the tree it is not
434  // treated as a vqwk channel.
435 }
436 
437 
439 {
440  *(dynamic_cast<QwBPMCavity*>(this)) =
441  *(dynamic_cast<const QwBPMCavity*>(&value));
442  return *this;
443 }
444 
446 {
447  VQwBPM::operator= (value);
448 
449  this->bRotated=value.bRotated;
450  if (GetElementName()!=""){
451  Short_t i = 0;
453  for(i=0;i<2;i++) {
454  this->fWire[i]=value.fWire[i];
455  this->fRelPos[i]=value.fRelPos[i];
456  this->fAbsPos[i]=value.fAbsPos[i];
457  }
458  }
459  return *this;
460 }
461 
462 
464 {
465 
466  if (GetElementName()!=""){
467  Short_t i = 0;
468  this->fEffectiveCharge+=value.fEffectiveCharge;
469  for(i=0;i<2;i++) {
470  this->fWire[i]+=value.fWire[i];
471  this->fRelPos[i]+=value.fRelPos[i];
472  this->fAbsPos[i]+=value.fAbsPos[i];
473  }
474  }
475  return *this;
476 }
477 
479 {
480  *(dynamic_cast<QwBPMCavity*>(this)) +=
481  *(dynamic_cast<const QwBPMCavity*>(&value));
482  return *this;
483 }
484 
485 
486 
488 {
489 
490  if (GetElementName()!=""){
491  Short_t i = 0;
492  this->fEffectiveCharge-=value.fEffectiveCharge;
493  for(i=0;i<2;i++) {
494  this->fWire[i]-=value.fWire[i];
495  this->fRelPos[i]-=value.fRelPos[i];
496  this->fAbsPos[i]-=value.fAbsPos[i];
497  }
498  }
499  return *this;
500 }
501 
503 {
504  *(dynamic_cast<QwBPMCavity*>(this)) -=
505  *(dynamic_cast<const QwBPMCavity*>(&value));
506  return *this;
507 }
508 
509 
510 
512 {
513  // this function is called when forming asymmetries. In this case what we actually want for the
514  // stripline is the difference only not the asymmetries
515 
516  *this=numer;
518  return;
519 }
520 
521 
522 
523 void QwBPMCavity::Scale(Double_t factor)
524 {
525  fEffectiveCharge.Scale(factor);
526 
527  for(Short_t i=0;i<2;i++){
528  fWire[i].Scale(factor);
529  fRelPos[i].Scale(factor);
530  fAbsPos[i].Scale(factor);
531  }
532  return;
533 }
534 
535 
537 {
538  Short_t i = 0;
539  for(i=0;i<2;i++) fWire[i].CalculateRunningAverage();
540  for (i = 0; i < 2; i++) fRelPos[i].CalculateRunningAverage();
541  for (i = 0; i < 2; i++) fAbsPos[i].CalculateRunningAverage();
543  return;
544 }
545 
547  AccumulateRunningSum(*dynamic_cast<const QwBPMCavity* >(&value));
548 };
549 
551 {
552 
553  Short_t i = 0;
554  for(i=0;i<2;i++) fWire[i].AccumulateRunningSum(value.fWire[i]);
556  for (i = 0; i < 2; i++) fRelPos[i].AccumulateRunningSum(value.fRelPos[i]);
557  for (i = 0; i < 2; i++) fAbsPos[i].AccumulateRunningSum(value.fAbsPos[i]);
558  return;
559 }
560 
562  DeaccumulateRunningSum(*dynamic_cast<QwBPMCavity* >(&value));
563 };
564 
566 {
567  Short_t i = 0;
568  for(i=0;i<2;i++) fWire[i].DeaccumulateRunningSum(value.fWire[i]);
570  for (i = 0; i < 2; i++) fRelPos[i].DeaccumulateRunningSum(value.fRelPos[i]);
571  for (i = 0; i < 2; i++) fAbsPos[i].DeaccumulateRunningSum(value.fAbsPos[i]);
572  return;
573 }
574 
575 
576 
577 
578 void QwBPMCavity::ConstructHistograms(TDirectory *folder, TString &prefix)
579 {
580 
581  if (GetElementName()=="") {
582  // This channel is not used, so skip filling the histograms.
583  } else {
584  fEffectiveCharge.ConstructHistograms(folder, prefix);
585  TString thisprefix=prefix;
586 
587  if(prefix=="asym_")
588  thisprefix="diff_";
589  SetRootSaveStatus(prefix);
590  Short_t i = 0;
591  for(i=kXAxis;i<kNumAxes;i++) {
592  if(bFullSave) fWire[i].ConstructHistograms(folder, thisprefix);
593  fRelPos[i].ConstructHistograms(folder, thisprefix);
594  fAbsPos[i].ConstructHistograms(folder, thisprefix);
595  }
596  }
597  return;
598 }
599 
601 {
602  if (GetElementName()=="") {
603  // This channel is not used, so skip filling the histograms.
604  }
605  else {
607  Short_t i = 0;
608  for(i=kXAxis;i<kNumAxes;i++){
609  if (bFullSave) fWire[i].FillHistograms();
610  fRelPos[i].FillHistograms();
611  fAbsPos[i].FillHistograms();
612  }
613  //No data for z position
614  }
615  return;
616 }
617 
618 void QwBPMCavity::ConstructBranchAndVector(TTree *tree, TString &prefix, std::vector<Double_t> &values)
619 {
620  if (GetElementName()==""){
621  // This channel is not used, so skip constructing trees.
622  }
623  else {
624  TString thisprefix=prefix;
625  if(prefix=="asym_")
626  thisprefix="diff_";
627 
628  SetRootSaveStatus(prefix);
629 
630  fEffectiveCharge.ConstructBranchAndVector(tree,prefix,values);
631  Short_t i = 0;
632  for(i=kXAxis;i<kNumAxes;i++) {
633  if (bFullSave) fWire[i].ConstructBranchAndVector(tree,thisprefix,values);
634  fRelPos[i].ConstructBranchAndVector(tree,thisprefix,values);
635  fAbsPos[i].ConstructBranchAndVector(tree,thisprefix,values);
636  }
637 
638  }
639  return;
640 }
641 
642  void QwBPMCavity::ConstructBranch(TTree *tree, TString &prefix)
643  {
644  if (GetElementName()==""){
645  // This channel is not used, so skip constructing trees.
646  }
647  else {
648  TString thisprefix=prefix;
649  if(prefix=="asym_")
650  thisprefix="diff_";
651 
652  SetRootSaveStatus(prefix);
653 
654  fEffectiveCharge.ConstructBranch(tree,prefix);
655  Short_t i = 0;
656  for(i=kXAxis;i<kNumAxes;i++) {
657  if (bFullSave) fWire[i].ConstructBranch(tree,thisprefix);
658  fRelPos[i].ConstructBranch(tree,thisprefix);
659  fAbsPos[i].ConstructBranch(tree,thisprefix);
660  }
661 
662  }
663  return;
664  }
665 
666  void QwBPMCavity::ConstructBranch(TTree *tree, TString &prefix, QwParameterFile& modulelist)
667  {
668  TString devicename;
669  /*
670  QwMessage <<" QwBCM::ConstructBranch "<<QwLog::endl;
671  modulelist.RewindToFileStart();
672  while (modulelist.ReadNextLine()){
673  modulelist.TrimComment('!'); // Remove everything after a '!' character.
674  modulelist.TrimWhitespace(); // Get rid of leading and trailing spaces
675  QwMessage <<" "<<modulelist.GetLine()<<" ";
676  }
677  QwMessage <<QwLog::endl;
678  */
679  devicename=GetElementName();
680  devicename.ToLower();
681  if (GetElementName()==""){
682  // This channel is not used, so skip filling the histograms.
683  } else
684  {
685  if (modulelist.HasValue(devicename)){
686  TString thisprefix=prefix;
687  if(prefix=="asym_")
688  thisprefix="diff_";
689 
690  SetRootSaveStatus(prefix);
691 
692  fEffectiveCharge.ConstructBranch(tree,prefix);
693  Short_t i = 0;
694  for(i=kXAxis;i<kNumAxes;i++) {
695  if (bFullSave) fWire[i].ConstructBranch(tree,thisprefix);
696  fRelPos[i].ConstructBranch(tree,thisprefix);
697  fAbsPos[i].ConstructBranch(tree,thisprefix);
698  }
699 
700  QwMessage <<" Tree leaves added to "<<devicename<<" Corresponding channels"<<QwLog::endl;
701  }
702  // this functions doesn't do anything yet
703  }
704 
705 
706 
707 
708 
709  return;
710  }
711 
712 
713 void QwBPMCavity::FillTreeVector(std::vector<Double_t> &values) const
714 {
715  if (GetElementName()=="") {
716  // This channel is not used, so skip filling the tree.
717  }
718  else {
720  Short_t i = 0;
721  for(i=kXAxis;i<kNumAxes;i++){
722  if (bFullSave) fWire[i].FillTreeVector(values);
723  fRelPos[i].FillTreeVector(values);
724  fAbsPos[i].FillTreeVector(values);
725  }
726  }
727  return;
728 }
729 
731 {
732  Short_t i = 0;
733  // bEVENTCUTMODE=bcuts;
734  for (i=0;i<2;i++) {
735  fWire[i].SetEventCutMode(bcuts);
736  fRelPos[i].SetEventCutMode(bcuts);
737  fAbsPos[i].SetEventCutMode(bcuts);
738  }
740 }
741 
742 
744 {
745  for (size_t i = kXAxis; i < kNumAxes; i++) {
746  QwVQWK_Channel relpos(fRelPos[i]);
747  relpos = fRelPos[i];
748  fBPMElementList.push_back(relpos);
749  }
750  QwVQWK_Channel effectivecharge(fEffectiveCharge);
751  effectivecharge = fEffectiveCharge;
752  fBPMElementList.push_back(effectivecharge);
753 }
754 
755 
756 std::vector<QwDBInterface> QwBPMCavity::GetDBEntry()
757 {
758  std::vector <QwDBInterface> row_list;
759  row_list.clear();
760  for(size_t i=0;i<2;i++) {
761  fRelPos[i].AddEntriesToList(row_list);
762  fAbsPos[i].AddEntriesToList(row_list);
763  }
765  return row_list;
766 }
767 
768 
769 std::vector<QwErrDBInterface> QwBPMCavity::GetErrDBEntry()
770 {
771  std::vector <QwErrDBInterface> row_list;
772  row_list.clear();
773  for(size_t i=0;i<2;i++) {
774  fRelPos[i].AddErrEntriesToList(row_list);
775  fAbsPos[i].AddErrEntriesToList(row_list);
776  }
778  return row_list;
779 }
780 
781 
782 /**********************************
783  * Mock data generation routines
784  **********************************/
785 
786 void QwBPMCavity::SetRandomEventParameters(Double_t meanX, Double_t sigmaX, Double_t meanY, Double_t sigmaY)
787 {
788  // Average values of the signals in the stripline ADCs
789  //Double_t sumX = 1.1e8; // These are just guesses, but I made X and Y different
790  //Double_t sumY = 0.9e8; // to make it more interesting for the analyzer...
791 
792  // Rotate the requested position if necessary (this is not tested yet)
793  /* if (bRotated) {
794  Double_t rotated_meanX = (meanX + meanY) / kRotationCorrection;
795  Double_t rotated_meanY = (meanX - meanY) / kRotationCorrection;
796  meanX = rotated_meanX;
797  meanY = rotated_meanY;
798  }*/
799 
800  // Determine the asymmetry from the position
801  //Double_t meanXP = (1.0 + meanX / kQwCavityCalibration) * sumX / 2.0;
802  //Double_t meanXM = (1.0 - meanX / kQwCavityCalibration) * sumX / 2.0; // = sumX - meanXP;
803  //Double_t meanYP = (1.0 + meanY / kQwCavityCalibration) * sumY / 2.0;
804  //Double_t meanYM = (1.0 - meanY / kQwCavityCalibration) * sumY / 2.0; // = sumY - meanYP;
805 
806  // Determine the spread of the asymmetry (this is not tested yet)
807  // (negative sigma should work in the QwVQWK_Channel, but still using fabs)
808  //Double_t sigmaXP = fabs(sumX * sigmaX / meanX);
809  //Double_t sigmaXM = sigmaXP;
810  //Double_t sigmaYP = fabs(sumY * sigmaY / meanY);
811  //Double_t sigmaYM = sigmaYP;
812 
813  // Propagate these parameters to the ADCs
814  //fWire[0].SetRandomEventParameters(meanXP, sigmaXM);
815  //fWire[1].SetRandomEventParameters(meanXM, sigmaYM);
816  //fWire[2].SetRandomEventParameters(meanYP, sigmaYP);
817 }
818 
819 
820 void QwBPMCavity::RandomizeEventData(int helicity, double time)
821 {
822  for (Short_t i=0; i<2; i++) fWire[i].RandomizeEventData(helicity, time);
823 
824  return;
825 }
826 
827 
828 void QwBPMCavity::SetEventData(Double_t* relpos, UInt_t sequencenumber)
829 {
830  for (Short_t i=0; i<2; i++)
831  {
832  fRelPos[i].SetHardwareSum(relpos[i], sequencenumber);
833  }
834 
835  return;
836 }
837 
838 
839 void QwBPMCavity::EncodeEventData(std::vector<UInt_t> &buffer)
840 {
841  for (Short_t i=0; i<2; i++) fWire[i].EncodeEventData(buffer);
842 }
843 
844 
845 void QwBPMCavity::SetDefaultSampleSize(Int_t sample_size)
846 {
847  for(Short_t i=0;i<2;i++) fWire[i].SetDefaultSampleSize((size_t)sample_size);
848  return;
849 }
850 
851 
852 void QwBPMCavity::SetSubElementPedestal(Int_t j, Double_t value)
853 {
854  fWire[j].SetPedestal(value);
855  return;
856 }
857 
858 void QwBPMCavity::SetSubElementCalibrationFactor(Int_t j, Double_t value)
859 {
860  fWire[j].SetCalibrationFactor(value);
861  return;
862 }
863 
static const TString subelement[3]
Definition: QwBPMCavity.h:145
UInt_t UpdateErrorFlag()
Update the error flag based on the error flags of internally contained objects Return paramter is the...
#define QwMessage
Predefined log drain for regular messages.
Definition: QwLog.h:50
Int_t ProcessEvBuffer(UInt_t *buffer, UInt_t num_words_left, UInt_t index=0)
Decode the event data from a CODA buffer.
void ProcessEvent()
Process the event data according to pedestal and calibration factor.
VQwBPM & operator=(const VQwBPM &value)
Definition: QwBPMCavity.cc:438
size_t GetNumberOfSamples() const
UInt_t GetEventcutErrorFlag()
return the error flag on this channel/device
Definition: QwBPMCavity.cc:131
Int_t ApplyHWChecks()
void SetRootSaveStatus(TString &prefix)
Definition: VQwBPM.cc:178
static const Bool_t bDEBUG
Definition: VQwBPM.h:275
void DeaccumulateRunningSum(const QwVQWK_Channel &value)
void Ratio(const QwVQWK_Channel &numer, const QwVQWK_Channel &denom)
void ConstructBranch(TTree *tree, TString &prefix)
Definition: QwBPMCavity.cc:642
void ConstructBranchAndVector(TTree *tree, TString &prefix, std::vector< Double_t > &values)
void ClearEventData()
Clear the event data in this element.
Definition: QwBPMCavity.cc:74
QwVQWK_Channel fAbsPos[2]
Definition: QwBPMCavity.h:156
void PrintInfo() const
Print multiple lines of information about this data element.
void SetPedestal(Double_t ped)
void GetAbsolutePosition()
Definition: QwBPMCavity.cc:425
void RandomizeEventData(int helicity=0, double time=0.0)
Definition: QwBPMCavity.cc:820
void SetSubElementCalibrationFactor(Int_t j, Double_t value)
Definition: QwBPMCavity.cc:858
static const double e
Definition: QwUnits.h:91
VQwBPM & operator+=(const VQwBPM &value)
Definition: QwBPMCavity.cc:478
Double_t fPositionCenter[3]
Definition: VQwBPM.h:256
void SetEventCutMode(Int_t bcuts)
void Scale(Double_t Offset)
static UInt_t GetSubElementIndex(TString subname)
Definition: QwBPMCavity.cc:412
void SetRandomEventParameters(Double_t meanX, Double_t sigmaX, Double_t meanY, Double_t sigmaY)
Definition: QwBPMCavity.cc:786
void AccumulateRunningSum(const VQwBPM &value)
Definition: QwBPMCavity.cc:546
void ConstructBranch(TTree *tree, TString &prefix)
std::vector< QwDBInterface > GetDBEntry()
Definition: QwBPMCavity.cc:756
void MakeBPMCavityList()
Definition: QwBPMCavity.cc:743
static const TString kAxisLabel[2]
Definition: VQwBPM.h:239
static const UInt_t kInvalidSubelementIndex
Definition: QwTypes.h:191
void EncodeEventData(std::vector< UInt_t > &buffer)
Definition: QwBPMCavity.cc:839
virtual UInt_t GetErrorCode() const
TString GetSubElementName(Int_t subindex)
Definition: QwBPMCavity.cc:400
Bool_t bRotated
Definition: QwBPMCavity.h:150
void CalculateRunningAverage()
Definition: QwBPMCavity.cc:536
void SetEventData(Double_t *block, UInt_t sequencenumber)
Definition: QwBPMCavity.cc:828
void SetHardwareSum(Double_t hwsum, UInt_t sequencenumber=0)
VQwBPM & operator-=(const VQwBPM &value)
Definition: QwBPMCavity.cc:502
void InitializeChannel(TString name)
Definition: QwBPMCavity.cc:24
static const Double_t kQwCavityCalibration
Definition: QwBPMCavity.h:142
void ConstructHistograms(TDirectory *folder, TString &prefix)
Construct the histograms for this data element.
Bool_t bFullSave
Definition: VQwBPM.h:273
void PrintInfo() const
Print multiple lines of information about this data element.
Definition: QwBPMCavity.cc:388
Bool_t HasValue(TString &vname)
void ProcessEvent()
Definition: QwBPMCavity.cc:325
virtual UInt_t GetEventcutErrorFlag()
return the error flag on this channel/device
void SetCalibrationFactor(Double_t factor)
void PrintValue() const
Print single line of value and error of this data element.
static const Double_t kRotationCorrection
Definition: QwBPMCavity.h:144
VQwHardwareChannel * GetSubelementByName(TString ch_name)
Definition: QwBPMCavity.cc:216
void AddEntriesToList(std::vector< QwDBInterface > &row_list)
void SetSubElementPedestal(Int_t j, Double_t value)
Definition: QwBPMCavity.cc:852
void ClearEventData()
Clear the event data in this element.
void PrintErrorCounters() const
report number of events failed due to HW and event cut failure
Definition: QwBPMCavity.cc:119
void DeaccumulateRunningSum(VQwBPM &value)
Definition: QwBPMCavity.cc:561
Bool_t ApplySingleEventCuts(Double_t LL, Double_t UL)
void ConstructBranchAndVector(TTree *tree, TString &prefix, std::vector< Double_t > &values)
Definition: QwBPMCavity.cc:618
QwVQWK_Channel fEffectiveCharge
Definition: QwBPMCavity.h:157
void Scale(Double_t factor)
Definition: QwBPMCavity.cc:523
void FillTreeVector(std::vector< Double_t > &values) const
QwVQWK_Channel fRelPos[2]
Definition: QwBPMCavity.h:152
void InitializeChannel(TString name)
Definition: VQwBPM.cc:25
Int_t ProcessEvBuffer(UInt_t *buffer, UInt_t word_position_in_buffer, UInt_t indexnumber)
Process the CODA event buffer for this element.
Definition: QwBPMCavity.cc:358
void FillHistograms()
Fill the histograms for this data element.
Definition: QwBPMCavity.cc:600
void PrintErrorCounters() const
report number of events failed due to HW and event cut failure
void PrintValue() const
Print single line of value and error of this data element.
Definition: QwBPMCavity.cc:378
void FillHistograms()
Fill the histograms for this data element.
void IncrementErrorCounters()
Definition: QwBPMCavity.cc:107
static std::ostream & endl(std::ostream &)
End of the line.
Definition: QwLog.cc:299
UInt_t UpdateErrorFlag()
Update the error flag based on the error flags of internally contained objects Return paramter is the...
Definition: QwBPMCavity.cc:145
Definition: VQwBPM.h:34
void FillTreeVector(std::vector< Double_t > &values) const
Definition: QwBPMCavity.cc:713
virtual const TString & GetElementName() const
Get the name of this element.
void ConstructHistograms(TDirectory *folder, TString &prefix)
Construct the histograms for this data element.
Definition: QwBPMCavity.cc:578
void Ratio(QwBPMCavity &numer, QwBPMCavity &denom)
Definition: QwBPMCavity.cc:511
void SetDefaultSampleSize(Int_t sample_size)
Definition: QwBPMCavity.cc:845
size_t GetSequenceNumber() const
std::vector< QwVQWK_Channel > fBPMElementList
Definition: QwBPMCavity.h:163
std::vector< QwErrDBInterface > GetErrDBEntry()
Definition: QwBPMCavity.cc:769
Bool_t ApplySingleEventCuts()
Definition: QwBPMCavity.cc:165
void SetEventCutMode(Int_t bcuts)
Inherited from VQwDataElement to set the upper and lower limits (fULimit and fLLimit), stability % and the error flag on this channel.
Definition: QwBPMCavity.cc:730
virtual VQwBPM & operator=(const VQwBPM &value)=0
Definition: VQwBPM.cc:115
void InitializeChannel(TString name, TString datatosave)
Initialize the fields in this object.
void AddChannelOffset(Double_t Offset)
void AddErrEntriesToList(std::vector< QwErrDBInterface > &row_list)
void IncrementErrorCounters()
void CalculateRunningAverage()
QwVQWK_Channel fWire[2]
Definition: QwBPMCavity.h:151
void AccumulateRunningSum(const QwVQWK_Channel &value)
Bool_t ApplyHWChecks()
Definition: QwBPMCavity.cc:89