FairRoot/PandaRoot
PndSdsRadDamHit.h
Go to the documentation of this file.
1 /*
2  * PndSdsRadDamHit.h
3  *
4  * Created on: Dec 16, 2008
5  * Author: stockman
6  */
7 
8 #ifndef PNDSDSRADDAMHIT_H_
9 #define PNDSDSRADDAMHIT_H_
10 
11 #include "TObject.h"
12 #include "TVector3.h"
13 class PndSdsRadDamHit : public TObject
14 {
15 public:
17  PndSdsRadDamHit(Int_t trackID, Int_t hitID, TString detName, Int_t pdgCode, Double_t energy,
18  TVector3 pos, TVector3 mom, Double_t radDam);
19  virtual ~PndSdsRadDamHit(){};
20 
21  void SetRadDam(Double_t radDam){fRadDam = radDam;};
23 
24 private:
25  Int_t fTrackID;
26  Int_t fHitID;
28  Int_t fPdgCode;
30  TVector3 fPos;
31  TVector3 fMom;
33 
34 
36 };
37 
38 
39 #endif /* PNDSDSRADDAMHIT_H_ */
TVector3 pos
Double_t mom
Definition: plot_dirc.C:14
Double_t
virtual ~PndSdsRadDamHit()
void SetRadDam(Double_t radDam)
ClassDef(PndSdsRadDamHit, 2)
Double_t GetRadDam()
Double_t energy
Definition: plot_dirc.C:15