Skip to content
Snippets Groups Projects

Draft: [trigEGam] Integration beteween mongroups and TrigEgammaMonitoring

Closed Edmar Egidio Purcino De Souza requested to merge eegidiop/athena:tegmonGroups into 22.0
1 file
+ 26
23
Compare changes
  • Side-by-side
  • Inline
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
@@ -13,14 +13,14 @@
RPCSimHit::RPCSimHit( ) :
m_RPCid(0xffff),
m_globalTime(0.),
m_partLink()
m_localPosition(0.,0.,0.), // pre-step position
m_partLink(),
m_localPostStepPosition(0.,0.,0.), // post-step position
m_energyDeposit(-1.), //Geant4 de/dx
m_stepLength(-1.), //Geant4 step Length
m_particleEncoding(0), // PDG id
m_kineticEnergy(-1.) // kinetic energy of the particle
{
m_localPosition=Amg::Vector3D(0.,0.,0.); // pre-step position
m_localPostStepPosition=Amg::Vector3D(0.,0.,0.); // post-step position
m_energyDeposit = -1.; //Geant4 de/dx
m_stepLength = -1.; //Geant4 step Length
m_particleEncoding = 0; // PDG id
m_kineticEnergy = -1.; // kinetic energy of the particle
}
//virtual destructor required by Pool
RPCSimHit::~RPCSimHit( ) {}
@@ -28,29 +28,32 @@ RPCSimHit::~RPCSimHit( ) {}
RPCSimHit::RPCSimHit(int id,
double time,
const Amg::Vector3D& position)
: m_RPCid(id), m_globalTime(time)
, m_localPosition(position)
: m_RPCid(id),
m_globalTime(time),
m_localPosition(position),
m_partLink(),
m_localPostStepPosition(0.,0.,0.), // post-step position
m_energyDeposit(-1.), //Geant4 de/dx
m_stepLength(-1.), //Geant4 step Length
m_particleEncoding(0), // PDG id
m_kineticEnergy(-1.) // kinetic energy of the particle
{
m_localPostStepPosition=Amg::Vector3D(0.,0.,0.); // post-step position
m_energyDeposit = -1.; //Geant4 de/dx
m_stepLength = -1.; //Geant4 step Length
m_particleEncoding = 0; // PDG id
m_kineticEnergy = -1.; // kinetic energy of the particle
}
RPCSimHit::RPCSimHit(int id,
double time,
const Amg::Vector3D& position,
const int trackNumber)
: m_RPCid(id), m_globalTime(time)
, m_localPosition(position)
, m_partLink(trackNumber)
: m_RPCid(id),
m_globalTime(time),
m_localPosition(position),
m_partLink(trackNumber),
m_localPostStepPosition(0.,0.,0.), // post-step position
m_energyDeposit(-1.), //Geant4 de/dx
m_stepLength(-1.), //Geant4 step Length
m_particleEncoding(0), // PDG id
m_kineticEnergy(-1.) // kinetic energy of the particle
{
m_localPostStepPosition=Amg::Vector3D(0.,0.,0.); // post-step position
m_energyDeposit = -1.; //Geant4 de/dx
m_stepLength = -1.; //Geant4 step Length
m_particleEncoding = 0; // PDG id
m_kineticEnergy = -1.; // kinetic energy of the particle
}
RPCSimHit::RPCSimHit(int id,
Loading