Class Reference for E1039 Core & Analysis Software
UtilSQHit.h
Go to the documentation of this file.
1 #ifndef _UTIL_SQHIT__H_
2 #define _UTIL_SQHIT__H_
3 class SQEvent;
4 class SQHitVector;
5 
7 namespace UtilSQHit {
9  SQHitVector* FindHits(const SQHitVector* vec_in, const std::string det_name, const bool in_time=false);
10  SQHitVector* FindHits(const SQHitVector* vec_in, const int det_id , const bool in_time=false);
11 
13  SQHitVector* FindFirstHits(const SQHitVector* vec_in, const std::string det_name, const bool in_time=false);
14  SQHitVector* FindFirstHits(const SQHitVector* vec_in, const int det_id , const bool in_time=false);
15 
17  std::vector<SQHit*>* FindHitsFast(const SQEvent* evt, const SQHitVector* hit_vec, const std::string det_name);
18  std::vector<SQHit*>* FindHitsFast(const SQEvent* evt, const SQHitVector* hit_vec, const int det_id);
19 
21  std::vector<SQHit*>* FindTriggerHitsFast(const SQEvent* evt, const SQHitVector* hit_vec, const std::string det_name);
22  std::vector<SQHit*>* FindTriggerHitsFast(const SQEvent* evt, const SQHitVector* hit_vec, const int det_id);
23 };
24 
25 #endif /* _UTIL_SQHIT__H_ */
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
A set of utility functions about SQHit.
Definition: UtilSQHit.h:7
std::vector< SQHit * > * FindHitsFast(const SQEvent *evt, const SQHitVector *hit_vec, const std::string det_name)
Fast-extract a set of hits that are of the given detector (det_name).
Definition: UtilSQHit.cc:76
SQHitVector * FindFirstHits(const SQHitVector *vec_in, const std::string det_name, const bool in_time=false)
Extract a set of first hits that are of the given detector (det_name), where "first" means the earlie...
Definition: UtilSQHit.cc:40
std::vector< SQHit * > * FindTriggerHitsFast(const SQEvent *evt, const SQHitVector *hit_vec, const std::string det_name)
Fast-extract a set of trigger hits that are of the given detector (det_name).
Definition: UtilSQHit.cc:123
SQHitVector * FindHits(const SQHitVector *vec_in, const std::string det_name, const bool in_time=false)
Extract a set of hits that are of the given detector (det_name).
Definition: UtilSQHit.cc:16