StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StFstSensorHitCollection.h
1 /***************************************************************************
2 * $Id: StFstSensorHitCollection.h$
3 *
4 * Author: Shenghui Zhang, Oct. 2021
5 ****************************************************************************
6 * Description:
7 * Data collection for FST hits, and one instance corresponds to one sensor.
8 ***************************************************************************/
9 
10 #ifndef StFstSensorHitCollection_hh
11 #define StFstSensorHitCollection_hh
12 
13 #include "StObject.h"
14 #include "StContainers.h"
15 
16 class StFstHit;
17 
19 {
20 public:
23 
24  unsigned int numberOfHits() const;
25 
26  StSPtrVecFstHit &hits();
27  const StSPtrVecFstHit &hits() const;
28 
29 private:
30  StSPtrVecFstHit mHits;
31 
33  ClassDef(StFstSensorHitCollection, 1)
34 };
35 #endif
36 
37 
38 /***************************************************************************
39 * StFstSensorHitCollection.h,v 1.0
40 * Revision 1.0 2021/10/04 Shenghui Zhang
41 * Initial version
42 ****************************************************************************/