28 for(std::list<int>::const_iterator iter = path.begin(); iter != path.end(); ++iter)
30 if(*iter < 0)
continue;
31 uniqueTrIDs.push_back(*iter);
38 for(
unsigned int i = 0; i <
NTRPLANES; ++i)
41 TB = TB + (((detectorID & 1) == 0) ? 1 : -1);
45 if(TB == -4)
return -1;
53 for(
unsigned int i = 0; i <
NTRPLANES; ++i)
59 uniqueTrIDs[i] = detectorID*1000 + elementID;
65 for(
unsigned int i = 0; i <
NTRPLANES; ++i)
67 if(uniqueTrIDs[i] != elem.uniqueTrIDs[i])
return false;
75 return sigWeight < elem.sigWeight;
81 for(
unsigned int i = 0; i < uniqueTrIDs.size(); ++i)
83 sid += TString::Format(
"%06d", uniqueTrIDs[i]);
91 os <<
"Trigger Road ID = " << road.roadID <<
", signal = " << road.sigWeight <<
", bkg = " << road.bkgRate <<
"\n ";
92 for(
unsigned int i = 0; i <
NTRPLANES; ++i)
94 os << road.uniqueTrIDs[i] <<
" == ";
104 _road_set_file_name(
"trigger_67.txt"),
105 _output_node_name(
""),
106 _use_trig_hit(false),
110 _run_header(nullptr),
111 _event_header(nullptr),
112 _event_header_out(nullptr),
137 int charge = (int) -1e3, roadID = -1;
138 int uIDs[
NTRPLANES] = { -1, -1, -1, -1 };
139 double pXmin = -1.e6, sigWeight = -1.e6, bkgRate = -1.e6;
141 std::ifstream fin(gSystem->ExpandPathName(_road_set_file_name.c_str()), std::ifstream::in);
144 while (getline(fin, line)) {
145 stringstream ss(line);
147 ss >> charge >> roadID;
150 ss >> pXmin >> sigWeight >> bkgRate;
160 roads[(-charge + 1) / 2].insert(
161 std::map<TString, DPTriggerRoad>::value_type(road.
getStringID(),
166 LogInfo(
"NIM Only mode NOT supported now.");
177 return GetNodes(topNode);
183 if (_event_header_out != _event_header) {
184 *_event_header_out = *_event_header;
189 map<int, int> nhit_det;
190 for (Int_t ihit = 0; ihit < _hit_vector->
size(); ++ihit) {
191 if (_req_intime && ! _hit_vector->
at(ihit)->
is_in_time())
continue;
212 bool nim1_on = _mode_nim1 ==
NIM_AND ? HYL && HYR : HYL || HYR;
213 bool nim2_on = _mode_nim2 ==
NIM_AND ? HXT && HXB : HXT || HXB;
220 for(Int_t ihit = 0; ihit < _hit_vector->
size(); ++ihit) {
221 SQHit *hit=_hit_vector->
at(ihit);
222 if (_req_intime && ! hit->
is_in_time())
continue;
228 bool all_planes_have_hits =
true;
230 if (data[i].empty()) {
231 all_planes_have_hits =
false;
237 for(
int i = 0; i < 2; ++i) {
239 roads_found[i].clear();
240 if (all_planes_have_hits)
searchMatrix(matrix[i], 0, i);
248 int nHiPxPlusTop = 0;
249 int nHiPxPlusBot = 0;
250 int nHiPxMinusTop = 0;
251 int nHiPxMinusBot = 0;
253 for (std::list<DPTriggerRoad>::iterator iter = roads_found[0].begin();
254 iter != roads_found[0].end(); ++iter) {
255 if (iter->getTB() > 0) {
257 if (iter->getPxMin() > 3.) ++nHiPxPlusTop;
260 if (iter->getPxMin() > 3.) ++nHiPxPlusBot;
264 for (std::list<DPTriggerRoad>::iterator iter = roads_found[1].begin();
265 iter != roads_found[1].end(); ++iter) {
266 if (iter->getTB() > 0) {
268 if (iter->getPxMin() > 3.) ++nHiPxMinusTop;
271 if (iter->getPxMin() > 3.) ++nHiPxMinusBot;
275 bool fpga1_on = (nPlusTop > 0 && nMinusBot > 0) || (nPlusBot > 0 && nMinusTop > 0);
276 bool fpga2_on = (nPlusTop > 0 && nMinusTop > 0) || (nPlusBot > 0 && nMinusBot > 0);
277 bool fpga3_on = (nPlusTop > 0 && nPlusBot > 0) || (nMinusTop > 0 && nMinusBot > 0);
278 bool fpga4_on = nPlusTop > 0 || nMinusTop > 0 || nPlusBot > 0 || nMinusBot > 0 ;
279 bool fpga5_on = nHiPxPlusTop > 0 || nHiPxMinusTop > 0 || nHiPxPlusBot > 0 || nHiPxMinusBot > 0;
295 _event_header = findNode::getClass<SQEvent>(topNode,
"SQEvent");
296 if (!_event_header) {
301 string name_hit_vec = _use_trig_hit ?
"SQTriggerHitVector" :
"SQHitVector";
302 _hit_vector = findNode::getClass<SQHitVector>(topNode, name_hit_vec);
308 if (_output_node_name ==
"") {
309 _event_header_out = _event_header;
311 _event_header_out = findNode::getClass<SQEvent>(topNode, _output_node_name);
312 if (!_event_header_out) {
319 _event_header_out = (
SQEvent*)_event_header->Clone();
320 _event_header_out->
Reset();
334 for (
int i = 0; i < 2; ++i) {
336 for (std::map<TString, DPTriggerRoad>::iterator iter = roads[i].begin(); iter != roads[i].end(); ++iter) {
338 parentNode[0] = matrix[i];
340 int uniqueID = iter->second.getTrID(j);
341 bool isNewNode =
true;
342 for (std::list<MatrixNode*>::iterator jter = parentNode[j]->children.begin(); jter != parentNode[j]->
children.end(); ++jter) {
343 if (uniqueID == (*jter)->uniqueID) {
344 parentNode[j + 1] = *jter;
353 parentNode[j]->
add(newNode);
354 parentNode[j + 1] = newNode;
369 if (roads[index].find(road_found.
getStringID()) != roads[index].end())
370 roads_found[index].push_back(road_found);
376 for (std::list<MatrixNode*>::iterator iter = node->
children.begin(); iter != node->
children.end(); ++iter) {
377 if (data[level].find((*iter)->uniqueID) == data[level].end())
385 if (node ==
NULL)
return;
387 for (std::list<MatrixNode*>::iterator iter = node->
children.begin(); iter != node->
children.end(); ++iter) {
395 for (
unsigned int i = 1; i <
NTRPLANES; ++i) {
396 std::cout <<
"Lv. " << i <<
": ";
397 for (std::set<int>::iterator iter = data[i].begin(); iter != data[i].end(); ++iter) {
398 std::cout << *iter <<
" ";
400 std::cout << std::endl;
405 std::cout <<
"Found one road: " << std::endl;
406 for (std::list<int>::iterator iter = path.begin(); iter != path.end(); ++iter) {
407 std::cout << *iter <<
" === ";
409 std::cout << std::endl;
421 children.push_back(child);
std::ostream & operator<<(std::ostream &os, const DPTriggerRoad &road)
void add(MatrixNode *child)
add a child
std::list< MatrixNode * > children
DPTriggerAnalyzer(const std::string &name="DPTriggerAnalyzer")
void deleteMatrix(MatrixNode *node)
Tree deletion.
int InitRun(PHCompositeNode *topNode)
void buildTriggerMatrix()
Build the trigger matrix by the input roads list.
void printHitPattern()
Helper functions to print various things.
void set_nim_mode(const NimMode nim1, const NimMode nim2)
virtual ~DPTriggerAnalyzer()
int Init(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
void searchMatrix(MatrixNode *node, int level, int index)
Test the trigger pattern.
void setPxMin(double pxmin)
int getTrDetectorID(unsigned int i) const
void setSigWeight(double weight)
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
bool operator==(const DPTriggerRoad &elem) const
comparison
void flipTB()
flip the LR or TB
void setBkgRate(double rate)
void setRoadID(int id)
Sets.
bool operator<(const DPTriggerRoad &elem) const
User interface class about the geometry of detector planes.
int getDetectorID(const std::string &detectorName) const
Get the plane position.
static GeomSvc * instance()
singlton instance
int getHodoStation(const int detectorID) const
Return a station number (1-4) for hodo planes or "0" for others.
PHBoolean addNode(PHNode *)
An SQ interface class to hold one event header.
virtual void set_trigger(const SQEvent::TriggerMask i, const bool a)=0
virtual const SQHit * at(const size_t idkey) const =0
virtual size_t size() const =0
An SQ interface class to hold one detector hit.
virtual bool is_in_time() const
Return 'true' if this hit is in the time window.
virtual short get_element_id() const
Return the element ID of this hit.
virtual short get_detector_id() const
Return the detector ID of this hit.
static recoConsts * instance()
virtual void set_CharFlag(const std::string &name, const std::string &flag)
overide the virtual function to expand the environmental variables