QwAnalysis
QwComptonElectronDetector.cc
Go to the documentation of this file.
1 /**************************************************
2  * \file QwComptonElectronDetector.cc
3  * \brief Implementation of the analysis of Compton electron detector data
4  *
5  * \author W. Deconinck
6  * \date 2009-09-04 18:06:23
7  * \ingroup QwCompton
8  *
9  * \D. Dutta
10  *
11  * \V. Tvaskis
12  * I have addet hits selections procedure, to select best hits, which corresponds
13  * to the best track (track with the best Chi2). Tracking procedure is also included here.
14  * Also, Angular distribution of the tracks is added.
15  *
16  * \A. Narayan
17  ****************************************************/
18 
19 /*****************************************************
20  * The QwComptonElectronDetector class is defined as a parity subsystem that
21  * contains all data modules of the electron detector (V1495, ...).
22  * It reads in a channel map and pedestal file, and defines the histograms
23  * and output trees.
24  *****************/
26 #include "QwSubsystemArrayParity.h"
27 #include "MQwCodaControlEvent.h"
28 
29 // System headers
30 #include <stdexcept>
31 #include <iostream>
32 #include <fstream>
33 #include <vector>
34 #include <string>
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <cstdlib>
38 #include <sstream>
39 #include <math.h>
40 
41 // Qweak headers
42 #include "QwLog.h"
43 #include "QwHistogramHelper.h"
44 
45 using namespace std;
46 
47 // Ugly, should go inside functions, seems undefined for running sum
48 Int_t notGood=0,myrun;
49 
50 // Register this subsystem with the factory
52 
53 
54 /*****************************************************************
55  * Load the channel map
56  * @param mapfile Map file
57  * @return Zero if successful
58  *****************************************************************/
60 {
61  TString varname, varvalue;
62  Int_t fdettype;
63  Int_t currentrocread=0;
64  Int_t currentbankread=0;
65  Int_t currentsubbankindex=-1;
66 
67 
68  QwParameterFile mapstr(mapfile.Data()); // Open the file
69  fDetectorMaps.insert(mapstr.GetParamFileNameContents());
70  while (mapstr.ReadNextLine()) {
71  mapstr.TrimComment(); // Remove everything after a comment character.
72  mapstr.TrimWhitespace(); // Get rid of leading and trailing whitespace (spaces or tabs).
73  if (mapstr.LineIsEmpty()) continue;
74 
75  if (mapstr.HasVariablePair("=", varname, varvalue)) {
76  // This is a declaration line. Decode it.
77  varname.ToLower();
78  UInt_t value = QwParameterFile::GetUInt(varvalue);
79  if (varname == "roc") {
80  currentrocread=value;
81  RegisterROCNumber(value,0);
82  } else if (varname == "bank") {
83  currentbankread=value;
84  RegisterSubbank(value);
85  if(currentsubbankindex!=GetSubbankIndex(currentrocread,currentbankread))
86  currentsubbankindex=GetSubbankIndex(currentrocread,currentbankread);
87  }
88  } else {
89  // Break this line into tokens to process it.
90  TString modtype = mapstr.GetTypedNextToken<TString>();
91  UInt_t modnum = mapstr.GetTypedNextToken<UInt_t>();
92  UInt_t channum __attribute__ ((unused)) // unused but function call is still required
93  = mapstr.GetTypedNextToken<UInt_t>(); //if commented, 'dettype' is not evaluated properly.
94  TString dettype = mapstr.GetTypedNextToken<TString>();
95  TString name = mapstr.GetTypedNextToken<TString>();
96  Int_t plane = mapstr.GetTypedNextToken<Int_t>();
97  Int_t stripnum = mapstr.GetTypedNextToken<Int_t>();
98  // Push a new record into the element array
99  if (modtype == "V1495") {
100  if (dettype == "eaccum") {
101  // Register data channel type
102  fMapping[currentsubbankindex] = kV1495Accum;
103  fdettype = 1;
104  ///the assignment of fdettype is arbitrarily made but is honoured subsequently
105  ///due to the numbers assigned for fdettype, the first index of vector 'fSubbankIndex' holds data
106  ///in the order:: 0:esingle; 1:eaccum; 2:escalers; 3:eaccum_v2; 4:eDAQ_info
107  ///the assignment of fdettype carries the signature of which bank was created first and not which should have appeared first
108  if (fdettype >= (Int_t) fSubbankIndex.size())
109  fSubbankIndex.resize(fdettype+1);
110  if (modnum >= fSubbankIndex[fdettype].size()) {
111  fSubbankIndex[fdettype].push_back(modnum);
112  fSubbankIndex[fdettype][modnum] = currentsubbankindex;
113  }
114  if (plane >= (Int_t) fStripsRaw.size())
115  fStripsRaw.resize(plane);
116  if (stripnum >= (Int_t) fStripsRaw[plane-1].size())
117  fStripsRaw[plane-1].push_back(0);
118  // plane goes from 1 - 4 instead of 0 - 3,
119 
120  if (plane >= (Int_t) fStrips.size())
121  fStrips.resize(plane);
122  if (stripnum >= (Int_t) fStrips[plane-1].size())
123  fStrips[plane-1].push_back(0);
124  }
125 
126  else if (dettype == "escalers") {
127  // Register data channel type
128  fMapping[currentsubbankindex] = kV1495Scaler;
129  fdettype = 2;
130  if (fdettype >= (Int_t) fSubbankIndex.size())
131  fSubbankIndex.resize(fdettype+1);
132  if (modnum >= fSubbankIndex[fdettype].size()) {
133  fSubbankIndex[fdettype].push_back(modnum);
134  fSubbankIndex[fdettype][modnum] = currentsubbankindex;
135  }
136  if (plane >= (Int_t) fStripsRawScal.size())
137  fStripsRawScal.resize(plane);
138  if (stripnum >= (Int_t) fStripsRawScal[plane-1].size())
139  fStripsRawScal[plane-1].push_back(0);
140  }
141 
142  else if (dettype == "eaccum_v2") {
143  // Register data channel type
144  fMapping[currentsubbankindex] = kV1495Accum_v2;
145  fdettype = 3;
146  if (fdettype >= (Int_t) fSubbankIndex.size())
147  fSubbankIndex.resize(fdettype+1);
148  if (modnum >= fSubbankIndex[fdettype].size()) {
149  fSubbankIndex[fdettype].push_back(modnum);
150  fSubbankIndex[fdettype][modnum] = currentsubbankindex;
151  }
152  if (plane >= (Int_t) fStripsRaw_v2.size())
153  fStripsRaw_v2.resize(plane);
154  if (stripnum >= (Int_t) fStripsRaw_v2[plane-1].size())
155  fStripsRaw_v2[plane-1].push_back(0);
156  }
157 
158  else if (dettype == "esingle") {
159  // Register data channel type
160  fMapping[currentsubbankindex] = kV1495Single;
161  fdettype = 0;
162  if (fdettype >= (Int_t) fSubbankIndex.size())
163  fSubbankIndex.resize(fdettype+1);
164  if (modnum >= fSubbankIndex[fdettype].size()) {
165  fSubbankIndex[fdettype].push_back(modnum);
166  fSubbankIndex[fdettype][modnum] = currentsubbankindex;
167  }
168  if (plane >= (Int_t) fStripsRawEv.size())
169  fStripsRawEv.resize(plane);
170  if (stripnum >= (Int_t) fStripsRawEv[plane-1].size())
171  fStripsRawEv[plane-1].push_back(0);
172 
173  if (plane >= (Int_t) fStripsEv.size())
174  fStripsEv.resize(plane);
175  if (stripnum >= (Int_t) fStripsEv[plane-1].size())
176  fStripsEv[plane-1].push_back(0);
177  } // end of switch (dettype)
178  else {
179  notGood=notGood+1;
180  cout<<"***found an undefined data type "<<notGood<<" times"<<endl;
181  cout<<"dettype: "<<dettype<<endl;
182  }
183  } // end of switch (modtype)
184  } // end of if for token line
185  } // end of while over parameter file
186  return 0;
187 }
188 
189 //*****************************************************************
191 {
192  return 0;
193 }
194 
195 //*****************************************************************
197 {
198  // Open the file
199  QwParameterFile mapstr(pedestalfile.Data());
200  while (mapstr.ReadNextLine()) {
201  mapstr.TrimComment('!'); // Remove everything after a '!' character.
202  mapstr.TrimWhitespace(); // Get rid of leading and trailing spaces.
203  if (mapstr.LineIsEmpty()) continue;
204  else {
205  TString varname = mapstr.GetTypedNextToken<TString>(); // name of the channel
206  varname.ToLower();
207  varname.Remove(TString::kBoth,' ');
208  /* Double_t varcal = */ mapstr.GetTypedNextToken<Double_t>(); // value of the calibration factor
209  }
210  } // end of loop reading all lines of the pedestal file
211  return 0;
212 }
213 
214 /**
215  * Process the event buffer for this subsystem
216  * @param roc_id ROC ID
217  * @param bank_id Subbank ID
218  * @param buffer Buffer to read from
219  * @param num_words Number of words left in buffer
220  * @return Number of words read
221  */
222 //*****************************************************************
223 Int_t QwComptonElectronDetector::ProcessEvBuffer(UInt_t roc_id, UInt_t bank_id, UInt_t* buffer, UInt_t num_words)
224 {
225  const Int_t numberofWordPerEv = 5;
226  UInt_t words_read = 0;
227  UInt_t bitwise_mask = 0;
228  div_t div_output;
229  //UInt_t accum_count = 0;
230  // Get the subbank index (or -1 when no match)
231  Int_t subbank = GetSubbankIndex(roc_id, bank_id);
232  if (subbank >= 0 && num_words > 0) {
233  // We want to process this ROC. Begin looping through the data.
234  switch (fMapping[subbank]) {
235  case kV1495Accum:
236  {
237  for (Int_t k = 0; k < NModules; k++) {
238  if (fSubbankIndex[1][k]==subbank) {
239  // sub-bank 0x0204, accum mode data from strips 0-31 of planes 1 thru 4
240  if (num_words > 0) { //!?this has already been checked in this function. remove this if?
241 
242  for (Int_t i = 0; i < StripsPerModule; i++) { // loop all words in bank
243  Int_t j = k*StripsPerModule+i;
244  // accum_count = (buffer[i] & 0xff000000) >> 24;
245  // //!what value is assigned to fStripsRaw[][] when the accum_counts is greater than 5?
246  // if (accum_count < 5)fStripsRaw[0][j] = accum_count;
247  // accum_count = (buffer[i] & 0x00ff0000) >> 16;
248  // if (accum_count < 5)fStripsRaw[1][j] = accum_count;
249  // accum_count = (buffer[i] & 0x0000ff00) >> 8;
250  // if (accum_count < 5)fStripsRaw[2][j] = accum_count;
251  // accum_count = (buffer[i] & 0x000000ff);
252  // if (accum_count < 5)fStripsRaw[3][j] = accum_count;
253 
254  fStripsRaw[0][j] = (buffer[i] & 0xff000000) >> 24;
255  fStripsRaw[1][j] = (buffer[i] & 0x00ff0000) >> 16;
256  fStripsRaw[2][j] = (buffer[i] & 0x0000ff00) >> 8;
257  fStripsRaw[3][j] = (buffer[i] & 0x000000ff);
258  words_read++;
259  }
260  }
261  if (num_words != words_read) {
262  QwError << "QwComptonElectronDetector: There were "
263  << num_words - words_read
264  << " leftover words after decoding everything we recognize in accum data"
265  << std::hex
266  << " in ROC " << roc_id << ", bank " << bank_id << "."
267  << std::dec
268  << QwLog::endl;
269  }
270  }
271  } // for (Int_t k = 0; k < NModules; k++)
272  break;
273  }
274 
275  case kV1495Single:
276  {
277  for (Int_t jj = 0; jj < NModules; jj++) {
278  if (fSubbankIndex[0][jj]==subbank) {
279  if (num_words > 0) {
280  div_output = div(num_words,numberofWordPerEv);
281  Int_t numbOfEvDataSet = div_output.quot;
282 
283  Int_t evHitMap[numbOfEvDataSet][NPlanes][StripsPerPlane];
284 
285  for (Int_t m = 0; m < numbOfEvDataSet; m++) {
286  for (Int_t i = 0; i <NPlanes; i++) {
287  for (Int_t j = 0; j < StripsPerPlane; j++) {
288  evHitMap[m][i][j] = 0;
289  }
290  }
291  }
292 
293  if (div_output.rem) {
294  printf("\n\n***Error***:Event Data suspicious. Report to an expert:\n");
295  printf(",found %d number of words which is not a multiple of 5!\n\n",num_words);
296  }///This should not happen until the event word readout format is changed in DAQ
297 
298  for (Int_t m = 0; m < numbOfEvDataSet; m++) {
299  for (Int_t i = 0; i < NPlanes; i++) {
300  Int_t bufferIndex = m*(NPlanes+1) + i;
301  for (Int_t j = 0; j < StripsPerModule; j++) {
302  Int_t k = jj*StripsPerModule + j;
303  bitwise_mask = (0x1 << j);
304  evHitMap[m][i][k] = (buffer[bufferIndex] & bitwise_mask) >> j;
305  }
306  words_read++;
307  }
308  //Int_t ExtraWord = buffer[NPlanes*(m+1)];//diagnostic word, ignore warning, unused currently
309  words_read++;
310  }
311  for (Int_t k = 0; k < StripsPerPlane; k++) {
312  for (Int_t i = 0; i < NPlanes; i++) {
313  for (Int_t m = 0; m < numbOfEvDataSet; m++) {
314  fStripsRawEv[i][k] += evHitMap[m][i][k];
315  }
316  }
317  }
318 
319  if (num_words != words_read) {
320  QwError << "QwComptonElectronDetector: There were "
321  << num_words - words_read
322  << " leftover words after decoding everything recognizable in event data."
323  << QwLog::endl;
324  }
325  }
326  }
327  }
328  break;
329  }///end of case V1495Singles
330 
331  case kV1495Scaler:
332  {
333  for (Int_t k = 0; k < NModules; k++) {
334  if (fSubbankIndex[2][k]==subbank) {
335  // sub-bank 0x020A, V1495 SCALER data from strips 0-31 of planes 1 thru 4
336  if (num_words > 0) {
337  // We want to process this ROC. Begin looping through the data.
338  for (Int_t i = 0; i < StripsPerModule; i++) { // loop all words in bank
339  Int_t j = k*StripsPerModule + i;
340  fStripsRawScal[0][j] = (buffer[i] & 0xff000000) >> 24;
341  fStripsRawScal[1][j] = (buffer[i] & 0x00ff0000) >> 16;
342  fStripsRawScal[2][j] = (buffer[i] & 0x0000ff00) >> 8;
343  fStripsRawScal[3][j] = (buffer[i] & 0x000000ff);
344  words_read++;
345  //if (fStripsRawScal[0][j] > 0) printf("\nfStripsRawScal[%d][%d]:%f",i,j,fStripsRawScal[i][j]);
346  }
347  }
348  if (num_words != words_read) {
349  QwError << "QwComptonElectronDetector: There were "
350  << num_words - words_read
351  << " leftover words after decoding everything we recognize in v1495 scaler data"
352  << std::hex
353  << " in ROC " << roc_id << ", bank " << bank_id << "."
354  << std::dec
355  << QwLog::endl;
356  }
357  } // if (fSubbankIndex[1][k]==subbank)
358  } // for (Int_t k = 0; k < NModules; k++)
359  break;
360  }
361 
362  case kV1495Accum_v2:
363  {
364  for (Int_t k = 0; k < NModules; k++) {
365  if (fSubbankIndex[3][k]==subbank) {
366  // sub-bank 0x020D, accum mode V2 data from strips 0-31 of planes 1 thru 4
367  if (num_words > 0) { //!?this has already been checked in this function. remove this if?
368  //!the condition that total no.of counts be less than '5' is not executed for v2 data(just to see this side for the story, if needed)
369  for (Int_t i = 0; i < StripsPerModule; i++) { // loop all words in bank
370  Int_t j = k*StripsPerModule+i;
371  fStripsRaw_v2[0][j] = (buffer[i] & 0xff000000) >> 24;
372  fStripsRaw_v2[1][j] = (buffer[i] & 0x00ff0000) >> 16;
373  fStripsRaw_v2[2][j] = (buffer[i] & 0x0000ff00) >> 8;
374  fStripsRaw_v2[3][j] = (buffer[i] & 0x000000ff);
375  words_read++;
376  }
377  }
378  if (num_words != words_read) {
379  QwError << "QwComptonElectronDetector: There were "
380  << num_words - words_read
381  << " leftover words after decoding everything we recognize in version 2 accum data"
382  << std::hex
383  << " in ROC " << roc_id << ", bank " << bank_id << "."
384  << std::dec
385  << QwLog::endl;
386  }
387  }
388  } // for (Int_t k = 0; k < NModules; k++)
389  break;
390  }
391 
392  case kUnknown: // Unknown data channel type
393  default:
394  {
395  QwError << "QwComptonElectronDetector: Unknown data channel type for ROC "
396  << roc_id << ", bank 0x" <<std::hex<<bank_id << std::dec<<QwLog::endl;
397  break;
398  }
399  }
400  }
401  return words_read;
402 }
403 
404 /*** Process the single event cuts * @return */
405 //*****************************************************************
407 {
408  return IsGoodEvent();
409 }
410 
411 /*** Process this event */
412 //*****************************************************************
414 {
415  //this was not being used till revision 4846 so is being removed
416  return;
417 }
418 
419 /**
420  * Process the configuration buffer for this subsystem
421  * @param roc_id ROC ID
422  * @param bank_id Subbank ID
423  * @param buffer Buffer to read from
424  * @param num_words Number of words left in buffer
425  * @return Number of words read
426  */
427 //*****************************************************************
428 Int_t QwComptonElectronDetector::ProcessConfigurationBuffer(const UInt_t roc_id, const UInt_t bank_id, UInt_t* buffer, UInt_t num_words)
429 {
430  // sub-bank 0x207 & 0x208, eDAQinfo for this slave board for all planes and strips
431  ///the total number of words in these subbanks was fixed at 8, though the meaning carried by a word has
432  ///..changed during different revisions (may need fine tuning later!)
433 
434  ///Based on the last edited firmware, the data structure of the DAQ info bank is:
435  // Identifier beginning word
436  // Firmware Revision Number
437  // A mask
438  // B mask
439  // D mask
440  // E mask
441  // PWTL(8 bits) | PWDL(8 bits) | HOLDOFF(8 bits) | PL_Delay(8 bits)
442  //Rejection Width(16 bits) | Accum trigger condition(8 bits) | Event trigger condition(8 bits)
443  ///This will not be the same for all runs in even run 2, leave apart run 1
444 
445  Int_t subBankiterate = bank_id==0x207 ? 0 : 32;
446  Int_t subBankmodule = bank_id==0x207 ? 0 : 1;
447 
448  slave_header.push_back(buffer[0]);///expect this to be always BX000000 for slaveX
449  firmwareRevision.push_back(buffer[1]);
450  portAmask.push_back(buffer[2]);
451  portBmask.push_back(buffer[3]);
452  portDmask.push_back(buffer[4]);
453  portEmask.push_back(buffer[5]);
454  widthInfo.push_back(buffer[6]);
455  trigInfo.push_back (buffer[7]);
456 
457  UInt_t bitwise_mask=0;
458  for (Int_t s = 0; s < StripsPerModule; s++) {
459  bitwise_mask = (0x1 << s);
460  fPlane1Mask[s+subBankiterate] = ((portAmask.back() & bitwise_mask) >> s);
461  }
462 
463  for (Int_t s = 0; s < StripsPerModule; s++) {
464  bitwise_mask = (0x1 << s);
465  fPlane2Mask[s+subBankiterate] = ((portBmask.back() & bitwise_mask) >> s);
466  }
467 
468  for (Int_t s = 0; s < StripsPerModule; s++) {
469  bitwise_mask = (0x1 << s);
470  fPlane3Mask[s+subBankiterate] = ((portDmask.back() & bitwise_mask) >> s);
471  }
472 
473  for (Int_t s = 0; s < StripsPerModule; s++) {
474  bitwise_mask = (0x1 << s);
475  fPlane4Mask[s+subBankiterate] = ((portEmask.back() & bitwise_mask) >> s);
476  }
477 
478  fFirmwareRevision[subBankmodule] = firmwareRevision.back();
479 
480  fPWTL[subBankmodule] =(widthInfo.back() & 0xff000000) >> 24;
481  fPWTL2[subBankmodule] =(widthInfo.back() & 0x00ff0000) >> 16;
482  fHoldOff[subBankmodule] =(widthInfo.back() & 0x0000ff00) >> 8;
483  fPipelineDelay[subBankmodule] =(widthInfo.back() & 0x000000ff);
484 
485 
486  fMinWidth[subBankmodule] = (trigInfo.back() & 0x00ff0000) >> 16;
487  fAcTrig[subBankmodule] = (trigInfo.back() & 0x0000ff00) >> 8;
488  fEvTrig[subBankmodule] = (trigInfo.back() & 0x000000ff);
489 
490  subBankiterate = subBankiterate + 32;//when this process is called 2nd time,
491  return 0;
492 }
493 
494 /**
495  * Check whether this is a good event @return True if the event is good
496  * !! The definition of 'good event' for the following function is that
497  * it should have information for every strip (4planes x 96strips = 384)
498  * I can't see why is this useful
499  */
500 //*****************************************************************
502 {
503  Bool_t eventokay = kTRUE;
504  Int_t nchan=0;
505  for (Int_t i=0; i<NPlanes; i++)
506  nchan += fStripsRaw[i].size();
507  eventokay &= (nchan == 384);
508  return eventokay;
509 }
510 
511 /**
512  * Clear the event data in this subsystem
513  */
514 //*****************************************************************
516 {
517  for (Int_t i = 0; i < NPlanes; i++){
518  for (Int_t j = 0; j < StripsPerPlane; j++){
519 
520  fStripsRaw[i][j] = 0;
521  fStripsRaw_v2[i][j] = 0;
522  fStrips[i][j] = 0;
523  fStripsRawEv[i][j] = 0;
524  fStripsEv[i][j] = 0;
525  fStripsRawScal[i][j] = 0;
526  }
527  }
528 
529  // fStripsEvBest1 = 1000000;
530  // fStripsEvBest2 = 1000000;
531  // fStripsEvBest3 = 1000000;
532  // edet_x2 = 1000000;
533  // edet_TotalNumberTracks = 1000000;
534  // edet_angle = 1000000;
535 
536  fGoodEventCount = 0;
537 }
538 
539 //*****************************************************************
541 {
542  if (Compare(value)) {
544  QwComptonElectronDetector* input = dynamic_cast<QwComptonElectronDetector*> (value);
545  for (Int_t i = 0; i < NPlanes; i++){
546  for (Int_t j = 0; j < StripsPerPlane; j++) {
547  this->fStripsRaw[i][j] = input->fStripsRaw[i][j];
548  this->fStrips[i][j] = input->fStrips[i][j];
549  this->fStripsRawEv[i][j] = input->fStripsRawEv[i][j];
550  this->fStripsRawScal[i][j] = input->fStripsRawScal[i][j];
551  this->fStripsRaw_v2[i][j] = input->fStripsRaw_v2[i][j];
552  }
553  }
554  this->fPlane1Mask.resize(input->fPlane1Mask.size());
555  this->fPlane2Mask.resize(input->fPlane2Mask.size());
556  this->fPlane3Mask.resize(input->fPlane3Mask.size());
557  this->fPlane4Mask.resize(input->fPlane4Mask.size());
558  this->fEvTrig.resize(input->fEvTrig.size());
559  this->fAcTrig.resize(input->fAcTrig.size());
560  this->fMinWidth.resize(input->fMinWidth.size());
561  this->fFirmwareRevision.resize(input->fFirmwareRevision.size());
562  this->fPWTL.resize(input->fPWTL.size());
563  this->fPWTL2.resize(input->fPWTL2.size());
564  this->fHoldOff.resize(input->fHoldOff.size());
565  this->fPipelineDelay.resize(input->fPipelineDelay.size());
566 
567  for (UInt_t j = 0; j < input->fPlane1Mask.size(); j++)
568  this->fPlane1Mask[j] = input->fPlane1Mask[j];
569  for (UInt_t j = 0; j < input->fPlane2Mask.size(); j++)
570  this->fPlane2Mask[j] = input->fPlane2Mask[j];
571  for (UInt_t j = 0; j < input->fPlane3Mask.size(); j++)
572  this->fPlane3Mask[j] = input->fPlane3Mask[j];
573  for (UInt_t j = 0; j < input->fPlane4Mask.size(); j++)
574  this->fPlane4Mask[j] = input->fPlane4Mask[j];
575 
576  for (UInt_t j = 0; j < input->fFirmwareRevision.size(); j++)
577  this->fFirmwareRevision[j] = input->fFirmwareRevision[j];
578 
579  for (UInt_t j = 0; j < input->fPWTL.size(); j++)
580  this->fPWTL[j] = input->fPWTL[j];
581 
582  for (UInt_t j = 0; j < input->fPWTL2.size(); j++)
583  this->fPWTL2[j] = input->fPWTL2[j];
584 
585  for (UInt_t j = 0; j < input->fHoldOff.size(); j++)
586  this->fHoldOff[j] = input->fHoldOff[j];
587 
588  for (UInt_t j = 0; j < input->fPipelineDelay.size(); j++)
589  this->fPipelineDelay[j] = input->fPipelineDelay[j];
590 
591  for (UInt_t j = 0; j < input->fEvTrig.size(); j++)
592  this->fEvTrig[j] = input->fEvTrig[j];
593  for (UInt_t j = 0; j < input->fAcTrig.size(); j++)
594  this->fAcTrig[j] = input->fAcTrig[j];
595  for (UInt_t j = 0; j < input->fMinWidth.size(); j++)
596  this->fMinWidth[j] = input->fMinWidth[j];
597 
598  this->fIsConfigOnly = input->fIsConfigOnly;
599  }
600  return *this;
601 }
602 
604 {
605  if (Compare(value)) {
606  QwComptonElectronDetector* input = dynamic_cast<QwComptonElectronDetector*> (value);
607  for (Int_t i = 0; i < NPlanes; i++){
608  for (Int_t j = 0; j < StripsPerPlane; j++){
609  this->fStripsRaw[i][j] += input->fStripsRaw[i][j];
610  //this->fStrips[i][j] += input->fStrips[i][j];
611  this->fStripsRawEv[i][j] += input->fStripsRawEv[i][j];
612  this->fStripsRawScal[i][j] += input->fStripsRawScal[i][j];
613  this->fStripsRaw_v2[i][j] += input->fStripsRaw_v2[i][j];
614  }
615  }
616  }
617  return *this;
618 }
619 
621 {
622  if (Compare(value)) {
623  QwComptonElectronDetector* input = dynamic_cast<QwComptonElectronDetector*> (value);
624  for (Int_t i = 0; i < NPlanes; i++){
625  for (Int_t j = 0; j < StripsPerPlane; j++) {
626  this->fStripsRaw[i][j] -= input->fStripsRaw[i][j];
627  //this->fStrips[i][j] -= input->fStrips[i][j];
628  this->fStripsRawEv[i][j] -= input->fStripsRawEv[i][j];
629  this->fStripsRawScal[i][j] -= input->fStripsRawScal[i][j];
630  this->fStripsRaw_v2[i][j] -= input->fStripsRaw_v2[i][j];
631  }
632  }
633  }
634  return *this;
635 }
636 
638 {
639  if (Compare(value)) {
640  QwComptonElectronDetector* input = dynamic_cast<QwComptonElectronDetector*> (value);
641  for (Int_t i = 0; i < NPlanes; i++){
642  for (Int_t j = 0; j < StripsPerPlane; j++){
643  this->fStripsRaw[i][j] *= input->fStripsRaw[i][j];
644  //this->fStrips[i][j] *= input->fStrips[i][j];
645  this->fStripsRawEv[i][j] *= input->fStripsRawEv[i][j];
646  this->fStripsRawScal[i][j] *= input->fStripsRawScal[i][j];
647  this->fStripsRaw_v2[i][j] *= input->fStripsRaw_v2[i][j];
648  }
649  }
650  }
651  return *this;
652 }
653 
655 {
656  if (Compare(value1) && Compare(value2)) {
657  *this = value1;
658  *this += value2;
659  }
660 }
661 
663 {
664  if (Compare(value1) && Compare(value2)) {
665  *this = value1;
666  *this -= value2;
667  }
668 }
669 
671 {
672  if (Compare(numer) && Compare(denom)) {
673  QwComptonElectronDetector* innumer = dynamic_cast<QwComptonElectronDetector*> (numer);
674  QwComptonElectronDetector* indenom = dynamic_cast<QwComptonElectronDetector*> (denom);
675 
676  for (Int_t i = 0; i < NPlanes; i++){
677  for (Int_t j = 0; j < StripsPerPlane; j++){
678  if(indenom->fStripsRaw[i][j] > 0) {
679  fStripsRaw[i][j] =(innumer->fStripsRaw[i][j]/indenom->fStripsRaw[i][j]);
680  //fStrips[i][j] =(innumer->fStrips[i][j]/indenom->fStrips[i][j]);
681  fStripsRawEv[i][j] =(innumer->fStripsRawEv[i][j]/indenom->fStripsRawEv[i][j]);
682  fStripsRawScal[i][j] =(innumer->fStripsRawScal[i][j]/indenom->fStripsRawScal[i][j]);
683  fStripsRaw_v2[i][j] =(innumer->fStripsRaw_v2[i][j]/indenom->fStripsRaw_v2[i][j]);
684  }
685  else {
686  this->fStripsRaw[i][j]=0;
687  }
688  }
689  }
690  }
691 }
692 
693 void QwComptonElectronDetector::Scale(Double_t factor)
694 {
695  for (Int_t i = 0; i < NPlanes; i++){
696  for (Int_t j = 0; j < StripsPerPlane; j++){
697  this->fStripsRaw[i][j] *= static_cast<double>(factor);
698  this->fStrips[i][j] *= static_cast<double>(factor);
699  this->fStripsRawEv[i][j] *= static_cast<double>(factor);
700  this->fStripsRawScal[i][j] *= static_cast<double>(factor);
701  this->fStripsRaw_v2[i][j] *= static_cast<double>(factor);
702  // TODO !!converting Double to Int (ok now) may not be okay later!
703  }
704  }
705 }
706 
708 {
709  // Immediately fail on null objects
710  if (value == 0) return kFALSE;
711 
712  // Continue testing on actual object
713  Bool_t result = kTRUE;
714  if (typeid(*value) != typeid(*this)) {
715  result = kFALSE;
716  } else {
717  QwComptonElectronDetector* input = dynamic_cast<QwComptonElectronDetector*> (value);
718  if (input->fStripsRaw.size() != fStripsRaw.size()) {
719  result = kFALSE;
720  }
721  // if (input->fStrips.size() != fStrips.size()) {
722  // result = kFALSE;
723  // }
724  if (input->fStripsRawEv.size() != fStripsRawEv.size()) {
725  result = kFALSE;
726  }
727  if (input->fStripsRawScal.size() != fStripsRawScal.size()) {
728  result = kFALSE;
729  }
730  if (input->fStripsRaw_v2.size() != fStripsRaw_v2.size()) {
731  result = kFALSE;
732  }
733  }
734  return result;
735 }
736 
738 {
739  if (Compare(value)) {
740  // Optional event selection...
741  fGoodEventCount++;
742  *this += value;
743  }
744 }
745 
747 {
748  if (fGoodEventCount <= 0) {
749  Scale(0);
750  } else {
751  Scale(1.0/fGoodEventCount);
752  }
753 }
754 
755 
756 //*****************************************************************
757 /**
758  * Construct the histograms
759  * @param folder Folder in which the histograms will be created
760  * @param prefix Prefix with information about the type of histogram
761  */
762 void QwComptonElectronDetector::ConstructHistograms(TDirectory *folder, TString &prefix)
763 {/// not adding the version-2 accum data to the histograms, only interested in adding it to tree
764  // If we have defined a subdirectory in the ROOT file, then change into it.
765  if (folder != NULL) folder->cd();
766 
767  // Go into subdirectory if it exists
768  TDirectory* eDetfolder = folder->GetDirectory("Compton_Electron");
769  if (eDetfolder == 0) eDetfolder = folder->mkdir("Compton_Electron");
770 
771  // Now create the histograms.
772  TString basename = prefix + GetSubsystemName();
773 
774  eDetfolder->cd();
775  for (Int_t i=0; i<NPlanes; i++){
776  TString histname = Form("Compton_eDet_Accum_Raw_Plane%d",i+1);
777  fHistograms.push_back(gQwHists.Construct1DHist(prefix+histname));//1st histogram
778  histname = Form("Compton_eDet_Accum_v2_Plane%d",i+1);
779  fHistograms.push_back(gQwHists.Construct1DHist(prefix+histname));
780  histname = Form("Compton_eDet_Evt_Raw_Plane%d",i+1);
781  fHistograms.push_back(gQwHists.Construct1DHist(prefix+histname));//3rd histogram
782  histname = Form("Compton_eDet_Evt_Plane%d",i+1);
783  fHistograms.push_back(gQwHists.Construct1DHist(prefix+histname));
784  histname = Form("Compton_eDet_Scal_Raw_Plane%d",i+1);
785  fHistograms.push_back(gQwHists.Construct1DHist(prefix+histname));//5th histogram
786  }
787 }
788 
790 {
791  for (Int_t i = 0; i < NPlanes; i++) {
792  Int_t ii = 5*i;
793  //apology for the hardcoding; had to do so in keeping with DaveG's philosophy of least change.
794  //the 5 corresponds to the 5 histograms that are being declared above in the 'for' loop.
795  ///The order in which the histograms are filled below should be the same in which they were created above
796  for (Int_t j = 0; j < StripsPerPlane; j++) {
797  Int_t nthStrip = j + 1;
798 
799  if (fHistograms[ii] != NULL) {
800  for (Int_t n=0; n<fStripsRaw[i][j]; n++) ///Accumulation raw data
801  fHistograms[ii]->Fill(nthStrip); //!!Why does any of the following 2 method not work?
802  } // fHistograms[4*i]->Fill(j+1,fStripsRaw[i][j]);
803  // fHistograms[4*i]->SetBinContent(j+1,fStripsRaw[i][j]);
804  if (fHistograms[ii+1] != NULL) {
805  for (Int_t n=0; n<fStrips[i][j]; n++) ///Accumulation data
806  fHistograms[ii+1]->Fill(nthStrip);
807  }
808 
809  if (fHistograms[ii+2] != NULL) {
810  for (Int_t n = 0; n < fStripsRawEv[i][j]; n++) ///Event raw data
811  fHistograms[ii+2]->Fill(nthStrip);
812  }
813 
814  if (fHistograms[ii+3] != NULL) {
815  for (Int_t n=0; n<fStripsEv[i][j]; n++) ///Event data
816  fHistograms[ii+3]->Fill(nthStrip);
817  }
818 
819  if (fHistograms[ii+4] != NULL) {
820  for (Int_t n=0; n<fStripsRawScal[i][j]; n++){ ///v1495 Scaler raw data
821  fHistograms[ii+4]->Fill(nthStrip);
822  }
823  }
824  }
825  }
826 }
827 
828 void QwComptonElectronDetector::ConstructBranchAndVector(TTree *tree, TString &prefix, std::vector<Double_t> &values)
829 {
830  // SetHistoTreeSave(prefix);
831  fTreeArrayIndex = values.size();
832 
833  if(prefix=="conf") {
834  fIsConfigOnly = kTRUE;
835  /// v1495 DAQ info for this slave
836  for (Int_t i = 0; i < NPlanes; i++) {
837  TString basename = Form("v1495InfoPlane%d",i+1);
838  TString valnames = "";
839  Double_t* valstart = &(values.back());
840  for (Int_t j = 0; j < StripsPerPlane; j++) {
841  valnames += TString(":") + Form("p%ds%dMask",i+1,j+1) + "/D";
842  values.push_back(0.0);
843  }
844  valnames.Remove(0,1); // remove first ':' character
845  tree->Branch(basename, valstart+1, valnames);
846  }
847 
848  for (Int_t k = 0; k < NModules; k++) {
849  TString basename = Form("slave%d_acTrig",k+1);
850  Double_t* valstart = &(values.back());
851  values.push_back(0.0);
852  tree->Branch(basename, valstart+1);
853  }
854  for (Int_t k = 0; k < NModules; k++) {
855  TString basename = Form("slave%d_evTrig",k+1);
856  Double_t* valstart = &(values.back());
857  values.push_back(0.0);
858  tree->Branch(basename, valstart+1);
859  }
860  for (Int_t k = 0; k < NModules; k++) {
861  TString basename = Form("slave%d_minWidth",k+1);
862  Double_t* valstart = &(values.back());
863  values.push_back(0.0);
864  tree->Branch(basename, valstart+1);
865  }
866  for (Int_t k = 0; k < NModules; k++) {
867  TString basename = Form("slave%d_firmWareRevision",k+1);
868  Double_t* valstart = &(values.back());
869  values.push_back(0.0);
870  tree->Branch(basename, valstart+1);
871  }
872  for (Int_t k = 0; k < NModules; k++) {
873  TString basename = Form("slave%d_PWTL",k+1);
874  Double_t* valstart = &(values.back());
875  values.push_back(0.0);
876  tree->Branch(basename, valstart+1);
877  }
878  for (Int_t k = 0; k < NModules; k++) {
879  TString basename = Form("slave%d_PWTL2",k+1);
880  Double_t* valstart = &(values.back());
881  values.push_back(0.0);
882  tree->Branch(basename, valstart+1);
883  }
884  for (Int_t k = 0; k < NModules; k++) {
885  TString basename = Form("slave%d_HoldOff",k+1);
886  Double_t* valstart = &(values.back());
887  values.push_back(0.0);
888  tree->Branch(basename, valstart+1);
889  }
890  for (Int_t k = 0; k < NModules; k++) {
891  TString basename = Form("slave%d_PipelineDelay",k+1);
892  Double_t* valstart = &(values.back());
893  values.push_back(0.0);
894  tree->Branch(basename, valstart+1);
895  }
896  return;
897  }
898 
899  for (Int_t i = 0; i < NPlanes; i++) {
900  //!!iteration of this loop from '1' instead of '0' is for Qweak run-1 when the first plane was inactive
901  /// Note that currently the plane number in these tree-leafs correspond to the C++ counting(from 0)
902  /// Event branch for this plane
903  TString basename = prefix + Form("p%dRawEv",i+1);
904  TString valnames = "";
905  Double_t* valstart = &(values.back());
906  for (Int_t j = 0; j < StripsPerPlane; j++) {
907  valnames += TString(":") + prefix + Form("p%ds%dRawEv",i+1,j+1) + "/D";
908  values.push_back(0.0);
909  }
910  valnames.Remove(0,1); // remove first ':' character
911  tree->Branch(basename, valstart+1, valnames);
912 
913  /// Accumulator branch for this plane
914  basename = prefix + Form("p%dRawAc",i+1);
915  valnames = "";
916  valstart = &(values.back());
917  for (Int_t j = 0; j < StripsPerPlane; j++) {
918  valnames += TString(":") + prefix + Form("p%ds%dRawAc",i+1,j+1) + "/D";
919  values.push_back(0.0);
920  }
921  valnames.Remove(0,1); // remove first ':' character
922  tree->Branch(basename, valstart+1, valnames);
923 
924  /// Accumulator2 branch for this plane
925  basename = prefix + Form("p%dRawAc_v2",i+1);
926  valnames = "";
927  valstart = &(values.back());
928  for (Int_t j = 0; j < StripsPerPlane; j++) {
929  valnames += TString(":") + prefix + Form("p%ds%dRawAc_v2",i+1,j+1) + "/D";
930  values.push_back(0.0);
931  }
932  valnames.Remove(0,1); // remove first ':' character
933  tree->Branch(basename, valstart+1, valnames);
934 
935  /// v1495 scaler branch for this plane
936  basename = prefix + Form("p%dRawV1495Scaler",i+1);
937  valnames = "";
938  valstart = &(values.back());
939  for (Int_t j = 0; j < StripsPerPlane; j++) {
940  valnames += TString(":") + prefix + Form("p%ds%dRawV1495Scaler",i+1,j+1) + "/D";
941  values.push_back(0.0);
942  }
943  valnames.Remove(0,1); // remove first ':' character
944  tree->Branch(basename, valstart+1, valnames);
945  }
946  ///Notice-2: the pattern that for every plane the branch is created for all different types of data before
947  ///...creating the same for the next plane
948 }
949 
950 void QwComptonElectronDetector::FillTreeVector(std::vector<Double_t> &values) const
951 {
952  ///The 'values' needs to be a Double_t due to the inner structure in the hierarchy
953  ///The 'values' should be filled in exactly the same order in which they were created above
954  /// ...below we follow the pattern as in Notice-2
955  size_t index = fTreeArrayIndex;
956 
957  if(fIsConfigOnly) {
958  for (UInt_t j = 0; j < fPlane1Mask.size(); j++)
959  values[index++] = fPlane1Mask.at(j);/// v1495 plane 1 mask info
960  for (UInt_t j = 0; j < fPlane2Mask.size(); j++)
961  values[index++] = fPlane2Mask.at(j);/// v1495 plane 2 mask info
962  for (UInt_t j = 0; j < fPlane3Mask.size(); j++)
963  values[index++] = fPlane3Mask.at(j);/// v1495 plane 3 mask info
964  for (UInt_t j = 0; j < fPlane4Mask.size(); j++)
965  values[index++] = fPlane4Mask.at(j);/// v1495 plane 4 mask info
966 
967  for (UInt_t j = 0; j < fAcTrig.size(); j++) {//!following vectors have same size hence this cheating allowed
968  values[index++] = fAcTrig.at(j);/// v1495 accum trigger info
969  }
970  for (UInt_t j = 0; j < fEvTrig.size(); j++) {//!following vectors have same size hence this cheating allowed
971  values[index++] = fEvTrig.at(j);/// v1495 event trigger info
972  }
973  for (UInt_t j = 0; j < fMinWidth.size(); j++) {//!following vectors have same size hence this cheating allowed
974  values[index++] = fMinWidth.at(j);/// v1495 minimum width info
975  }
976  for (UInt_t j = 0; j < fFirmwareRevision.size(); j++) {//!following vectors have same size hence this cheating allowed
977  values[index++] = fFirmwareRevision.at(j);/// v1495 event trigger info
978  }
979  for (UInt_t j = 0; j < fPWTL.size(); j++) {//!following vectors have same size hence this cheating allowed
980  values[index++] = fPWTL.at(j);/// v1495 event trigger info
981  }
982  for (UInt_t j = 0; j < fPWTL2.size(); j++) {//!following vectors have same size hence this cheating allowed
983  values[index++] = fPWTL2.at(j);/// v1495 event trigger info
984  }
985  for (UInt_t j = 0; j < fHoldOff.size(); j++) {//!following vectors have same size hence this cheating allowed
986  values[index++] = fHoldOff.at(j);/// v1495 event trigger info
987  }
988  for (UInt_t j = 0; j < fPipelineDelay.size(); j++) {//!following vectors have same size hence this cheating allowed
989  values[index++] = fPipelineDelay.at(j);/// v1495 event trigger info
990  }
991  return;
992  }
993 
994  for (Int_t i = 0; i < NPlanes; i++) {
995  for (Int_t j = 0; j < StripsPerPlane; j++)
996  values[index++] = fStripsRawEv[i][j];/// Event Raw
997  for (Int_t j = 0; j < StripsPerPlane; j++)
998  values[index++] = fStripsRaw[i][j];/// Accum Raw
999  for (Int_t j = 0; j < StripsPerPlane; j++)
1000  values[index++] = fStripsRaw_v2[i][j];/// Accum Raw
1001  for (Int_t j = 0; j < StripsPerPlane; j++)
1002  values[index++] = fStripsRawScal[i][j];/// v1495 Scaler Raw
1003  }
1004 }
1005 
1006 /**
1007  * Construct the tree
1008  * @param folder Folder in which the tree will be created
1009  * @param prefix Prefix with information about the type of histogram
1010  **/
1011 void QwComptonElectronDetector::ConstructTree(TDirectory *folder, TString &prefix)
1012 {
1013  TString basename = GetSubsystemName();
1014  TString vnameh;
1015  TString vnamet;
1016  folder->cd();
1017  fTree = new TTree("ComptonElectron", "Compton Electron Detector");
1018  fTree->Branch("nevents",&fTree_fNEvents,"nevents/I");
1019  for (Int_t i=0; i< NPlanes; i++){
1020  vnameh = Form("Plane%d_Evt",i);
1021  vnamet = Form("Plane%d_Evt/I",i);
1022  fComptonElectronVector.push_back(0);
1023  fTree->Branch(vnameh,&(fComptonElectronVector[i]),vnamet);
1024  }
1025  return;
1026 }
1027 
1028 /*** Delete the tree */
1030 {
1031  delete fTree;
1032  return;
1033 }
1034 
1035 /*** Fill the tree with data */
1037 {
1038  for (Int_t i=0; i< NPlanes; i++)
1039  fComptonElectronVector[i] = 0;
1040 
1041  fTree_fNEvents = GetNumberOfEvents();
1042  for (Int_t i=0; i< NPlanes; i++){
1043  for (Int_t j=0; j<StripsPerPlane; j++){
1044  if (fStripsEv[i][j] != 0)
1045  fComptonElectronVector[i] += 1;
1046  }
1047  }
1048  fTree->Fill();
1049 
1050  return;
1051 }
1052 
1053 
1054 //*****************************************************************
1056 {//!?what does this do?
1057  string path = getenv_safe_string("QW_TMP") + "/" + "edet_asym";
1058  stringstream ss; ss << myrun;
1059  string str = ss.str();
1060  path += "_" + str + ".txt";
1061 
1062  static Int_t edet_count = 0;
1063  edet_count++;
1064 
1065  ofstream myfile;
1066  if(edet_count == 1) {
1067  QwOut << " " << QwLog::endl;
1068  QwOut << " Address = " << path << QwLog::endl;
1069  QwOut << "Run Number = " << myrun << " Good Events = " << fGoodEventCount << QwLog::endl;
1070  QwOut << " " << QwLog::endl;
1071  myfile.open (path.c_str());
1072  }
1073  else {
1074  myfile.open (path.c_str(),ios::app);
1075  }
1076 
1077  Int_t nchan =0;
1078  for (Int_t i=0; i<NPlanes; i++)
1079  nchan += fStripsRaw[i].size();
1080  QwOut << " there were " << nchan << " strips registered" << QwLog::endl;
1081 
1082  for (Int_t j=0; j<StripsPerPlane; j++) {
1083  myfile << j << " " << fGoodEventCount*fStripsRaw[0][j] << " " << fGoodEventCount*fStripsRaw[1][j] << " " <<
1084  fGoodEventCount*fStripsRaw[2][j] << " " << fGoodEventCount*fStripsRaw[3][j] << endl;
1085  }
1086  myfile.close();
1087  return;
1088 }
1089 /**********
1090  *The condition that accum_count < 5 is there to ensure that spurious noise
1091  *..events do not infiltrate the analyzed data. '5' already implies 5kHz per strip.
1092  *..since the overall Compton rate is 100kHz (integrated over all strips), with 50
1093  *..active strips, one can expect an average rate of 2kHz.
1094  *I should ideally be throwing out the entire event(MPS) if one strip shows spurious data
1095  *********/
VQwSubsystem & operator+=(VQwSubsystem *value)
VQwSubsystem & operator=(VQwSubsystem *value)
Assignment Note: Must be called at the beginning of all subsystems routine call to operator=(VQwSubsy...
#define QwOut
Predefined log drain for explicit output.
Definition: QwLog.h:35
std::vector< std::vector< Double_t > > fStripsRawScal
List of V1495 scaler counts.
Class for the analysis of Compton electron detector data.
static const double m
Definition: QwUnits.h:63
static UInt_t GetUInt(const TString &varvalue)
Int_t ProcessEvBuffer(UInt_t roc_id, UInt_t bank_id, UInt_t *buffer, UInt_t num_words)
std::vector< std::vector< Double_t > > fStripsRawEv
void TrimComment(const char commentchar)
Int_t ProcessConfigurationBuffer(const UInt_t roc_id, const UInt_t bank_id, UInt_t *buffer, UInt_t num_words)
std::vector< std::vector< Double_t > > fStripsRaw
void Difference(VQwSubsystem *value1, VQwSubsystem *value2)
virtual void ConstructHistograms()
Construct the histograms for this subsystem.
Definition: VQwSubsystem.h:209
void ConstructBranchAndVector(TTree *tree, TString &prefix, std::vector< Double_t > &values)
Construct the branch and tree vector.
std::vector< UInt_t > fPipelineDelay
virtual VQwSubsystem & operator=(VQwSubsystem *value)
Assignment Note: Must be called at the beginning of all subsystems routine call to operator=(VQwSubsy...
VQwSubsystem & operator-=(VQwSubsystem *value)
A logfile class, based on an identical class in the Hermes analyzer.
void FillTreeVector(std::vector< Double_t > &values) const
Fill the tree vector.
Bool_t Compare(VQwSubsystem *source)
void CalculateRunningAverage()
Calculate the average for all good events.
std::vector< std::vector< Double_t > > fStripsRaw_v2
void DeleteTree()
Delete the tree for this subsystem.
QwHistogramHelper gQwHists
Globally defined instance of the QwHistogramHelper class.
The pure virtual base class of all subsystems.
Definition: VQwSubsystem.h:59
void FillTree()
Fill the tree for this subsystem.
void Ratio(VQwSubsystem *numer, VQwSubsystem *denom)
void PrintValue() const
Print values of all channels.
void AccumulateRunningSum(VQwSubsystem *value)
Update the running sums for devices.
std::vector< UInt_t > fFirmwareRevision
static std::ostream & endl(std::ostream &)
End of the line.
Definition: QwLog.cc:299
const std::string getenv_safe_string(const char *name)
Definition: QwOptions.h:37
std::vector< std::vector< Double_t > > fStrips
VQwSubsystem & operator*=(VQwSubsystem *value)
virtual void ConstructTree()
Construct the tree for this subsystem.
Definition: VQwSubsystem.h:257
void FillHistograms()
Fill the histograms for this subsystem.
Int_t LoadEventCuts(TString &filename)
Int_t LoadChannelMap(TString mapfile)
Mandatory map file definition.
usr bin c fPIC std
TH1F * Construct1DHist(const TString &inputfile, const TString &name_title)
Int_t LoadInputParameters(TString pedestalfile)
Mandatory parameter file definition.
void Sum(VQwSubsystem *value1, VQwSubsystem *value2)
#define RegisterSubsystemFactory(A)
Definition: QwFactory.h:230
#define QwError
Predefined log drain for errors.
Definition: QwLog.h:40