BmnRoot
Loading...
Searching...
No Matches
BmnDchTrack.h
Go to the documentation of this file.
1#ifndef BMNDCHTRACK_H
2#define BMNDCHTRACK_H
3
4#include "BmnTrack.h"
5
6class BmnDchTrack : public BmnTrack {
7public:
8
11
13 virtual ~BmnDchTrack();
14
15 Int_t GetEventID() const { return fEventID; }
16 Int_t GetTrackId() const { return fTrackID; }
17
18 void SetEventID(Int_t iev) { fEventID = iev; }
19 void SetTrackId(Int_t itr) { fTrackID = itr; }
20
21private:
22
23 Int_t fEventID; // identifier of event
24 Int_t fTrackID; // identifier of track
25
26 ClassDef(BmnDchTrack, 1);
27
28};
29
30#endif
virtual ~BmnDchTrack()
Int_t GetEventID() const
Definition BmnDchTrack.h:15
void SetEventID(Int_t iev)
Definition BmnDchTrack.h:18
void SetTrackId(Int_t itr)
Definition BmnDchTrack.h:19
Int_t GetTrackId() const
Definition BmnDchTrack.h:16