Skip to content
Snippets Groups Projects
Commit dfe35ed9 authored by John Derek Chapman's avatar John Derek Chapman Committed by Graeme Stewart
Browse files

src/TransportTool.h - apply ATLAS naming conventions. src/TransportTool.cxx -...

src/TransportTool.h - apply ATLAS naming conventions. src/TransportTool.cxx - apply ATLAS naming conventions. Move set up of G4AtlasRunManager and PhysicsListTool from constructor to initialize method. ATLASSIM-3061. Tagging ISF_Geant4Tools-00-09-05-02 (ISF_Geant4Tools-00-09-05-02)

	* Tagging ISF_Geant4Tools-00-09-05-02

2016-11-04  Zach Marshall <ZLMarshall@lbl.gov>

	* Back-porting of changes for quasi-stable particle simulation to the
	transport tool and Geant4TruthIncident.  Branch for 20.3.7.Y only!
	* Tagging: ISF_Geant4Tools-00-09-05-01

2016-06-28  Elmar Ritsch <Elmar.Ritsch@cern.ch>

	* src/TransportTool.*: Improve code readability
	* Tagging ISF_Geant4Tools-00-09-05

2016-06-03  Zach Marshall <ZLMarshall@lbl.gov>

	* src/TransportTool.*: Adding list of G4 commands to be run after init
	* python/ISF_Geant4ToolsConfig.py: Passing the list of G4 commands
	* Tagging ISF_Geant4Tools-00-09-04


Former-commit-id: 29be1141
parent d0e66d00
No related branches found
No related tags found
No related merge requests found
......@@ -134,6 +134,8 @@ def getG4TransportTool(name='ISFG4TransportTool', **kwargs):
else:
is_hive = False
kwargs.setdefault('MultiThreading', is_hive)
# Set commands for the G4AtlasAlg
kwargs.setdefault("G4Commands", simFlags.G4Commands.get_Value())
from ISF_Geant4Tools.ISF_Geant4ToolsConf import iGeant4__G4TransportTool
return iGeant4__G4TransportTool(name, **kwargs)
### Specialized Versions
......
......@@ -17,6 +17,7 @@
#include "MCTruth/TrackBarcodeInfo.h"
#include "MCTruth/TrackHelper.h"
#include "MCTruth/TrackInformation.h"
#include "MCTruth/PrimaryParticleInformation.h"
#include "SimHelpers/SecondaryTracksHelper.h"
// Units
......@@ -161,12 +162,10 @@ HepMC::GenParticle* iGeant4::Geant4TruthIncident::parentParticleAfterIncident(Ba
if ( !m_parentParticleAfterIncident ) {
// create new HepMC particle, using momentum and energy
// from G4DynamicParticle (which should be equivalent to postStep)
m_parentParticleAfterIncident = convert(track);
m_parentParticleAfterIncident = convert(track, newBarcode, false);
m_eventInfo->SetCurrentlyTraced( m_parentParticleAfterIncident );
m_parentParticleAfterIncident->suggest_barcode( newBarcode );
// store (new) hepmc particle in track's UserInformation
TrackHelper tHelper(track);
TrackInformation *tInfo = tHelper.GetTrackInformation();
......@@ -260,8 +259,7 @@ HepMC::GenParticle* iGeant4::Geant4TruthIncident::childParticle(unsigned short i
// secondary could decay right away and create further particles which pass the
// truth strategies.
HepMC::GenParticle* hepParticle = convert( thisChildTrack );
hepParticle->suggest_barcode( newBarcode );
HepMC::GenParticle* hepParticle = convert( thisChildTrack , newBarcode , true );
TrackHelper tHelper(thisChildTrack);
TrackInformation *trackInfo = tHelper.GetTrackInformation();
......@@ -292,7 +290,7 @@ bool iGeant4::Geant4TruthIncident::particleAlive(const G4Track *track) const {
}
HepMC::GenParticle* iGeant4::Geant4TruthIncident::convert(const G4Track *track) const {
HepMC::GenParticle* iGeant4::Geant4TruthIncident::convert(const G4Track *track, const int barcode, const bool secondary) const {
const G4ThreeVector & mom = track->GetMomentum();
const double energy = track->GetTotalEnergy();
......@@ -302,6 +300,21 @@ HepMC::GenParticle* iGeant4::Geant4TruthIncident::convert(const G4Track *track)
int status = 1; // stable particle not decayed by EventGenerator
HepMC::GenParticle* newParticle = new HepMC::GenParticle(fourMomentum, pdgCode, status);
// This should be a *secondary* track. If it has a primary, it was a decay and
// we are running with quasi-stable particle simulation. Note that if the primary
// track is passed in as a secondary that survived the interaction, then this was
// *not* a decay and we should not treat it in this way
if (secondary &&
track->GetDynamicParticle() &&
track->GetDynamicParticle()->GetPrimaryParticle() &&
track->GetDynamicParticle()->GetPrimaryParticle()->GetUserInformation()){
// Then the new particle should use the same barcode as the old one!!
PrimaryParticleInformation* ppi = dynamic_cast<PrimaryParticleInformation*>( track->GetDynamicParticle()->GetPrimaryParticle()->GetUserInformation() );
newParticle->suggest_barcode( ppi->GetParticleBarcode() );
} else {
newParticle->suggest_barcode( barcode );
}
return newParticle;
}
......
......@@ -103,7 +103,7 @@ namespace iGeant4 {
/** check if the given G4Track represents a particle that is alive in ISF or ISF-G4 */
inline bool particleAlive(const G4Track *track) const;
HepMC::GenParticle* convert(const G4Track *particle) const; //*AS* might be put static
HepMC::GenParticle* convert(const G4Track *particle, const int barcode, const bool secondary) const; //*AS* might be put static
mutable bool m_positionSet;
mutable HepMC::FourVector m_position;
......
......@@ -87,6 +87,9 @@ iGeant4::G4TransportTool::G4TransportTool(const std::string& t,
// Multi-threading specific settings
declareProperty("MultiThreading", m_useMT=false);
// Commands to send to the G4UI
declareProperty("G4Commands", m_g4commands);
}
//________________________________________________________________________
......@@ -214,6 +217,11 @@ StatusCode iGeant4::G4TransportTool::initialize()
ATH_MSG_INFO("Random nr. generator is set to Geant4");
}
// Send UI commands
for (auto g4command : m_g4commands){
ui->ApplyCommand( g4command );
}
ATH_MSG_DEBUG("initalize");
/*
if (m_particleBroker.retrieve().isSuccess())
......@@ -428,6 +436,10 @@ G4PrimaryParticle* iGeant4::G4TransportTool::getPrimaryParticle(const HepMC::Gen
particle->SetProperTime( (lv1-lv0).mag()/CLHEP::c_light );
}
// Set the user information for this primary to point to the HepMcParticleLink...
PrimaryParticleInformation* ppi = new PrimaryParticleInformation(&gp);
particle->SetUserInformation(ppi);
return particle;
}
......@@ -543,14 +555,10 @@ G4PrimaryParticle* iGeant4::G4TransportTool::getPrimaryParticle(const ISF::ISFPa
// Set the lifetime appropriately - this is slow but rigorous, and we
// don't want to end up with something like vertex time that we have
// to validate for every generator on earth...
G4LorentzVector lv0 ( genpart->production_vertex()->position().x(),
genpart->production_vertex()->position().y(),
genpart->production_vertex()->position().z(),
genpart->production_vertex()->position().t() );
G4LorentzVector lv1 ( genpart->end_vertex()->position().x(),
genpart->end_vertex()->position().y(),
genpart->end_vertex()->position().z(),
genpart->end_vertex()->position().t() );
const auto& prodVtx = genpart->production_vertex()->position();
const auto& endVtx = genpart->end_vertex()->position();
const G4LorentzVector lv0( prodVtx.x(), prodVtx.y(), prodVtx.z(), prodVtx.t() );
const G4LorentzVector lv1( endVtx.x(), endVtx.y(), endVtx.z(), endVtx.t() );
particle->SetProperTime( (lv1-lv0).mag()/CLHEP::c_light );
} // particle had an end vertex
} // Truth was detected
......
......@@ -128,6 +128,9 @@ namespace iGeant4
//simulation
G4VSolid *m_worldSolid; // the Geant4 world volume solid
/// Commands to send to the G4 UI
std::vector<std::string> m_g4commands;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment