QwAnalysis
QwSubsystemArrayTracking.h
Go to the documentation of this file.
1 /**********************************************************\
2 * File: QwSubsystemArrayTracking.h *
3 * *
4 * Author: P. M. King, Rakitha Beminiwattha *
5 * Time-stamp: <2008-07-22 15:50> *
6 \**********************************************************/
7 
8 #ifndef __QWSUBSYSTEMARRAYTRACKING__
9 #define __QWSUBSYSTEMARRAYTRACKING__
10 
11 // Qweak headers
12 #include "QwSubsystemArray.h"
13 #include "QwHitContainer.h"
14 #include "VQwSubsystemTracking.h"
15 
16 
17 ///
18 /// \ingroup QwTracking
20 
21  private:
22 
23  /// Private default constructor
24  QwSubsystemArrayTracking(); // not implemented, will throw linker error on use
25 
26  public:
27 
28  /// Constructor with options
30  /// Default destructor
32 
33  /// \brief Get the subsystem with the specified name
34  VQwSubsystemTracking* GetSubsystemByName(const TString& name);
35 
36  /// \brief Get the detector info for all detectors
37  const QwGeometry GetGeometry();
38 
39  // Update the wire-based hit list from each subsystem
40  void GetHitList(QwHitContainer& hitlist);
41  void GetHitList(QwHitContainer* hitlist) { GetHitList(*hitlist); };
42 
43  ///
45 
46  protected:
47 
48  /// Test whether this subsystem array can contain a particular subsystem
49  static Bool_t CanContain(VQwSubsystem* subsys) {
50  return (dynamic_cast<VQwSubsystemTracking*>(subsys) != 0);
51  };
52 
53 }; // class QwSubsystemArrayTracking
54 
55 #endif // __QWSUBSYSTEMARRAYTRACKING__
VQwSubsystemTracking * GetSubsystemByName(const TString &name)
Get the subsystem with the specified name.
An options class.
Definition: QwOptions.h:133
static Bool_t CanContain(VQwSubsystem *subsys)
Test whether this subsystem array can contain a particular subsystem.
void GetHitList(QwHitContainer &hitlist)
QwSubsystemArrayTracking(QwOptions &options)
Constructor with options.
The pure virtual base class of all subsystems.
Definition: VQwSubsystem.h:59
const QwGeometry GetGeometry()
Get the detector info for all detectors.
Collection of QwDetectorInfo pointers that specifies an experimental geometry.
Definition: QwGeometry.h:27
QwSubsystemArrayTracking()
Private default constructor.
virtual ~QwSubsystemArrayTracking()
Default destructor.
void GetHitList(QwHitContainer *hitlist)