Skip to content
Snippets Groups Projects
Commit cd39c52a authored by Rachid Mazini's avatar Rachid Mazini Committed by Atlas Nightlybuild
Browse files

Merge branch 'QS_BeamPipeCut_21.0' into '21.0'

Update Quasi-stable particle definition in GenParticleSimWhiteList

See merge request atlas/athena!38036

(cherry picked from commit 1eac7cfc5aca652da7cb10bf47b04efe8516d45b)

6b976577 Update Quasi-stable particle definition in GenParticleSimWhiteList to include...
parent 067465a4
No related branches found
No related tags found
No related merge requests found
...@@ -18,6 +18,10 @@ ...@@ -18,6 +18,10 @@
// For finding that file // For finding that file
#include "PathResolver/PathResolver.h" #include "PathResolver/PathResolver.h"
// Units
#include "GaudiKernel/SystemOfUnits.h"
#include <fstream> #include <fstream>
#include <cstdlib> #include <cstdlib>
...@@ -30,6 +34,7 @@ ISF::GenParticleSimWhiteList::GenParticleSimWhiteList( const std::string& t, ...@@ -30,6 +34,7 @@ ISF::GenParticleSimWhiteList::GenParticleSimWhiteList( const std::string& t,
// different options // different options
declareProperty("WhiteLists", m_whiteLists={"G4particle_whitelist.txt"}); declareProperty("WhiteLists", m_whiteLists={"G4particle_whitelist.txt"});
declareProperty("QuasiStableSim", m_qs=true); declareProperty("QuasiStableSim", m_qs=true);
declareProperty("MinimumDecayRadiusQS", m_minDecayRadiusQS=22.0*Gaudi::Units::mm);
} }
// Athena algtool's Hooks // Athena algtool's Hooks
...@@ -169,18 +174,28 @@ bool ISF::GenParticleSimWhiteList::pass(const HepMC::GenParticle& particle , std ...@@ -169,18 +174,28 @@ bool ISF::GenParticleSimWhiteList::pass(const HepMC::GenParticle& particle , std
passFilter = passFilter && particle.status()<3; passFilter = passFilter && particle.status()<3;
// Test all daughter particles // Test all daughter particles
if (particle.end_vertex() && m_qs && passFilter){ if (particle.end_vertex() && m_qs && passFilter){
// Break loops // Primarily interested in passing particles decaying outside
if ( std::find( used_vertices.begin() , used_vertices.end() , particle.end_vertex()->barcode() )==used_vertices.end() ){ // m_minDecayRadiusQS (nomimally the inner radius of the
used_vertices.push_back( particle.end_vertex()->barcode() ); // beampipe). However, it is also interesting to pass particles
for (HepMC::GenVertex::particle_iterator it = particle.end_vertex()->particles_begin(HepMC::children); // which start outside m_minDecayRadiusQS, but decay inside it.
it != particle.end_vertex()->particles_end(HepMC::children); ++it){ passFilter = passFilter && ( (m_minDecayRadiusQS < particle.end_vertex()->position().perp()) || (m_minDecayRadiusQS < particle.production_vertex()->position().perp()) );
passFilter = passFilter && pass( **it , used_vertices ); if (passFilter) {
if (!passFilter) { // Break loops
ATH_MSG_VERBOSE( "Daughter particle " << **it << " does not pass." ); if ( std::find( used_vertices.begin() , used_vertices.end() , particle.end_vertex()->barcode() )==used_vertices.end() ){
break; used_vertices.push_back( particle.end_vertex()->barcode() );
} for (HepMC::GenVertex::particle_iterator it = particle.end_vertex()->particles_begin(HepMC::children);
} // Loop over daughters it != particle.end_vertex()->particles_end(HepMC::children); ++it){
} // Break loops passFilter = passFilter && pass( **it , used_vertices );
if (!passFilter) {
ATH_MSG_VERBOSE( "Daughter particle " << **it << " does not pass." );
break;
}
} // Loop over daughters
} // Break loops
} // particle decayed before the min radius to be considered for simulation
else {
ATH_MSG_VERBOSE( "Particle " << particle << " was produced and decayed within a radius of " << m_minDecayRadiusQS << " mm.");
}
} // particle had daughters } // particle had daughters
else if (!particle.end_vertex() && !passFilter && particle.status()<3) { // no daughters... No end vertex... Check if this isn't trouble else if (!particle.end_vertex() && !passFilter && particle.status()<3) { // no daughters... No end vertex... Check if this isn't trouble
ATH_MSG_ERROR( "Found a particle with no end vertex that does not appear in the white list." ); ATH_MSG_ERROR( "Found a particle with no end vertex that does not appear in the white list." );
......
...@@ -61,6 +61,7 @@ namespace ISF { ...@@ -61,6 +61,7 @@ namespace ISF {
std::vector<std::string> m_whiteLists; //!< The location of the white lists std::vector<std::string> m_whiteLists; //!< The location of the white lists
std::vector<long int> m_pdgId; //!< Allowed PDG IDs std::vector<long int> m_pdgId; //!< Allowed PDG IDs
bool m_qs; //!< Switch for quasi-stable particle simulation bool m_qs; //!< Switch for quasi-stable particle simulation
double m_minDecayRadiusQS; //!< Decay radius below which QS particles should be ignored
}; };
} }
......
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