QwAnalysis
QwSubsystemArrayTracking.cc
Go to the documentation of this file.
1 /*!
2  *
3  * \file QwSubsystemArrayTracking.cc
4  *
5  * \brief Implementation of the tracking subsystem array
6  */
7 
9 
10 // Qweak headers
11 #include "QwDriftChamber.h"
12 
13 /**
14  * Get the subsystem with the specified name
15  * @param name Name of the subsystem
16  * @return Subsystem with that name
17  */
19 {
21 }
22 
23 
24 /**
25  * Get the detector info for all subsystems
26  * @return Detector info container
27  */
29 {
30  QwGeometry geometry;
31  if (!empty()) {
32  for (iterator subsys = begin(); subsys != end(); ++subsys) {
33  VQwSubsystemTracking* subsys_tracking =
34  dynamic_cast<VQwSubsystemTracking*>(subsys->get());
35  if (subsys_tracking != 0) {
36  geometry.push_back(subsys_tracking->GetDetectorInfo());
37  }
38  }
39  }
40  return geometry;
41 }
42 
43 
44 /**
45  * Get the hit list from the subsystems in this array
46  * @param hitlist Hit container to store the hits in
47  */
49 {
50  if (!empty()) {
51  hitlist.clear();
52  for (iterator subsys = begin(); subsys != end(); ++subsys) {
53  VQwSubsystemTracking* subsys_tracking =
54  dynamic_cast<VQwSubsystemTracking*>(subsys->get());
55  if (subsys_tracking != 0) {
56  subsys_tracking->GetHitList(hitlist);
57  } else {
58  std::cerr << "QwSubsystemArrayTracking::GetHitList: Subsystem \""
59  << ((subsys)->get())->GetSubsystemName()
60  << "\" isn't a tracking subsystem." << std::endl;
61  }
62  }
63  }
64 }
65 
66 
67 
69 {
70 
71  // Just try to use a default copy constructor... first
72  //
73  // for (const_iterator subsys = dummy_source->begin(); subsys != dummy_source->end(); ++subsys) {
74  for (iterator subsys = begin(); subsys != end(); ++subsys) {
75  VQwSubsystemTracking* subsys_tracking = dynamic_cast<VQwSubsystemTracking*>(subsys->get());
76  subsys_tracking->FillHardwareErrorSummary();
77  }
78  return;
79 }
VQwSubsystemTracking * GetSubsystemByName(const TString &name)
Get the subsystem with the specified name.
virtual void GetHitList(QwHitContainer &grandHitContainer)=0
Get the hit list.
void push_back(QwDetectorInfo &detector)
Add single detector object.
Definition: QwGeometry.h:55
virtual VQwSubsystem * GetSubsystemByName(const TString &name)
Get the subsystem with the specified name.
void GetHitList(QwHitContainer &hitlist)
const QwGeometry GetGeometry()
Get the detector info for all detectors.
Collection of QwDetectorInfo pointers that specifies an experimental geometry.
Definition: QwGeometry.h:27
const QwGeometry & GetDetectorInfo() const
Get the detector geometry information.
virtual void FillHardwareErrorSummary()
Hardware error summary.