#include <ParticleInfo.h>
Public Methods | |
ParticleInfo () | |
constructors | |
ParticleInfo (double phi, double eta, double energy, int pdgId) | |
default constructor | |
double | phi () const |
double | eta () const |
phi of impact point | |
double | energy () const |
eta of impact point | |
int | id () const |
particle energy | |
Private Attributes | |
double | m_phi |
particle id | |
double | m_eta |
Phi at IP. | |
double | m_energy |
eta at IP | |
int | m_id |
incomming particle energy |
Definition at line 16 of file ParticleInfo.h.
|
constructors
Definition at line 13 of file ParticleInfo.cxx.
|
|
default constructor
Definition at line 7 of file ParticleInfo.cxx.
|
|
Definition at line 43 of file ParticleInfo.h. References m_phi. Referenced by FastShower::GridletForger::makeParameters(), and FastShower::operator<<().
00043 { return m_phi; } |
|
phi of impact point
Definition at line 46 of file ParticleInfo.h. References m_eta. Referenced by FastShower::GridletForger::makeParameters(), and FastShower::operator<<().
00046 { return m_eta; } |
|
eta of impact point
Definition at line 49 of file ParticleInfo.h. References m_energy. Referenced by FastShower::GridletForger::makeParameters(), and FastShower::operator<<().
00049 { return m_energy; } |
|
particle energy
Definition at line 52 of file ParticleInfo.h. References m_id. Referenced by FastShower::GridletForger::makeParameters(), and FastShower::operator<<().
00052 { return m_id; } |
|
particle id
Definition at line 32 of file ParticleInfo.h. Referenced by phi(). |
|
Phi at IP.
Definition at line 33 of file ParticleInfo.h. Referenced by eta(). |
|
eta at IP
Definition at line 34 of file ParticleInfo.h. Referenced by energy(). |
|
incomming particle energy
Definition at line 35 of file ParticleInfo.h. Referenced by id(). |