PandaRoot
PndMvdRadDamHit.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 /*
14  * PndMvdRadDamHit.h
15  *
16  * Created on: Dec 16, 2008
17  * Author: stockman
18  */
19 
20 #ifndef PNDMVDRADDAMHIT_H_
21 #define PNDMVDRADDAMHIT_H_
22 
23 #include "TObject.h"
24 #include "TVector3.h"
25 #include "FairHit.h"
26 class PndMvdRadDamHit : public FairHit {
27  public:
29  PndMvdRadDamHit(Int_t trackID, Int_t hitID, Int_t detId, Int_t pdgCode, Double_t energy, TVector3 pos, TVector3 mom, Double_t radDam);
30  virtual ~PndMvdRadDamHit(){};
31 
32  void SetRadDam(Double_t radDam) { fRadDam = radDam; };
33  Double_t GetRadDam() { return fRadDam; };
34 
35  private:
36  Int_t fTrackID;
37  Int_t fHitID;
38  Int_t fDetId;
39  Int_t fPdgCode;
40  Double_t fEnergy;
41  TVector3 fMom;
42  Double_t fRadDam;
43 
44  ClassDef(PndMvdRadDamHit, 3);
45 };
46 
47 #endif /* PNDMVDRADDAMHIT_H_ */
virtual ~PndMvdRadDamHit()
Double_t GetRadDam()
void SetRadDam(Double_t radDam)