BmnRoot
Loading...
Searching...
No Matches
CbmL1StsHit.h
Go to the documentation of this file.
1#ifndef _CbmL1StsHit_h_
2#define _CbmL1StsHit_h_
3
4#include <vector>
5using std::vector;
6
7 // hits with hit-mcpoint match information
9{
10 public:
12 CbmL1StsHit(int hitId_, int extIndex_)
13 :hitId(hitId_),extIndex(extIndex_),mcPointIds(){};
14
15 int hitId; // index of L1StsHit in algo->vStsHits array. Should be equal to index of this in L1->vStsHits
16 int extIndex; // index of hit in the TClonesArray array
17 vector<int> mcPointIds; // indices of CbmL1MCPoint in L1->vMCPoints array
18};
19
20#endif
CbmL1StsHit(int hitId_, int extIndex_)
Definition CbmL1StsHit.h:12
vector< int > mcPointIds
Definition CbmL1StsHit.h:17