QwAnalysis
QwBeamMod.cc
Go to the documentation of this file.
1 /**********************************************************\
2 * File: QwBeamMod.cc *
3 * *
4 * Author: Joshua Hoskins *
5 * Time-stamp: 052510 *
6 \**********************************************************/
7 
8 #include "QwBeamMod.h"
9 
10 // System headers
11 #include <iostream>
12 #include <stdexcept>
13 
14 // Qweak headers
15 #include "QwLog.h"
16 #include "QwParameterFile.h"
17 #include "QwHistogramHelper.h"
18 #define MYSQLPP_SSQLS_NO_STATICS
19 #include "QwParitySSQLS.h"
20 #include "QwParityDB.h"
21 
22 // Root plotting headers
23 #include "TCanvas.h"
24 #include "TF1.h"
25 #include "TMath.h"
26 
27 // Register this subsystem with the factory
29 
30 
31 //*****************************************************************
33  //Handle command line options
34 }
35 
36 Int_t QwBeamMod::LoadChannelMap(TString mapfile)
37 {
38  Bool_t ldebug=kFALSE;
39 
40  Int_t currentrocread=0;
41  Int_t currentbankread=0;
42  Int_t wordsofar=0;
43  Int_t currentsubbankindex=-1;
44  Int_t sample_size=0;
45 
46  TString varname, varvalue;
47 
48  // Open the file
49  QwParameterFile mapstr(mapfile.Data());
50  fDetectorMaps.insert(mapstr.GetParamFileNameContents());
51  mapstr.EnableGreediness();
52  mapstr.SetCommentChars("!");
53  while (mapstr.ReadNextLine() && mapstr.SkipSection("Monitors"))
54  {
55  UInt_t value = 0;
56  if (mapstr.PopValue("roc",value)) {
57  currentrocread = value;
58  RegisterROCNumber(value,0);
59  fWordsPerSubbank.push_back( std::pair<Int_t, Int_t>(fWord.size(),fWord.size()));
60  }
61  if (mapstr.PopValue("bank",value)) {
62  currentbankread = value;
63  RegisterSubbank(value);
64  fWordsPerSubbank.push_back( std::pair<Int_t, Int_t>(fWord.size(),fWord.size()));
65  // std::cout<<"bank " << currentbankread <<std::endl;
66  }
67  if (mapstr.PopValue("sample_size",value)) {
68  sample_size = value;
69  }
70 
71  if (mapstr.HasVariablePair("=",varname,varvalue))
72  {
73  // This is a declaration line. Decode it.
74  varname.ToLower();
75  QwWarning << "QwBeamMod::LoadChannelMap: Unrecognized declaration "
76  << varname << " = " << varvalue << QwLog::endl;
77 
78  } else {
79  Bool_t lineok=kTRUE;
80  // Break this line into tokens to process it.
81  TString modtype = mapstr.GetTypedNextToken<TString>(); // module type
82  /* Int_t modnum = */ mapstr.GetTypedNextToken<Int_t>(); //slot number
83  /* Int_t channum = */ mapstr.GetTypedNextToken<Int_t>(); //channel number
84  // TString dettype = mapstr.GetTypedNextToken<TString>(); //type-purpose of the detector
85  // dettype.ToLower();
86  TString namech = mapstr.GetTypedNextToken<TString>(); //name of the detector
87  namech.ToLower();
88  TString keyword = mapstr.GetTypedNextToken<TString>();
89  keyword.ToLower();
90 
91 
92  if (currentsubbankindex != GetSubbankIndex(currentrocread,currentbankread))
93  {
94  currentsubbankindex = GetSubbankIndex(currentrocread,currentbankread);
95  wordsofar = 0;
96  }
97 
98 
99  QwModChannelID localModChannelID(currentsubbankindex, wordsofar,namech, modtype, this);
100 
101 
102  if(modtype=="VQWK")
103  {
104  wordsofar+=6;
105 
106  if (lineok){
107  QwVQWK_Channel localchan;
108  localchan.InitializeChannel(GetSubsystemName(),"QwBeamMod",localModChannelID.fmodulename,"raw");
109  fModChannel.push_back(localchan);
110  fModChannel[fModChannel.size()-1].SetDefaultSampleSize(sample_size);
111  localModChannelID.fIndex=fModChannel.size()-1;
112  fModChannelID.push_back(localModChannelID);
113 
114  // Store reference to ramp channel
115  if (localModChannelID.fmodulename == "ramp") {
116  fRampChannelIndex = fModChannel.size() - 1;
117  }
118  }
119 
120  if(ldebug)
121  {
122  localModChannelID.Print();
123  std::cout<<"line ok=";
124  if(lineok) std::cout<<"TRUE"<<std::endl;
125  else std::cout<<"FALSE"<<std::endl;
126  }
127  }
128 
129 
130  if(modtype == "WORD")
131  {
132  // std::cout << "Decoding QwWord :: " << namech << std::endl;
133 
134 
135  QwWord localword;
136  localword.fSubbankIndex=currentsubbankindex;
137  localword.fWordInSubbank=wordsofar;
138  wordsofar+=1;
139  // I assume that one data = one word here. But it is not always the case, for
140  // example the triumf adc gives 6 words per channel
141  localword.fModuleType=modtype;
142  localword.fWordName=namech;
143  //localword.fWordType=dettype; // FIXME dettype is undefined so commented this out
144  fWord.push_back(localword);
145 
146  // Store reference to pattern number
147  if (localword.fWordName == "bm_pattern_number") {
148  fPatternWordIndex = fWord.size() - 1;
149  }
150 
151  if(namech=="ffb_status")//save the location of this word to access this later
152  fFFB_Index=fWord.size()-1;
153 
154 
155  fWordsPerSubbank[currentsubbankindex].second = fWord.size();
156  QwDebug << "--" << namech << "--" << fWord.size()-1 << QwLog::endl;
157 
158  }
159  }
160  }
161  if(ldebug)
162  {
163  std::cout<<"Done with Load map channel \n";
164  for(size_t i=0;i<fModChannelID.size();i++)
165  fModChannelID[i].Print();
166 
167  for(size_t i=0;i<fWord.size();i++)
168  fWord[i].PrintID();
169  }
170 
171  // Now load the variables to monitor
172  mapstr.RewindToFileStart();
173  while (QwParameterFile *section = mapstr.ReadNextSection(varvalue)) {
174  if (varvalue == "Monitors") {
175  fMonitorNames.clear();
176  while (section->ReadNextLine()) {
177  section->TrimComment(); // Remove everything after a comment character
178  section->TrimWhitespace(); // Get rid of leading and trailing spaces
179  varvalue = section->GetTypedNextToken<TString>();
180  if (varvalue.Length() > 0) {
181  // Add names of monitor channels for each degree of freedom
182  //
183  //
184  // Consider whether or not the input monitor is a bpm or not. This should
185  // allow for usage of monitors other than bpms, .eg bcm{1,2}, lumi, pmtonl,..ect.
186  //
187 
188  if(varvalue.Contains("qwk_bpm", TString::kExact)){
189  fMonitorNames.push_back(Form("%sX",varvalue.Data()));
190  fMonitorNames.push_back(Form("%sY",varvalue.Data()));
191  }
192  else if(varvalue.Contains("target", TString::kExact)){
193  fMonitorNames.push_back(Form("%sX",varvalue.Data()));
194  fMonitorNames.push_back(Form("%sY",varvalue.Data()));
195  }
196  else{
197  fMonitorNames.push_back(varvalue);
198  }
199  }
200  }
201  }
202  delete section;
203  }
204  // Resize local version of the BPMs
205  QwVQWK_Channel dummy("dummy");
206  fMonitors.resize(fMonitorNames.size(),dummy);
208 
209  // Debug output
210  if (ldebug) {
211  QwMessage << "Done with loading monitor channels:" << QwLog::endl;
212  for (size_t i = 0; i < fMonitorNames.size(); i++)
213  QwMessage << fMonitorNames[i] << QwLog::endl;
214  }
215 
216  return 0;
217 }
218 
219 
220 
221 QwModChannelID::QwModChannelID(Int_t subbankid, Int_t wordssofar,
222  TString name, TString modtype, QwBeamMod * obj):
223  fSubbankIndex(subbankid),fWordInSubbank(wordssofar),
224  fmoduletype(modtype),fmodulename(name),kUnknownDeviceType(-1)
225 {
227  // for(size_t i=0;i<obj->fgModTypeNames.size();i++){
228  // if(dettype == obj->fgModTypeNames[i]){
229  // fTypeID = EBeamInstrumentType(i);
230  // std::cout << "Detector type not recognized" << std::endl;
231  // break;
232  // }
233  // }
234 // if (fTypeID == kUnknownDeviceType) {
235 // std::cerr << "QwModChannelID::QwModChannelID: Unknown detector type: "
236 // << dettype <<", the detector "<<name<<" will not be decoded "
237 // << std::endl;
238 // }
239 }
240 
241 
242 //*****************************************************************
243 
244 Int_t QwBeamMod::LoadEventCuts(TString filename)
245 {
246  Int_t eventcut_flag = 1;
247 
248  // Open the file
249  QwParameterFile mapstr(filename.Data());
250  fDetectorMaps.insert(mapstr.GetParamFileNameContents());
251  fFFB_holdoff=0;//Default holdoff for the FFB pause
252  while (mapstr.ReadNextLine()){
253  //std::cout<<"********* In the loop *************"<<std::endl;
254  mapstr.TrimComment('!'); // Remove everything after a '!' character.
255  mapstr.TrimWhitespace(); // Get rid of leading and trailing spaces.
256  if (mapstr.LineIsEmpty()) continue;
257 
258  TString varname, varvalue;
259  if (mapstr.HasVariablePair("=",varname,varvalue)){
260  if (varname == "EVENTCUTS"){
261  eventcut_flag = QwParameterFile::GetUInt(varvalue);
262  //std::cout<<"EVENT CUT FLAG "<<eventcut_flag<<std::endl;
263  }
264  }
265  else{
266  TString device_type = mapstr.GetTypedNextToken<TString>();
267  device_type.ToLower();
268  TString device_name = mapstr.GetTypedNextToken<TString>();
269  device_name.ToLower();
270 
271 
272  if (device_type == "vqwk"){
273 
274  Double_t LLX = mapstr.GetTypedNextToken<Double_t>(); //lower limit for BCM value
275  Double_t ULX = mapstr.GetTypedNextToken<Double_t>(); //upper limit for BCM value
276  varvalue = mapstr.GetTypedNextToken<TString>();//global/loacal
277  varvalue.ToLower();
278  Double_t stabilitycut = mapstr.GetTypedNextToken<Double_t>();
279  QwMessage<<"QwBeamMod Error Code "<<GetGlobalErrorFlag(varvalue,eventcut_flag,stabilitycut)<<QwLog::endl;
280  Int_t det_index=GetDetectorIndex(GetDetectorTypeID(kQwUnknownDeviceType),device_name);
281  QwMessage << "*****************************" << QwLog::endl;
282  QwMessage << " Type " << device_type << " Name " << device_name << " Index [" << det_index << "] "
283  << " device flag " << eventcut_flag << QwLog::endl;
284  fModChannel[det_index].SetSingleEventCuts((GetGlobalErrorFlag(varvalue,eventcut_flag,stabilitycut)|kBModErrorFlag),LLX,ULX,stabilitycut);
285  QwMessage << "*****************************" << QwLog::endl;
286 
287  }
288  else if (device_type == "word" && device_name== "ffb_status"){
289  fFFB_holdoff=mapstr.GetTypedNextToken<UInt_t>();//Read the FFB OFF interval
290  }
291 
292  }
293 
294  }
295  //update the event cut ON/OFF for all the devices
296  //std::cout<<"EVENT CUT FLAG"<<eventcut_flag<<std::endl;
297  for (size_t i=0;i<fModChannel.size();i++)
298  fModChannel[i].SetEventCutMode(eventcut_flag);
299 
300  return 0;
301 }
302 
303 
304 //*****************************************************************
305 Int_t QwBeamMod::LoadInputParameters(TString pedestalfile)
306 {
307  Bool_t ldebug=kFALSE;
308  TString varname;
309 
310  Int_t lineread=1;
311 
312  if(ldebug)std::cout<<"QwBeamMod::LoadInputParameters("<< pedestalfile<<")\n";
313 
314  QwParameterFile mapstr(pedestalfile.Data()); //Open the file
315  while (mapstr.ReadNextLine())
316  {
317  lineread+=1;
318  if(ldebug)std::cout<<" line read so far ="<<lineread<<"\n";
319  mapstr.TrimComment('!'); // Remove everything after a '!' character.
320  mapstr.TrimWhitespace(); // Get rid of leading and trailing spaces.
321  if (mapstr.LineIsEmpty()) continue;
322  else
323  {
324  TString varname = mapstr.GetTypedNextToken<TString>(); //name of the channel
325  varname.ToLower();
326  varname.Remove(TString::kBoth,' ');
327  Double_t varped = mapstr.GetTypedNextToken<Double_t>(); // value of the pedestal
328  Double_t varcal = mapstr.GetTypedNextToken<Double_t>(); // value of the calibration factor
329  /* Double_t varweight = */ mapstr.GetTypedNextToken<Double_t>(); // value of the statistical weight
330 
331  //if(ldebug) std::cout<<"inputs for channel "<<varname
332  // <<": ped="<<varped<<": cal="<<varcal<<": weight="<<varweight<<"\n";
333  for(size_t i=0;i<fModChannel.size();i++)
334  if(fModChannel[i].GetElementName()==varname)
335  {
336  fModChannel[i].SetPedestal(varped);
337  fModChannel[i].SetCalibrationFactor(varcal);
338  break;
339  }
340  }
341 
342  }
343  if(ldebug) std::cout<<" line read in the pedestal + cal file ="<<lineread<<" \n";
344 
345  ldebug=kFALSE;
346  return 0;
347 }
348 
349 
350 Int_t QwBeamMod::ProcessEvBuffer(const UInt_t roc_id, const UInt_t bank_id, UInt_t* buffer, UInt_t num_words)
351 {
352  Bool_t lkDEBUG=kFALSE;
353 
354  Int_t index = GetSubbankIndex(roc_id,bank_id);
355 
356  if (index>=0 && num_words>0){
357  // We want to process this ROC. Begin looping through the data.
358  if (lkDEBUG)
359  QwMessage << "QwBeamMod::ProcessEvBuffer: "
360  << "Begin processing ROC" << roc_id
361  << " and subbank "<<bank_id
362  << " number of words="<<num_words<<QwLog::endl;
363  if (buffer[0]==0xf0f0f0f0 && num_words%2==1){
364  buffer++;
365  if (lkDEBUG)
366  QwMessage << "QwBeamMod::ProcessEvBuffer: "
367  << "Skipped padding word 0xf0f0f0f0 at beginning of buffer."
368  << QwLog::endl;
369  }
370 
371  for(size_t i=0;i<fModChannelID.size();i++)
372  {
373  if(fModChannelID[i].fSubbankIndex==index)
374  {
375 
376  if (lkDEBUG)
377  {
378  std::cout<<"found modulation data for "<<fModChannelID[i].fmodulename<<std::endl;
379  std::cout<<"word left to read in this buffer:"<<num_words-fModChannelID[i].fWordInSubbank<<std::endl;
380  }
381  fModChannel[fModChannelID[i].fIndex]. // Instead of BCM this will become our data word.If we use detectorID we need to add a specific ID
382  ProcessEvBuffer(&(buffer[fModChannelID[i].fWordInSubbank]),
383  num_words-fModChannelID[i].fWordInSubbank);
384 
385  }
386  }
387 
388  for(Int_t i=fWordsPerSubbank[index].first; i<fWordsPerSubbank[index].second; i++) {
389  if(fWord[i].fWordInSubbank+1<= (Int_t) num_words) {
390  fWord[i].fValue=buffer[fWord[i].fWordInSubbank];
391  } else {
392  QwWarning << "QwBeamMod::ProcessEvBuffer: There is not enough word in the buffer to read data for "
393  << fWord[i].fWordName << QwLog::endl;
394  QwWarning << "QwBeamMod::ProcessEvBuffer: Words in this buffer:" << num_words
395  << " trying to read word number =" << fWord[i].fWordInSubbank << QwLog::endl;
396  }
397  }
398  if(lkDEBUG) {
399  QwDebug << "QwBeamMod::ProcessEvBuffer: Done with Processing this event" << QwLog::endl;
400  for(size_t i=0;i<fWord.size();i++) {
401  std::cout << " word number = " << i << " ";
402  fWord[i].Print();
403  }
404  }
405 
406  }
407  lkDEBUG=kFALSE;
408 
409  SetDataLoaded(kTRUE);
410 
411  return 0;
412 }
413 
415 
416  Bool_t test_Mod=kTRUE;
417  Bool_t test_BCM1=kTRUE;
418 
419 
420  for(size_t i=0;i<fModChannel.size();i++){
421  //std::cout<<" BCM ["<<i<<"] "<<std::endl;
422  test_BCM1 = fModChannel[i].ApplySingleEventCuts();
423  test_Mod &= test_BCM1;
424  if(!test_BCM1 && bDEBUG) std::cout<<"******* QwBeamMod::SingleEventCuts()->BCM[ "<<i<<" , "<<fModChannel[i].GetElementName()<<" ] ******\n";
425  }
426 
427  if (fWord[fFFB_Index].fValue==8 && fFFB_Flag && fFFB_holdoff_Counter==0){
429  fFFB_Flag=kFALSE;
430 
431  }
435  if(fFFB_holdoff_Counter==0)
436  fFFB_Flag=kTRUE;
437  }else
438  fFFB_ErrorFlag=0;
439 
440 
441 
442  return test_Mod;
443 
444 }
445 
447 {
448  for(size_t i=0;i<fModChannel.size();i++){
449  fModChannel[i].IncrementErrorCounters();
450  }
451 }
452 
453 void QwBeamMod::PrintErrorCounters() const{//inherited from the VQwSubsystemParity; this will display the error summary
454 
455  std::cout<<"*********QwBeamMod Error Summary****************"<<std::endl;
457  for(size_t i=0;i<fModChannel.size();i++){
458  fModChannel[i].PrintErrorCounters();
459  }
461 }
462 
464 {
465  const QwBeamMod* input = dynamic_cast<const QwBeamMod*> (ev_error);
466 
467  for(size_t i=0;i<fModChannel.size();i++){
468  fModChannel[i].UpdateErrorFlag(input->fModChannel[i]);
469  }
470 }
471 
472 UInt_t QwBeamMod::GetEventcutErrorFlag(){//return the error flag
473  UInt_t ErrorFlag;
474  ErrorFlag=0;
475  for(size_t i=0;i<fModChannel.size();i++){
476  ErrorFlag |= fModChannel[i].GetEventcutErrorFlag();
477  }
478  ErrorFlag |= fFFB_ErrorFlag;
479  return ErrorFlag;
480 
481 }
482 
483 
484 
486 {
487  for (size_t i = 0; i < fModChannel.size(); i++) {
488  // First apply HW checks and update HW error flags.
489  fModChannel[i].ApplyHWChecks();
490  fModChannel[i].ProcessEvent();
491  }
492 }
493 
495 {
496  // Make sure sizes are equal
497  if (fMonitorNames.size() != fMonitors.size())
498  QwError << "QwBeamMod: Sizes of fBPMnames and fBPMs do not match!" << QwLog::endl;
499  // Loop over BPMs
500  for (size_t bpm = 0; bpm < fMonitorNames.size(); bpm++) {
501  // Get references to external values
502  if (! RequestExternalValue(fMonitorNames[bpm],&fMonitors[bpm]))
503  QwError << "QwBeamMod: RequestExternalValue for " << fMonitorNames[bpm]
504  << " failed!" << QwLog::endl;
505  }
506 }
507 
509 {
510  // Fill histograms here to bypass event cuts
511  FillHistograms();
512 }
513 
514 Int_t QwBeamMod::ProcessConfigurationBuffer(const UInt_t roc_id, const UInt_t bank_id, UInt_t* buffer, UInt_t num_words)
515 {
516  return 0;
517 }
518 
519 //*****************************************************************
520 
522 {
523  for(size_t i=0;i<fModChannel.size();i++)
525 
526  for (size_t i=0;i<fWord.size();i++)
527  fWord[i].ClearEventData();
528 }
529 
530 //*****************************************************************
531 Int_t QwBeamMod::GetDetectorTypeID(TString name)
532 {
533  Int_t result=-1;
534  for(size_t i=0;i<fgModTypeNames.size();i++)
535  if(name==fgModTypeNames[i])
536  {result=i;i=fgModTypeNames.size()+1;}
537  return result;
538 }
539 
540 //*****************************************************************
541 Int_t QwBeamMod::GetDetectorIndex(Int_t type_id, TString name)
542 {
543  Bool_t ldebug=kFALSE;
544  if(ldebug)
545  {
546  std::cout<<"QwBeamMod::GetDetectorIndex\n";
547  std::cout<<"type_id=="<<type_id<<" name="<<name<<"\n";
548  std::cout<<fModChannelID.size()<<" already registered detector\n";
549  }
550 
551  Int_t result=-1;
552  for(size_t i=0;i<fModChannelID.size();i++)
553  {
554 
555  if(fModChannelID[i].fmodulename==name)
556  result=fModChannelID[i].fIndex;
557  if(ldebug)
558  {
559  std::cout<<"testing against ("<<fModChannelID[i].fTypeID
560  <<","<<fModChannelID[i].fmodulename<<")=>"<<result<<"\n";
561  }
562  }
563 
564  return result;
565 }
566 //*****************************************************************
568 {
569  // std::cout<<" here in QwBeamMod::operator= \n";
570  if(Compare(value))
571  {
572 
573  QwBeamMod* input = dynamic_cast<QwBeamMod*>(value);
574 
575  for(size_t i=0;i<input->fModChannel.size();i++)
576  this->fModChannel[i]=input->fModChannel[i];
577  for(size_t i=0;i<input->fWord.size();i++)
578  this->fWord[i].fValue=input->fWord[i].fValue;
579  this->fFFB_ErrorFlag=input->fFFB_ErrorFlag;
580  }
581  return *this;
582 }
583 
585 {
586  if(Compare(value))
587  {
588  //QwBeamMod* input= (QwBeamMod*)value ;
589  QwBeamMod* input = dynamic_cast<QwBeamMod*>(value);
590 
591  for(size_t i=0;i<input->fModChannel.size();i++)
592  this->fModChannel[i]+=input->fModChannel[i];
593 // for(size_t i=0;i<input->fWord.size();i++)
594 // this->fWord[i]+=input->fWord[i];
595  this->fFFB_ErrorFlag |= input->fFFB_ErrorFlag;
596  }
597  return *this;
598 }
599 
601 {
602 
603  if(Compare(value))
604  {
605  //QwBeamMod* input= (QwBeamMod*)value;
606  QwBeamMod* input = dynamic_cast<QwBeamMod*>(value);
607 
608  for(size_t i=0;i<input->fModChannel.size();i++)
609  this->fModChannel[i]-=input->fModChannel[i];
610 // for(size_t i=0;i<input->fWord.size();i++)
611 // this->fWord[i]-=input->fWord[i];
612  this->fFFB_ErrorFlag |= input->fFFB_ErrorFlag;
613 
614  }
615  return *this;
616 }
617 
619 {
620  if(Compare(value1)&&Compare(value2))
621  {
622  *this = value1;
623  *this += value2;
624  }
625 }
626 
628 {
629  if(Compare(value1)&&Compare(value2))
630  {
631  *this = value1;
632  *this -= value2;
633  }
634 }
635 
637 {
638  if(Compare(numer)&&Compare(denom))
639  {
640  //QwBeamMod* innumer= (QwBeamMod*)numer ;
641  QwBeamMod* innumer = dynamic_cast<QwBeamMod*>(numer);
642  //QwBeamMod* indenom= (QwBeamMod*)denom ;
643  QwBeamMod* indenom = dynamic_cast<QwBeamMod*>(denom);
644 
645  for(size_t i=0;i<innumer->fModChannel.size();i++)
646  this->fModChannel[i].Ratio(innumer->fModChannel[i],indenom->fModChannel[i]);
647  for(size_t i=0;i<innumer->fWord.size();i++)
648  this->fWord[i].fValue=innumer->fWord[i].fValue;
649 
650  }
651 }
652 
653 
654 void QwBeamMod::Scale(Double_t factor)
655 {
656  for(size_t i=0;i<fModChannel.size();i++)
657  fModChannel[i].Scale(factor);
658 }
659 
661 
663 
665 {
666  Bool_t res = kTRUE;
667  if(typeid(*value)!=typeid(*this))
668  {
669  res=kFALSE;
670  // std::cout<<" types are not ok \n";
671  // std::cout<<" this is bypassed just for now but should be fixed eventually \n";
672  }
673  else
674  {
675  QwBeamMod* input = dynamic_cast<QwBeamMod*>(value);
676 
677  if(input->fModChannel.size()!=fModChannel.size())
678  {
679  res=kFALSE;
680  // std::cout<<" not the same number of bcms \n";
681  }
682  }
683  return res;
684 }
685 
686 
687 //*****************************************************************
688 
689 void QwBeamMod::ConstructHistograms(TDirectory *folder, TString &prefix)
690 {
691  // Go to the specified folder
692  if (folder != NULL) folder->cd();
693 
694  // No histogram creation for asym, yield, diff, etc
695  if (prefix != "") return;
696 
697  TString basename;
698  for (size_t bpm = 0; bpm < fMonitorNames.size(); bpm++) {
699  // Find histogram with correct name
700  basename = TString("bmod_") + prefix + fMonitorNames[bpm];
701  fHistograms.push_back(gQwHists.Construct1DProf(basename + "_X"));
702  fHistograms.push_back(gQwHists.Construct1DProf(basename + "_Y"));
703  fHistograms.push_back(gQwHists.Construct1DProf(basename + "_E"));
704  fHistograms.push_back(gQwHists.Construct1DProf(basename + "_XP"));
705  fHistograms.push_back(gQwHists.Construct1DProf(basename + "_YP"));
706  }
707 
708  // Beam modulation correlations
709  for (size_t chan = 0; chan < fModChannel.size(); chan++) {
710  // Find histogram with correct name
711  basename = TString("bmod_") + prefix + fModChannel[chan].GetElementName();
712  fHistograms.push_back(gQwHists.Construct1DProf(basename + "_X"));
713  fHistograms.push_back(gQwHists.Construct1DProf(basename + "_Y"));
714  fHistograms.push_back(gQwHists.Construct1DProf(basename + "_E"));
715  fHistograms.push_back(gQwHists.Construct1DProf(basename + "_XP"));
716  fHistograms.push_back(gQwHists.Construct1DProf(basename + "_YP"));
717  }
718 
719  // Beam modulation channels
720  //for (size_t i = 0; i < fModChannel.size(); i++)
721  // fModChannel[i].ConstructHistograms(folder,prefix);
722 }
723 
725 {
726  // No data loaded
727  if (! HasDataLoaded()) return;
728 
729  // No histograms defined
730  if (fHistograms.size() == 0) return;
731 
732  // Beam modulation channels
733  //for (size_t i = 0; i < fModChannel.size(); i++)
734  // fModChannel[i].FillHistograms();
735 
736  // Do we have a ramp channel?
737  if (fRampChannelIndex < 0 || fRampChannelIndex > Int_t(fModChannel.size())) return;
738 
739  // Do we have a pattern word?
740  if (fPatternWordIndex < 0 || fPatternWordIndex > Int_t(fWord.size())) return;
741 
742  // Determine the ramp/phase
743  Double_t ramp = fModChannel[fRampChannelIndex].GetValue();
744  if (ramp < 0) return;
745 
746  // Determine the pattern number -- the pattern number for single coil is
747  // between [0, 4] so we need to check for this.
748  Int_t pattern = -1;
749 
750  if(fWord[fPatternWordIndex].fValue < 11 && fWord[fPatternWordIndex].fValue > 0)
751  pattern = fWord[fPatternWordIndex].fValue;
752  else
753  pattern = fWord[fPatternWordIndex].fValue - 11;
754 
755  if (pattern < 0 || pattern > 4) return;
756 
757  // Fill histograms for all BPMs and each of the modulation patterns
758  //
759  // Due to the the way the ADC averages the ramp signal we want to filter
760  // out events at the edged of the signal.
761  //
762  // Seperated the ramp cut here because it is ridiculously long...
763  //
764 
765  Double_t ramp_block_41 = fModChannel[fRampChannelIndex].GetValue(4) + fModChannel[fRampChannelIndex].GetValue(1);
766  Double_t ramp_block_32 = fModChannel[fRampChannelIndex].GetValue(3) + fModChannel[fRampChannelIndex].GetValue(2);
767  Double_t ramp_block = ramp_block_41 - ramp_block_32;
768 
769  // Require the difference between the block1/4 average and
770  // the block2/3 average to be within 5 degrees.
771  // In run 9636, the distribution of ramp_block has a sigma of 0.5 degrees.
772  if( ramp_block < 5.0 && ramp_block > -5.0 ){
773  for (size_t bpm = 0; bpm < fMonitors.size(); bpm++){
774  fHistograms[5 * bpm + pattern]->Fill(ramp,fMonitors[bpm].GetValue());
775  }
776 
777  // Beam modulation correlations
778  for (size_t chan = 0; chan < fModChannel.size(); chan++){
779  fHistograms[5 * (fMonitors.size() + chan) + pattern]->Fill(ramp,fModChannel[chan].GetValue());
780  }
781  }
782 }
783 
785 {
786 
788 
789 }
790 
792 {
793  fOffset.clear();
794  fAmplitude.clear();
795  fPhase.clear();
796  fOffsetError.clear();
797  fAmplitudeError.clear();
798  fPhaseError.clear();
799  fChisquare.clear();
800  fNFitPoints.clear();
801 
802 }
803 
805 {
806  fOffset.resize(size);
807  fAmplitude.resize(size);
808  fPhase.resize(size);
809  fOffsetError.resize(size);
810  fAmplitudeError.resize(size);
811  fPhaseError.resize(size);
812  fChisquare.resize(size);
813  fNFitPoints.resize(size);
814 
815  for(Int_t i = 0; i < size; i++){
816  fOffset[i].resize(fNumberPatterns);
817  fAmplitude[i].resize(fNumberPatterns);
818  fPhase[i].resize(fNumberPatterns);
819  fOffsetError[i].resize(fNumberPatterns);
820  fAmplitudeError[i].resize(fNumberPatterns);
821  fPhaseError[i].resize(fNumberPatterns);
822  fChisquare[i].resize(fNumberPatterns);
823  fNFitPoints[i].resize(fNumberPatterns);
824  }
825 }
826 
828 {
829  // How to get the run info:
830  // UInt_t runnum = this->GetParent()->GetCodaRunNumber();
831  // UInt_t segnum = this->GetParent()->GetCodaSegmentNumber();
832 
833  TF1 *sine = new TF1("sine", "[0] + [1]*sin(TMath::DegToRad()*x + [2])", 5, 350);
834 
835  TCanvas *canvas = new TCanvas("canvas", "canvas", 5);
836 
837  //Double_t mean; // unused
838  Double_t amplitude;
839  Double_t phase;
840 
842 
843  canvas->cd();
844  for(size_t bpm = 0; bpm < fMonitors.size(); bpm++){
845 
846  for(size_t pattern = 0; pattern < 5; pattern++){
847  // Only do the fits if there are more than three entries.
848  if (fHistograms[5*bpm + pattern]->GetEntries()>3){
849  sine->SetParameters(fHistograms[5*bpm + pattern]->GetMean(), 0.10, 0);
850  sine->SetLineColor(2);
851  sine->SetParLimits(2, 0, TMath::Pi()*2 );
852  fHistograms[5*bpm + pattern]->Fit("sine","R B");
853 
854  //mean = sine->GetParameter(0); // unused
855  amplitude = TMath::Abs(sine->GetParameter(1));
856  phase = sine->GetParameter(2) * TMath::RadToDeg();
857 
858  amplitude *= GetAmplitudeSign(sine->Derivative(10),
859  sine->Derivative2(10),
860  sine->Derivative3(10),
861  sine->GetParameter(0));
862 
863  if(phase >= 180){
864  phase -= 180;
865 // amplitude = -amplitude;
866  } else if (phase < 0){
867  phase += 180;
868 // amplitude = -amplitude;
869  }
870  fOffset[bpm][pattern] = sine->GetParameter(0);
871  fAmplitude[bpm][pattern] = amplitude;
872  fPhase[bpm][pattern] = phase;
873  fOffsetError[bpm][pattern] = sine->GetParError(0);
874  fAmplitudeError[bpm][pattern] = sine->GetParError(1);
875  fPhaseError[bpm][pattern] = sine->GetParError(2);
876  fChisquare[bpm][pattern] = sine->GetChisquare();
877  fNFitPoints[bpm][pattern] = sine->GetNumberFitPoints();
878  } else {
879  QwDebug << "QwBeamMod can't fit [" << bpm << "][" << pattern
880  << "] because there are only "
881  << fHistograms[5*bpm + pattern]->GetEntries()
882  << " entries, and we need at least 3."
883  << QwLog::endl;
884  // No events in this histogram. Zero-out the fit results
885  fOffset[bpm][pattern] = 0.0;
886  fAmplitude[bpm][pattern] = 0.0;
887  fPhase[bpm][pattern] = 0.0;
888  fOffsetError[bpm][pattern] = 0.0;
889  fAmplitudeError[bpm][pattern] = 0.0;
890  fPhaseError[bpm][pattern] = 0.0;
891  fChisquare[bpm][pattern] = 0.0;
892  fNFitPoints[bpm][pattern] = 0;
893  }
894  }
895  }
896  delete canvas;
897  delete sine;
898 }
899 
900 Double_t QwBeamMod::GetAmplitudeSign(Double_t d1, Double_t d2, Double_t d3, Double_t fmean)
901 {
902 
903  Double_t sign = 0.0;
904 
905  if(d1 > 0.0 && d2 < 0.0) sign = 1.0;
906  else if(d1 == 0.0 && fmean > 0.0) sign = 1.0;
907  else if(d1 < 0.0 && d2 < 0.0) sign = 1.0;
908 
909  else if(d1 < 0.0 && d3 < 0) sign = 1.0;
910 
911  else if(d1 < 0.0 && d2 > 0.0) sign = -1.0;
912  else if(d1 == 0.0 && fmean < 0.0) sign = -1.0;
913  else if(d1 > 0.0 && d2 > 0.0) sign = -1.0;
914 
915  else if(d1 < 0.0 && d3 > 0) sign = -1.0;
916 
917  else
918  sign = 1.0;
919 
920  return(sign);
921 
922 }
923 
924 void QwBeamMod::ConstructBranchAndVector(TTree *tree, TString & prefix, std::vector <Double_t> &values)
925 {
926  TString basename;
927 
928  for(size_t i = 0; i < fModChannel.size(); i++)
929  fModChannel[i].ConstructBranchAndVector(tree, prefix, values);
930 // for (size_t i=0;i<fWord.size();i++)
931 // fWord[i].ConstructBranchAndVector(tree, prefix, values);
932  fTreeArrayIndex = values.size();
933  for (size_t i=0; i<fWord.size(); i++)
934  {
935 // basename = fWord[i].fWordName;
936  basename = prefix+fWord[i].fWordName;
937  values.push_back(0.0);
938  tree->Branch(basename, &(values.back()), basename+"/D");
939  }
940 }
941 
942 void QwBeamMod::FillTreeVector(std::vector<Double_t> &values) const
943 {
944  size_t index = fTreeArrayIndex;
945 
946  for (size_t i = 0; i < fModChannel.size(); i++)
947  fModChannel[i].FillTreeVector(values);
948  for (size_t i = 0; i < fWord.size(); i++)
949  values[index++] = fWord[i].fValue;
950 }
951 
952 
953 //*****************************************************************
955 {
956  QwMessage << "Name of the subsystem =" << fSystemName << QwLog::endl;
957 
958  QwMessage << "there are " << fModChannel.size() << " mods" << QwLog::endl;
959 
960  QwMessage << " Printing Running AVG and other channel info for fModChannel" << QwLog::endl;
961  for(size_t i=0;i<fModChannel.size();i++)
962  fModChannel[i].PrintValue();
963  for(size_t i=0;i<fWord.size();i++)
964  fWord[i].Print();
965 }
966 
968 {
969  for (size_t i=0;i<fModChannelID.size();i++)
970  {
971  std::cout<<"============================="<<std::endl;
972  std::cout<<" Detector ID="<<i<<std::endl;
973  fModChannelID[i].Print();
974  }
975 }
976 
977 
979 {
980  QwMessage <<std::endl<<"Detector name= "<<fmodulename<<QwLog::endl;
981  QwMessage <<"SubbankkIndex= "<<fSubbankIndex<<QwLog::endl;
982  QwMessage <<"word index in subbank= "<<fWordInSubbank<<QwLog::endl;
983  QwMessage <<"module type= "<<fmoduletype<<QwLog::endl;
984 // QwMessage <<"detector type= "<<fdetectortype<<" that is index="<<fTypeID<<QwLog::endl;
985  QwMessage <<"Index of this detector in the vector of similar detector= "<<
986  fIndex << QwLog::endl;
987 //QwMessage <<"Subelement index= "<< fSubelement<<QwLog::endl;
988 
989 
990  QwMessage << "---------------------------------------------------" << QwLog::endl;
992 }
993 
994 //*****************************************************************
995 void QwBeamMod::FillDB_MPS(QwParityDB *db, TString datatype)
996 {
997  Bool_t local_print_flag = false;
998 
999  if(local_print_flag) {
1000  QwMessage << " --------------------------------------------------------------- " << QwLog::endl;
1001  QwMessage << " QwBeamMod::FillDB_MPS " << QwLog::endl;
1002  QwMessage << " --------------------------------------------------------------- " << QwLog::endl;
1003  }
1004 
1005  std::vector<QwParitySSQLS::beam_optics> entrylist;
1006 
1007  QwParitySSQLS::beam_optics row;
1008 
1009  UInt_t analysis_id = db->GetAnalysisID();
1010 
1011  for(size_t bpm = 0; bpm < fMonitors.size(); bpm++){
1012  for(size_t pattern = 0; pattern < 5; pattern++){
1013  // Explicitly zero the beam optics ID to ensure a non-sensical default
1014  // is not picked up.
1015  row.beam_optics_id = 0;
1016  row.analysis_id = analysis_id;
1017  row.monitor_id = db->GetMonitorID(fMonitorNames[bpm].Data());
1018  row.modulation_type_id = pattern;
1019  row.n = fNFitPoints[bpm][pattern];
1020  row.offset = fOffset[bpm][pattern];
1021  row.amplitude = fAmplitude[bpm][pattern];
1022  row.phase = fPhase[bpm][pattern];
1023  row.o_error = fOffsetError[bpm][pattern];
1024  row.a_error = fAmplitudeError[bpm][pattern];
1025  row.p_error = fPhaseError[bpm][pattern];
1026  row.gof_para = fChisquare[bpm][pattern];
1027 
1028  entrylist.push_back(row);
1029  }
1030  }
1031 
1032  if(local_print_flag) {
1033  QwMessage << QwColor(Qw::kGreen) << "Entrylist Size : "
1034  << QwColor(Qw::kBoldRed) << entrylist.size()
1036  }
1037 
1038  db->Connect();
1039  // Check the entrylist size, if it isn't zero, start to query..
1040  if( entrylist.size() ) {
1041  mysqlpp::Query query= db->Query();
1042  query.insert(entrylist.begin(), entrylist.end());
1043  query.execute();
1044  }
1045  else {
1046  QwMessage << "QwBeamMod::FillDB_MPS :: Nothing to insert in database." << QwLog::endl;
1047  }
1048  db->Disconnect();
1049 
1050  return;
1051 }
1052 
1053 void QwBeamMod::FillDB(QwParityDB *db, TString datatype)
1054 {
1055  return;
1056 }
1057 
1058 void QwBeamMod::FillErrDB(QwParityDB *db, TString datatype)
1059 {
1060  return;
1061 }
1062 
1063 
1065 {
1066  return;
1067 };
Int_t GetSubbankIndex() const
Definition: VQwSubsystem.h:303
std::vector< std::pair< Int_t, Int_t > > fWordsPerSubbank
Definition: QwBeamMod.h:158
void Print()
Definition: QwBeamMod.cc:954
#define QwMessage
Predefined log drain for regular messages.
Definition: QwLog.h:50
std::vector< std::vector< Double_t > > fAmplitude
Definition: QwBeamMod.h:179
std::map< TString, TString > fDetectorMaps
Definition: VQwSubsystem.h:322
void ProcessEvent()
Definition: QwBeamMod.cc:485
UInt_t GetMonitorID(const string &name, Bool_t zero_id_is_error=kTRUE)
Definition: QwParityDB.cc:618
Int_t GetDetectorIndex(Int_t TypeID, TString name)
Definition: QwBeamMod.cc:541
void ProcessEvent_2()
Process the event data again, including data from other subsystems. Not all derived classes will requ...
Definition: QwBeamMod.cc:508
Int_t fRampChannelIndex
Definition: QwBeamMod.h:190
Bool_t ApplySingleEventCuts()
Apply the single event cuts.
Definition: QwBeamMod.cc:414
void Ratio(VQwSubsystem *numer, VQwSubsystem *denom)
Definition: QwBeamMod.cc:636
UInt_t fFFB_ErrorFlag
Definition: QwBeamMod.h:167
UInt_t fFFB_holdoff_Counter
Definition: QwBeamMod.h:166
static const UInt_t kBModErrorFlag
Definition: QwTypes.h:172
UInt_t fFFB_holdoff
Definition: QwBeamMod.h:165
Definition: QwWord.h:19
void Disconnect()
Definition: QwDatabase.h:59
std::vector< TString > fMonitorNames
Definition: QwBeamMod.h:175
static const Int_t fNumberPatterns
Definition: QwBeamMod.h:171
Bool_t Connect()
Open a connection to the database using the predefined parameters.
Definition: QwDatabase.cc:175
void FillErrDB(QwParityDB *db, TString datatype)
Definition: QwBeamMod.cc:1058
void FillHistograms()
Fill the histograms for this subsystem.
Definition: QwBeamMod.cc:724
An options class.
Definition: QwOptions.h:133
void Difference(VQwSubsystem *value1, VQwSubsystem *value2)
Definition: QwBeamMod.cc:627
Int_t fWordInSubbank
Definition: QwWord.h:27
static UInt_t GetUInt(const TString &varvalue)
virtual void PrintValue() const
Print values of all channels.
virtual UInt_t UpdateErrorFlag()
Uses the error flags of contained data elements to update Returns the error flag to the top level rou...
Int_t ProcessConfigurationBuffer(const UInt_t roc_id, const UInt_t bank_id, UInt_t *buffer, UInt_t num_words)
Definition: QwBeamMod.cc:514
void TrimComment(const char commentchar)
Bool_t fFFB_Flag
Definition: QwBeamMod.h:168
std::vector< TH1_ptr > fHistograms
Histograms associated with this data element.
Definition: MQwHistograms.h:46
Bool_t HasDataLoaded() const
Definition: VQwSubsystem.h:94
std::vector< std::vector< Double_t > > fPhaseError
Definition: QwBeamMod.h:185
VQwSubsystem & operator-=(VQwSubsystem *value)
Definition: QwBeamMod.cc:600
UInt_t fFFB_Index
Definition: QwBeamMod.h:164
void ClearVectors()
Definition: QwBeamMod.cc:791
void ResizeOpticsDataContainers(Int_t)
Definition: QwBeamMod.cc:804
void FillDB_MPS(QwParityDB *db, TString datatype)
Fill the database with MPS-based variables Note that most subsystems don&#39;t need to do this...
Definition: QwBeamMod.cc:995
static const Bool_t bDEBUG
Definition: QwBeamMod.h:169
UInt_t GetAnalysisID()
Definition: QwParityDB.h:71
VQwSubsystem & operator+=(VQwSubsystem *value)
Definition: QwBeamMod.cc:584
void FillDB(QwParityDB *db, TString datatype)
Fill the database.
Definition: QwBeamMod.cc:1053
virtual void ConstructHistograms()
Construct the histograms for this subsystem.
Definition: VQwSubsystem.h:209
std::vector< QwModChannelID > fModChannelID
Definition: QwBeamMod.h:156
static void PrintErrorCounterHead()
void Sum(VQwSubsystem *value1, VQwSubsystem *value2)
Definition: QwBeamMod.cc:618
QwParameterFile * ReadNextSection(std::string &secname, const bool keep_header=false)
std::vector< std::vector< Int_t > > fNFitPoints
Definition: QwBeamMod.h:188
UInt_t GetEventcutErrorFlag()
Return the error flag to the top level routines related to stability checks and ErrorFlag updates...
Definition: QwBeamMod.cc:472
void AccumulateRunningSum(VQwSubsystem *)
Update the running sums for devices.
Definition: QwBeamMod.cc:662
TString fmoduletype
Definition: QwBeamMod.h:216
Int_t LoadChannelMap(TString mapfile)
Mandatory map file definition.
Definition: QwBeamMod.cc:36
std::vector< QwWord > fWord
Definition: QwBeamMod.h:157
#define QwDebug
Predefined log drain for debugging output.
Definition: QwLog.h:60
Int_t GetDetectorTypeID(TString name)
Definition: QwBeamMod.cc:531
A logfile class, based on an identical class in the Hermes analyzer.
void Scale(Double_t factor)
Definition: QwBeamMod.cc:654
std::vector< QwVQWK_Channel > fModChannel
Definition: QwBeamMod.h:155
TString fSystemName
Name of this subsystem.
Definition: VQwSubsystem.h:315
mysqlpp::Query Query(const char *qstr=0)
Definition: QwDatabase.h:66
Int_t LoadInputParameters(TString pedestalfile)
Mandatory parameter file definition.
Definition: QwBeamMod.cc:305
std::vector< std::vector< Double_t > > fChisquare
Definition: QwBeamMod.h:187
std::vector< QwVQWK_Channel > fMonitors
Definition: QwBeamMod.h:176
Int_t LoadEventCuts(TString filename)
Load the event cuts file.
Definition: QwBeamMod.cc:244
Int_t ProcessEvBuffer(const UInt_t roc_id, const UInt_t bank_id, UInt_t *buffer, UInt_t num_words)
TODO: The non-event-type-aware ProcessEvBuffer routine should be replaced with the event-type-aware v...
Definition: QwBeamMod.cc:350
Int_t fSubbankIndex
Definition: QwWord.h:24
void PrintModChannelID()
Definition: QwBeamMod.cc:967
void IncrementErrorCounters()
Increment the error counters.
Definition: QwBeamMod.cc:446
QwHistogramHelper gQwHists
Globally defined instance of the QwHistogramHelper class.
Int_t fPatternWordIndex
Definition: QwBeamMod.h:191
The pure virtual base class of all subsystems.
Definition: VQwSubsystem.h:59
void AtEndOfEventLoop()
Perform actions at the end of the event loop.
Definition: QwBeamMod.cc:784
Int_t fTreeArrayIndex
Definition: QwBeamMod.h:152
A color changing class for the output stream.
Definition: QwColor.h:98
void WritePromptSummary(QwPromptSummary *ps, TString type)
Definition: QwBeamMod.cc:1064
TString fModuleType
Definition: QwWord.h:28
Int_t fSubbankIndex
Definition: QwBeamMod.h:209
void ProcessOptions(QwOptions &options)
Process the command line options.
Definition: QwBeamMod.cc:32
Int_t RegisterSubbank(const UInt_t bank_id)
Tell the object that it will decode data from this sub-bank in the ROC currently open for registratio...
virtual Int_t RegisterROCNumber(const UInt_t roc_id, const UInt_t bank_id=0)
Tell the object that it will decode data from this ROC and sub-bank.
static const UInt_t kEventCutMode3
Definition: QwTypes.h:173
TString fWordName
Definition: QwWord.h:29
static std::ostream & endl(std::ostream &)
End of the line.
Definition: QwLog.cc:299
static const UInt_t kGlobalCut
Definition: QwTypes.h:176
void ConstructBranchAndVector(TTree *tree, TString &prefix, std::vector< Double_t > &values)
Construct the branch and tree vector.
Definition: QwBeamMod.cc:924
std::vector< std::vector< Double_t > > fOffset
Definition: QwBeamMod.h:180
std::vector< std::vector< Double_t > > fPhase
Definition: QwBeamMod.h:181
static const UInt_t kBModFFBErrorFlag
Definition: QwTypes.h:171
Bool_t RequestExternalValue(const TString &name, VQwHardwareChannel *value) const
Request a named value which is owned by an external subsystem; the request will be handled by the par...
void ClearEventData()
Definition: QwBeamMod.cc:521
Double_t GetAmplitudeSign(Double_t, Double_t, Double_t, Double_t)
Definition: QwBeamMod.cc:900
std::vector< std::vector< Double_t > > fAmplitudeError
Definition: QwBeamMod.h:183
void AnalyzeOpticsPlots()
Definition: QwBeamMod.cc:827
void FillTreeVector(std::vector< Double_t > &values) const
Fill the tree vector.
Definition: QwBeamMod.cc:942
static void PrintErrorCounterTail()
#define QwWarning
Predefined log drain for warnings.
Definition: QwLog.h:45
void InitializeChannel(TString name, TString datatosave)
Initialize the fields in this object.
std::vector< TString > fgModTypeNames
Definition: QwBeamMod.h:72
void ExchangeProcessedData()
Request processed data from other subsystems for internal use in the second event processing stage...
Definition: QwBeamMod.cc:494
VQwSubsystem & operator=(VQwSubsystem *value)
Assignment Note: Must be called at the beginning of all subsystems routine call to operator=(VQwSubsy...
Definition: QwBeamMod.cc:567
Bool_t Compare(VQwSubsystem *source)
Definition: QwBeamMod.cc:664
void CalculateRunningAverage()
Calculate the average for all good events.
Definition: QwBeamMod.cc:660
std::vector< std::vector< Double_t > > fOffsetError
Definition: QwBeamMod.h:184
QwModChannelID(Int_t subbankid, Int_t wordssofar, TString name, TString modtype, QwBeamMod *obj)
Definition: QwBeamMod.cc:221
Int_t fWordInSubbank
Definition: QwBeamMod.h:210
TString fmodulename
Definition: QwBeamMod.h:217
#define RegisterSubsystemFactory(A)
Definition: QwFactory.h:230
#define QwError
Predefined log drain for errors.
Definition: QwLog.h:40
TProfile * Construct1DProf(const TString &name_title)
UInt_t GetGlobalErrorFlag(TString evtype, Int_t evMode, Double_t stabilitycut)
Definition: QwTypes.cc:127
TString GetSubsystemName() const
Definition: VQwSubsystem.h:93
void PrintErrorCounters() const
Report the number of events failed due to HW and event cut failures.
Definition: QwBeamMod.cc:453
void SetDataLoaded(Bool_t flag)
Definition: VQwSubsystem.h:305