From aa2c3502529d4f514ec321171e32c5f7b6393401 Mon Sep 17 00:00:00 2001 From: cericeci Date: Mon, 10 Jan 2022 19:01:19 +0100 Subject: [PATCH] Split comment into several lines to make it more readable --- .../SimplifiedGeometryPropagator/src/ParticleManager.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/FastSimulation/SimplifiedGeometryPropagator/src/ParticleManager.cc b/FastSimulation/SimplifiedGeometryPropagator/src/ParticleManager.cc index daf28ce0b9f09..de20925bfa0bd 100644 --- a/FastSimulation/SimplifiedGeometryPropagator/src/ParticleManager.cc +++ b/FastSimulation/SimplifiedGeometryPropagator/src/ParticleManager.cc @@ -265,7 +265,9 @@ std::unique_ptr fastsim::ParticleManager::nextGenParticle() continue; } - // SM particles that descend from exotics and cross the beam pipe radius should make hits but not be decayed, by default it will duplicate FastSim hits for long lived particles and so anything produced without activating fixLongLivedBug_ is physically wrong + // SM particles that descend from exotics and cross the beam pipe radius should make hits but not be decayed, + // by default it will duplicate FastSim hits for long lived particles + // and so anything produced without activating fixLongLivedBug_ is physically wrong if (fixLongLivedBug_ && producedWithinBeamPipe && !decayedWithinBeamPipe){ exoticRelativesChecker(productionVertex, exoticRelativeId, 0); }