class_RecoHit.h
Go to the documentation of this file.
1 #ifndef CLASS_RECOHIT_H
2 #define CLASS_RECOHIT_H
3 
4 #include <iostream>
5 #include <vector>
6 #include <set>
7 
8 class recoHit
9 {
10  public:
11  recoHit(int cEvent, int cHitView, int cGenType, int cHitChan, float cHitTime, float cHitSADC, float cHitRMS);
12 
13  int getEvent();
14  int getHitView();
15  int getGenType();
16  int getHitChan();
17  float getHitTime();
18  float getHitSADC();
19  float getHitRMS();
20  float fHitTime;
21  void printHit();
22 
23  private:
24  int fEvent = 0;
25  int fHitView = 0;
26  int fGenType = 0;
27  int fHitChan = 0;
28  float fHitSADC = 0;
29  float fHitRMS = 0;
30 };
31 
32 #endif
int getHitChan() const
float getHitRMS() const
float getHitSADC() const
float getHitTime() const
int getGenType() const
void printHit()
int getHitView() const
int getEvent() const
recoHit(int cEvent, int cHitView, int cGenType, int cHitChan, float cHitTime, float cHitSADC, float cHitRMS)