Class Reference for E1039 Core & Analysis Software
UtilTrigger.h
Go to the documentation of this file.
1 #ifndef _UTIL_TRIGGER__H_
2 #define _UTIL_TRIGGER__H_
3 //#include <vector>
4 class SQHitVector;
5 
6 namespace UtilTrigger {
7  int Hodo2Road(const int h1, const int h2, const int h3, const int h4, const int tb);
8  void Road2Hodo(const int road, int& h1, int& h2, int& h3, int& h4, int& tb);
9  int ExtractRoadID(const SQHitVector* vec);
10 }; // namespace UtilTrigger
11 
12 #endif /* _UTIL_TRIGGER__H_ */
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
void Road2Hodo(const int road, int &h1, int &h2, int &h3, int &h4, int &tb)
Convert a roadset ID to a set of hodo IDs.
Definition: UtilTrigger.cc:19
int Hodo2Road(const int h1, const int h2, const int h3, const int h4, const int tb)
Convert a set of hodo IDs to a roadset ID.
Definition: UtilTrigger.cc:11
int ExtractRoadID(const SQHitVector *vec)
Find a unique road in the given list of SQHits.
Definition: UtilTrigger.cc:40