Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef ROOT_THcHitList
#define ROOT_THcHitList
#include "THcRawHit.h"
#include "THaDetMap.h"
#include "THaEvData.h"
#include "TClonesArray.h"
#include "TObject.h"
using namespace std;
//////////////////////////////////////////////////////////////////////////
//
// THcHitList
//
//////////////////////////////////////////////////////////////////////////
//class THaDetMap;
class THcHitList {
public:
virtual ~THcHitList();
THcHitList();
virtual Int_t DecodeToHitList( const THaEvData& );
void InitHitList(THaDetMap* detmap,
const char *hitclass, Int_t maxhits);
Int_t fNRawHits;
Int_t fNMaxRawHits;
TClonesArray* fRawHitList; // List of raw hits
TClass* fRawHitClass; // Class of raw hit object to use
THaDetMap* fdMap;
protected:
ClassDef(THcHitList,0)
};
#endif