Class Reference for E1039 Core & Analysis Software
DPTriggerAnalyzer.h
Go to the documentation of this file.
1 #ifndef DPTriggerAnalyzer_H
2 #define DPTriggerAnalyzer_H
3 #include <vector>
4 #include <string>
5 #include <iostream>
6 #include <set>
7 #include <list>
8 #include <map>
9 #include <string>
10 #include <TString.h>
11 #include <fun4all/SubsysReco.h>
12 class SQRun;
13 class SQEvent;
14 class SQHitVector;
15 
16 #define NTRPLANES 4
17 
19 {
20 public:
21  DPTriggerRoad();
22  DPTriggerRoad(const std::list<int>& path);
23 
25  void addTrElement(int uniqueID) { uniqueTrIDs.push_back(uniqueID); }
26  void addTrElement(int detectorID, int elementID) { addTrElement(detectorID*1000 + elementID); }
27 
29  int getTB();
30 
32  void flipTB();
33 
35 
36  int getRoadID() const { return roadID; }
37  double getSigWeight() const { return sigWeight; }
38  double getBkgRate() const { return bkgRate; }
39  double getPxMin() const { return pXmin; }
40  int getTrID(unsigned int i) const { return i < NTRPLANES ? uniqueTrIDs[i] : 0; }
41  int getTrDetectorID(unsigned int i) const { return getTrID(i)/1000; }
42  int getTrElementID(unsigned int i) const { return getTrID(i) % 1000; }
43  TString getStringID();
45 
47 
48  void setRoadID(int id) { roadID = id; }
49  void setSigWeight(double weight) { sigWeight = weight; }
50  void setBkgRate(double rate) { bkgRate = rate; }
51  void setPxMin(double pxmin) { pXmin = pxmin; }
53 
55 
56  bool operator == (const DPTriggerRoad& elem) const;
57  bool operator < (const DPTriggerRoad& elem) const;
59 
61  friend std::ostream& operator << (std::ostream& os, const DPTriggerRoad& road);
62 
63 private:
64 
66  int roadID;
67 
69  double sigWeight;
70 
72  double bkgRate;
73 
75  double pXmin;
76 
78  std::vector<int> uniqueTrIDs;
79 };
80 
82 {
83 public:
85  class MatrixNode;
86 
87 public:
88  typedef enum { NIM_AND, NIM_OR } NimMode;
89  DPTriggerAnalyzer(const std::string &name = "DPTriggerAnalyzer");
90  virtual ~DPTriggerAnalyzer();
91 
92  int Init(PHCompositeNode *topNode);
93  int InitRun(PHCompositeNode *topNode);
94  int process_event(PHCompositeNode *topNode);
95  int End(PHCompositeNode *topNode);
96 
97  const std::string& get_road_set_file_name() const {
98  return _road_set_file_name;
99  }
100  void set_road_set_file_name(const std::string& roadSetFileName) {
101  _road_set_file_name = roadSetFileName;
102  }
103 
104  const std::string& get_output_node_name() const { return _output_node_name; }
105  void set_output_node_name(const std::string& name) { _output_node_name = name; }
106 
107  void use_trigger_hit() { _use_trig_hit = true; }
108  void require_in_time(const bool val) { _req_intime = val; }
109  void set_nim_mode(const NimMode nim1, const NimMode nim2);
110 
112  void buildTriggerMatrix();
113 
115  //void analyzeTrigger(DPMCRawEvent* rawEvent);
116 
118  void searchMatrix(MatrixNode* node, int level, int index);
119 
121  void deleteMatrix(MatrixNode* node);
122 
124  std::list<DPTriggerRoad>& getRoadsFound(int index) { return roads_found[index]; }
125 
127  void printHitPattern();
128  void printPath();
129 
130 private:
131 
132  int GetNodes(PHCompositeNode *topNode);
133 
135  std::string _road_set_file_name;
136  std::string _output_node_name;
137  bool _use_trig_hit;
138  bool _req_intime;
139  NimMode _mode_nim1;
140  NimMode _mode_nim2;
141 
143  typedef std::vector<std::set<int> > TrHitPattern;
144  TrHitPattern data;
145 
147 
148  MatrixNode* matrix[2];
149  std::map<TString, DPTriggerRoad> roads[2];
151 
153  std::list<DPTriggerRoad> roads_found[2];
154 
156  std::list<int> path;
157 
159  bool NIMONLY;
160 
161  SQRun* _run_header;
162  SQEvent* _event_header;
163  SQEvent* _event_header_out; //< Node for output
164  SQHitVector* _hit_vector;
165 };
166 
168 {
169 public:
170  MatrixNode(int uID);
171 
173  void add(MatrixNode* child);
174 
175 public:
176  int uniqueID;
177  std::list<MatrixNode*> children;
178 };
179 
180 #endif
#define NTRPLANES
void add(MatrixNode *child)
add a child
std::list< MatrixNode * > children
DPTriggerAnalyzer(const std::string &name="DPTriggerAnalyzer")
void deleteMatrix(MatrixNode *node)
Tree deletion.
const std::string & get_road_set_file_name() const
int InitRun(PHCompositeNode *topNode)
void buildTriggerMatrix()
Build the trigger matrix by the input roads list.
void require_in_time(const bool val)
void set_road_set_file_name(const std::string &roadSetFileName)
void printHitPattern()
Helper functions to print various things.
void set_nim_mode(const NimMode nim1, const NimMode nim2)
int Init(PHCompositeNode *topNode)
const std::string & get_output_node_name() const
int End(PHCompositeNode *topNode)
Called at the end of all processing.
std::list< DPTriggerRoad > & getRoadsFound(int index)
Helper function to retrieve the found road list.
int process_event(PHCompositeNode *topNode)
void set_output_node_name(const std::string &name)
void searchMatrix(MatrixNode *node, int level, int index)
Test the trigger pattern.
double getPxMin() const
void setPxMin(double pxmin)
int getTrDetectorID(unsigned int i) const
void setSigWeight(double weight)
double getSigWeight() const
int getTrElementID(unsigned int i) const
int getTB()
Get the sign of LR or TB.
void addTrElement(int uniqueID)
add one hit into the road
double getBkgRate() const
friend std::ostream & operator<<(std::ostream &os, const DPTriggerRoad &road)
printer
bool operator==(const DPTriggerRoad &elem) const
comparison
void flipTB()
flip the LR or TB
void setBkgRate(double rate)
int getRoadID() const
Other gets.
int getTrID(unsigned int i) const
void addTrElement(int detectorID, int elementID)
void setRoadID(int id)
Sets.
bool operator<(const DPTriggerRoad &elem) const
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
An SQ interface class to hold the run-level info.
Definition: SQRun.h:18