Belle II Software  release-08-01-10
CsiSimHit.h
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 
9 #ifndef CsiSIMHIT_H
10 #define CsiSIMHIT_H
11 
12 #include <simulation/dataobjects/SimHitBase.h>
13 
14 // ROOT
15 #include <TVector3.h>
16 
17 namespace Belle2 {
31  class CsiSimHit : public SimHitBase {
32  public:
35  0) {;}
38  int CellId,
39  int TrackId,
40  int Pdg,
41  float FlightTime,
42  float Edep,
43  TVector3 Momentum,
44  TVector3 Position
45  ): SimHitBase(), m_CellId(CellId), m_TrackId(TrackId), m_Pdg(Pdg), m_FlightTime(FlightTime), m_Edep(Edep), m_Momentum(Momentum),
46  m_Position(Position)
47  {
48  }
49 
50 
53  void setCellId(int CellId) { m_CellId = CellId; }
54 
57  void setTrackId(int TrackId) { m_TrackId = TrackId; }
58 
61  void setPDGCode(int Pdg) { m_Pdg = Pdg; }
62 
65  void setFlightTime(double FlightTime) { m_FlightTime = (float) FlightTime; }
66 
69  void setEnergyDep(double Edep) { m_Edep = (float) Edep; }
70 
73  void setMomentum(TVector3 Momentum) { m_Momentum = Momentum; }
74 
77  void setPosIn(TVector3 Position) { m_Position = Position; }
78 
81  void setPosition(TVector3 Position) { m_Position = Position; }
82 
83 
87  int getCellId() const { return m_CellId; }
88 
92  int getTrackId() const { return m_TrackId; }
93 
97  int getPDGCode() const { return m_Pdg; }
98 
102  double getFlightTime() const { return (double)m_FlightTime; }
103 
107  double getEnergyDep() const { return (double) m_Edep; }
108 
112  TVector3 getMomentum() const { return m_Momentum; }
113 
117  TVector3 getPosIn() const { return m_Position; }
118 
122  TVector3 getPosition() const { return m_Position; }
123 
124 
128  void shiftInTime(float delta) override { m_FlightTime += delta; }
129 
130 
131  private:
132  int m_CellId;
133  int m_TrackId;
134  int m_Pdg;
135  float m_FlightTime;
136  float m_Edep;
137  TVector3 m_Momentum;
138  TVector3 m_Position;
140  ClassDefOverride(CsiSimHit, 1)
141  };
142 
144 } // end namespace Belle2
145 
146 #endif
ClassCsiSimHit - Geant4 simulated hits in CsI crystals in BEAST.
Definition: CsiSimHit.h:31
TVector3 m_Position
Position.
Definition: CsiSimHit.h:138
int getPDGCode() const
Get Particle PDG (can be one of secondaries)
Definition: CsiSimHit.h:97
void setEnergyDep(double Edep)
Set Deposit energy.
Definition: CsiSimHit.h:69
int getTrackId() const
Get Track ID.
Definition: CsiSimHit.h:92
CsiSimHit()
default constructor for ROOT
Definition: CsiSimHit.h:34
int getCellId() const
Get Cell ID.
Definition: CsiSimHit.h:87
CsiSimHit(int CellId, int TrackId, int Pdg, float FlightTime, float Edep, TVector3 Momentum, TVector3 Position)
Useful Constructor.
Definition: CsiSimHit.h:37
int m_CellId
Cell ID.
Definition: CsiSimHit.h:132
double getFlightTime() const
Get Flight time from IP.
Definition: CsiSimHit.h:102
void setPDGCode(int Pdg)
Set Particle PDG (can be one of secondaries)
Definition: CsiSimHit.h:61
void setCellId(int CellId)
Set Cell ID.
Definition: CsiSimHit.h:53
TVector3 m_Momentum
Momentum.
Definition: CsiSimHit.h:137
double getEnergyDep() const
Get Deposit energy.
Definition: CsiSimHit.h:107
float m_FlightTime
Flight time from IP.
Definition: CsiSimHit.h:135
float m_Edep
Deposit energy.
Definition: CsiSimHit.h:136
TVector3 getMomentum() const
Get Momentum.
Definition: CsiSimHit.h:112
void setPosition(TVector3 Position)
Set Position.
Definition: CsiSimHit.h:81
void setTrackId(int TrackId)
Set Track ID.
Definition: CsiSimHit.h:57
TVector3 getPosition() const
Get Position.
Definition: CsiSimHit.h:122
void setPosIn(TVector3 Position)
Set Position.
Definition: CsiSimHit.h:77
void setFlightTime(double FlightTime)
Set Flight time from IP.
Definition: CsiSimHit.h:65
TVector3 getPosIn() const
Get Position.
Definition: CsiSimHit.h:117
void setMomentum(TVector3 Momentum)
Set Momentum.
Definition: CsiSimHit.h:73
void shiftInTime(float delta) override
Shift the SimHit in time (needed for beam background mixing)
Definition: CsiSimHit.h:128
int m_TrackId
Track ID.
Definition: CsiSimHit.h:133
int m_Pdg
Particle PDG (can be one of secondaries)
Definition: CsiSimHit.h:134
Class SimHitBase - A common base for subdetector SimHits.
Definition: SimHitBase.h:28
Abstract base class for different kinds of events.