QwAnalysis
VQwSubsystem.cc
Go to the documentation of this file.
1 /**********************************************************\
2 * File: VQwSubsystem.C *
3 * *
4 * Author: P. M. King, Rakitha Beminiwattha *
5 * Time-stamp: <2007-05-08 15:40> *
6 \**********************************************************/
7 
8 /*------------------------------------------------------------------------*//*!
9 
10  \defgroup QwAnalysis QwAnalysis
11 
12  \section myoverview Overview
13 
14  Qweak Analysis Framework
15 
16  Each subsystem will have a class derived from "VQwSubsystem", and
17  will be responsible for decoding of it's own data stream and any
18  special event processing required. QwSubsystemArray will handle
19  mutiple "VQwSubsystem" objects and one call on the QwSubsystemArray
20  will handle all the calls to that method in each subsystem. Each
21  susbsytem will also own the histograms and ntupling functions used
22  for its data.
23 
24 *//*-------------------------------------------------------------------------*/
25 
26 #include "VQwSubsystem.h"
27 
28 // Qweak headers
29 #include "QwLog.h"
30 #include "QwSubsystemArray.h"
31 #include "QwParameterFile.h"
32 
33 
34 Int_t ERROR = -1;
35 
36 
38 {
39  Bool_t local_debug = false;
40 
41  file.RewindToFileStart();
42 
43  while (file.ReadNextLine()) {
44  // Trim comments and whitespace
45  file.TrimComment('!');
46  file.TrimComment('#');
47  file.TrimWhitespace();
48 
49  // Find key-value pairs
50  std::string key, value;
51  if (file.HasVariablePair("=", key, value)) {
52  if ( value.size() > 0) {
53 
54  // If-Ordering Optimization for parity
55  // Beamline 1423
56  // MainDetector 123
57  // Lumi 123
58  // Helicity 1
59  // Scanner 12
60  // Beammod 1
61  // 1(6),2(4),3(3),4(1)
62  // map, param, eventcut, geom
63 
64  // Map file definition
65  if (key == "map" ) {
66  LoadChannelMap(value);
67  // fDetectorMapsNames.push_back(value);
68  }
69  // Parameter file definition
70  else if (key == "param" ) {
71  LoadInputParameters(value);
72  // fDetectorMapsNames.push_back(value);
73  }
74  // Event cut file definition
75  else if (key == "eventcut") {
76  LoadEventCuts(value);
77  // fDetectorMapsNames.push_back(value);
78  }
79  // Geometry file definition
80  else if (key == "geom" ) {
82  // fDetectorMapsNames.push_back(value);
83  }
84  // Crosstalk file definition
85  else if (key == "cross" ) {
87  // fDetectorMapsNames.push_back(value);
88  }
89  //Event type mask
90  else if (key == "mask") {
91  SetEventTypeMask(file.GetUInt(value));
92  }
93  }
94 
95  } // end of HasVariablePair
96  } // end of while
97 
98 
99  //
100  // The above approach that fDetectorMapsNames.push_back(value) in VQwSubsystem doesn't work, because it reads the following...
101  //
102  // >>> VQwSubsystem::LoadDetectorMaps Subsytem Main Detector uses the following map files :
103  // ---> 1/3 : qweak_maindet.map
104  // ---> 2/3 : qweak_maindet_pedestal.map
105  // ---> 3/3 : qweak_maindet_eventcuts.in
106 
107  //
108  // So, fDetectorMapsNams.push_back will be called LoadChannelMap(), LoadInputParameter(), LoadEventCuts(),
109  // and LoadGeometryDefinition() in each subsystem.
110  //
111  // >>> VQwSubsystem::LoadDetectorMaps Subsytem Main Detector uses the following map files :
112  // ---> 1/3 : /home/jhlee/QwAnalysis/trunk/Parity/prminput/qweak_maindet.10213-.map
113  // ---> 2/3 : /home/jhlee/QwAnalysis/trunk/Parity/prminput/qweak_maindet_pedestal.10229-.map
114  // ---> 3/3 : /home/jhlee/QwAnalysis/trunk/Parity/prminput/qweak_maindet_eventcuts.in
115  //
116  // Friday, March 18 15:32:09 EDT 2011, jhlee
117 
118  PrintDetectorMaps(local_debug);
119 
120  return 0;
121 }
122 
123 
124 /**
125  * Set the parent of this subsystem to the specified parent array. A subsystem
126  * can have multiple parents, but that is not recommended.
127  *
128  * @param parent Parent array
129  */
131 {
132  // Ignore null array pointers
133  if (! parent) return;
134 
135  // Check whether array already in parent list
136  for (size_t i = 0; i < fArrays.size(); i++) {
137  // Equality tested by pointer equality
138  if (fArrays.at(i) == parent) return;
139  }
140 
141  // Add array to the list
142  fArrays.push_back(parent);
143 }
144 
145 /**
146  * Get the parent of this subsystem, and print an error if no parent is defined.
147  *
148  * @param parent Parent number (default = 0)
149  * @return Pointer to the parent subsystem array
150  */
151 QwSubsystemArray* VQwSubsystem::GetParent(const unsigned int parent) const
152 {
153  // This is ambiguously for multiple parents
154  if (fArrays.size() > 0 && fArrays.size() > parent)
155  return fArrays.at(parent);
156  else {
157  QwError << "Subsystem " << GetSubsystemName() << " has no parent!" << QwLog::endl;
158  return 0;
159  }
160 }
161 
162 /**
163  * Get the sibling of this subsystem with the specified name. If no parents is
164  * defined, an error is printed by GetParent(). If no sibling with that name
165  * exists, the null pointer is returned.
166  *
167  * @param name Name of the sibling subsystem
168  * @return Pointer to the sibling subsystem
169  */
170 VQwSubsystem* VQwSubsystem::GetSibling(const std::string& name) const
171 {
172  // Get the parent and check for existence
173  QwSubsystemArray* parent = GetParent();
174  if (parent != 0)
175  // Return the subsystem with name in the parent
176  return parent->GetSubsystemByName(name);
177  else
178  return 0; // GetParent() prints error already
179 }
180 
181 /**
182  * Get the value corresponding to some variable name from a different
183  * subsystem.
184  * @param name Name of the desired variable
185  * @param value Pointer to the value to be filled by the call
186  * @return True if the variable was found, false if not found
187  */
189  const TString& name,
190  VQwHardwareChannel* value) const
191 {
192  // Get the parent and check for existence (NOTE: only one parent supported)
193  QwSubsystemArray* parent = GetParent();
194  if (parent != 0) {
195  return parent->RequestExternalValue(name, value);
196  }
197  return kFALSE; // Error: could not find variable in parent
198 }
199 
200 
201 /**
202  * Publish a variable name to the subsystem array
203  * @param name Name of the variable
204  * @param desc Description of the variable
205  * @param value Channel to publish
206  * @return True if the variable could be published, false otherwise
207  */
209  const TString& name,
210  const TString& desc,
211  const VQwHardwareChannel* value) const
212 {
213  // Get the parent and check for existence
214  QwSubsystemArray* parent = GetParent();
215  if (parent != 0) {
216  // Publish the variable with name in the parent
217  if (parent->PublishInternalValue(name, desc, this, value) == kFALSE) {
218  QwError << "Could not publish variable " << name
219  << " in subsystem " << GetSubsystemName() << "!" << QwLog::endl;
220  return kFALSE; // Error: variable could not be puslished
221  }
222  } else {
223  QwError << "I am an orphan :-(" << QwLog::endl;
224  return kFALSE; // Error: no parent defined
225  }
226  return kTRUE; // Success
227 }
228 
230 {
231  fBank_IDs.clear();
232  fROC_IDs.clear();
233  fCurrentROC_ID = -1;
234  fCurrentBank_ID = -1;
235 }
236 
237 Int_t VQwSubsystem::FindIndex(const std::vector<UInt_t> &myvec, const UInt_t value) const
238 {
239  Int_t index = -1;
240  for (size_t i=0 ; i < myvec.size(); i++ ){
241  if (myvec[i]==value){
242  index=i;
243  break;
244  }
245  }
246  return index;
247 }
248 
249 Int_t VQwSubsystem::GetSubbankIndex(const UInt_t roc_id, const UInt_t bank_id) const
250 {
251  // Bool_t lDEBUG=kTRUE;
252  Int_t index = -1;
253  Int_t roc_index = FindIndex(fROC_IDs, roc_id);//will return the vector index for the Roc from the vector fROC_IDs.
254  // std::cout << "------------- roc_index" << roc_index <<std::endl;
255  if (roc_index>=0){
256  index = FindIndex(fBank_IDs[roc_index],bank_id);
257  // std::cout << " Find Index " << index
258  // << " roc index " << roc_index
259  // << " index " << index <<std::endl;
260 
261  if (index>=0){
262  for (Int_t i=0; i<roc_index; i++){
263  index += (fBank_IDs[i].size());
264  // std::cout << " i " << i
265  // << " fBank_IDs[i].size() " << fBank_IDs[i].size()
266  // << " index " << index
267  // << std::endl;
268  }
269  }
270  }
271  // std::cout << "return:index " << index << std::endl;
272  return index;
273 }
274 
275 Int_t VQwSubsystem::RegisterROCNumber(const UInt_t roc_id, const UInt_t bank_id)
276 {
277  Int_t stat = 0;
278  Int_t roc_index = 0;
279  roc_index = FindIndex(fROC_IDs, roc_id);
280 
281  //will return the vector index for this roc_id on the vector fROC_IDs
282  if (roc_index==-1){
283  fROC_IDs.push_back(roc_id); // new ROC number is added.
284  roc_index = (fROC_IDs.size() - 1);
285  std::vector<UInt_t> tmpvec(1,bank_id);
286  fBank_IDs.push_back(tmpvec);
287  } else {
288  Int_t bank_index = FindIndex(fBank_IDs[roc_index],bank_id);
289  if (bank_index==-1) { // if the bank_id is not registered then register it.
290  fBank_IDs[roc_index].push_back(bank_id);
291  } else {
292  // This subbank in this ROC has already been registered!
293  QwError << std::hex << "VQwSubsystem::RegisterROCNumber: "
294  << "This subbank (0x" << bank_id << ") "
295  << "in this ROC (0x" << roc_id << ") "
296  << "has already been registered!"
297  << std::dec << QwLog::endl;
298  stat = ERROR;
299  }
300  }
301  if (stat!=-1){
302  fCurrentROC_ID = roc_id;
303  fCurrentBank_ID = bank_id;
304  } else {
305  fCurrentROC_ID = -1;
306  fCurrentBank_ID = -1;
307  }
308  return stat;
309 }
310 
311 Int_t VQwSubsystem::RegisterSubbank(const UInt_t bank_id)
312 {
313  Int_t stat = 0;
314  if (fCurrentROC_ID != -1){
315  stat = RegisterROCNumber(fCurrentROC_ID, bank_id);
316  fCurrentBank_ID = bank_id;
317  } else {
318  // There is not a ROC registered yet!
319  QwError << std::hex << "VQwSubsystem::RegisterSubbank: "
320  << "This subbank (" << bank_id << ") "
321  << "does not have an associated ROC! "
322  << "Add a 'ROC=#' line to the map file."
323  << std::dec << QwLog::endl;
324  stat = ERROR;
325  fCurrentROC_ID = -1;
326  fCurrentBank_ID = -1;
327  }
328  return stat;
329 }
330 
332 {
333  std::cout << "Name of this subsystem: " << fSystemName << std::endl;
334  for (size_t roc_index = 0; roc_index < fROC_IDs.size(); roc_index++) {
335  std::cout << "ROC" << std::dec << fROC_IDs[roc_index] << ": ";
336  for (size_t bank_index = 0; bank_index < fBank_IDs[roc_index].size(); bank_index++)
337  std::cout << std::hex << "0x" << fBank_IDs[roc_index][bank_index] << " ";
338  std::cout << std::dec << std::endl;
339  }
340  for (size_t array = 0; array < fArrays.size(); array++)
341  std::cout << "in array " << std::hex << fArrays.at(array) << std::dec << std::endl;
342 }
343 
344 
346 {
347  this->fIsDataLoaded = value->fIsDataLoaded;
348  return *this;
349 }
350 
351 
352 
354 {
355  return fDetectorMapsNames;
356 }
357 
358 
359 
360 std::map<TString, TString> VQwSubsystem::GetDetectorMaps()
361 {
362  return fDetectorMaps;
363 }
364 
365 
366 
367 void VQwSubsystem::PrintDetectorMaps(Bool_t status) const
368 {
369  Bool_t local_debug = false;
370  if (status) {
371  QwMessage << " >>> VQwSubsystem::LoadDetectorMaps Subsystem " << fSystemName
372  << " uses the following map files:" << QwLog::endl;
373 
374  Int_t index = 0;
375  size_t total = fDetectorMaps.size();
376 
377  if (total != 0) {
378 
379  for (std::map<TString,TString>::const_iterator ii = fDetectorMaps.begin();
380  ii != fDetectorMaps.end(); ++ii) {
381 
382  index++;
383  TString name = (*ii).first;
384  TString all = (*ii).second;
385  QwMessage << " ---> " << index << "/" << total << ": " << name << QwLog::endl;
386  if (local_debug)
387  QwMessage << " " << all << QwLog::endl;
388 
389  }
390 
391  } else {
392  QwMessage << " ---> No map files" << QwLog::endl;
393  }
394  }
395 }
Int_t GetSubbankIndex() const
Definition: VQwSubsystem.h:303
#define QwMessage
Predefined log drain for regular messages.
Definition: QwLog.h:50
std::map< TString, TString > fDetectorMaps
Definition: VQwSubsystem.h:322
Definition of the pure virtual base class of all subsystems.
virtual VQwSubsystem * GetSubsystemByName(const TString &name)
Get the subsystem with the specified name.
VQwSubsystem * GetSibling(const std::string &name) const
Get the sibling with specified name.
virtual std::vector< TString > GetParamFileNameList()
void SetParent(QwSubsystemArray *parent)
Set the parent of this subsystem to the specified array.
static UInt_t GetUInt(const TString &varvalue)
std::vector< QwSubsystemArray * > fArrays
Vector of pointers to subsystem arrays that contain this subsystem.
Definition: VQwSubsystem.h:334
virtual Int_t LoadChannelMap(TString mapfile)=0
Mandatory map file definition.
Bool_t PublishInternalValue(const TString name, const TString desc, const VQwSubsystem *subsys, const VQwHardwareChannel *element)
Publish the value name with description from a subsystem in this array.
Bool_t HasVariablePair(const std::string &separatorchars, std::string &varname, std::string &varvalue)
void TrimComment(const char commentchar)
Bool_t RequestExternalValue(const TString &name, VQwHardwareChannel *value) const
Retrieve the variable name from other subsystem arrays.
virtual Int_t LoadDetectorMaps(QwParameterFile &file)
Parse parameter file to find the map files.
Definition: VQwSubsystem.cc:37
virtual std::map< TString, TString > GetDetectorMaps()
virtual Int_t LoadEventCuts(TString mapfile)
Optional event cut file.
Definition: VQwSubsystem.h:163
virtual Int_t LoadCrosstalkDefinition(TString mapfile)
Optional crosstalk definition.
Definition: VQwSubsystem.h:161
Int_t FindIndex(const std::vector< UInt_t > &myvec, const UInt_t value) const
virtual VQwSubsystem & operator=(VQwSubsystem *value)
Assignment Note: Must be called at the beginning of all subsystems routine call to operator=(VQwSubsy...
A logfile class, based on an identical class in the Hermes analyzer.
TString fSystemName
Name of this subsystem.
Definition: VQwSubsystem.h:315
void SetEventTypeMask(const UInt_t mask)
Set event type mask.
Definition: VQwSubsystem.h:166
Bool_t ReadNextLine()
virtual void PrintInfo() const
Print some information about the subsystem.
The pure virtual base class of all subsystems.
Definition: VQwSubsystem.h:59
std::vector< std::vector< UInt_t > > fBank_IDs
Vector of Bank IDs per ROC ID associated with this subsystem.
Definition: VQwSubsystem.h:331
Int_t fCurrentROC_ID
ROC ID that is currently being processed.
Definition: VQwSubsystem.h:325
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.
virtual Int_t LoadGeometryDefinition(TString mapfile)
Optional geometry definition.
Definition: VQwSubsystem.h:159
static std::ostream & endl(std::ostream &)
End of the line.
Definition: QwLog.cc:299
std::vector< UInt_t > fROC_IDs
Vector of ROC IDs associated with this subsystem.
Definition: VQwSubsystem.h:329
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 TrimWhitespace(TString::EStripType head_tail=TString::kBoth)
QwSubsystemArray * GetParent(const unsigned int parent=0) const
Get the parent of this subsystem.
Int_t ERROR
Definition: VQwSubsystem.cc:34
Bool_t PublishInternalValue(const TString &name, const TString &desc, const VQwHardwareChannel *value) const
Publish a variable name to the parent subsystem array.
std::vector< TString > fDetectorMapsNames
Definition: VQwSubsystem.h:321
virtual Int_t LoadInputParameters(TString mapfile)=0
Mandatory parameter file definition.
Int_t fCurrentBank_ID
Bank ID that is currently being processed.
Definition: VQwSubsystem.h:326
Bool_t fIsDataLoaded
Has this subsystem gotten data to be processed?
Definition: VQwSubsystem.h:319
void ClearAllBankRegistrations()
Clear all registration of ROC and Bank IDs for this subsystem.
virtual void PrintDetectorMaps(Bool_t status) const
#define QwError
Predefined log drain for errors.
Definition: QwLog.h:40
TString GetSubsystemName() const
Definition: VQwSubsystem.h:93