Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat-obj-simhit-writer
Browse files Browse the repository at this point in the history
asalzburger authored May 15, 2024
2 parents a0320c9 + c43e308 commit 913d3c0
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions Examples/Algorithms/Fatras/src/FatrasSimulation.cpp
Original file line number Diff line number Diff line change
@@ -122,12 +122,18 @@ struct FatrasSimulationT final : ActsExamples::detail::FatrasSimulation {
Acts::Logging::Level lvl)
: simulation(
ChargedSimulation(
ChargedPropagator(ChargedStepper(cfg.magneticField),
Acts::Navigator{{cfg.trackingGeometry}}),
ChargedPropagator(
ChargedStepper(cfg.magneticField),
Acts::Navigator({cfg.trackingGeometry},
Acts::getDefaultLogger("SimNav", lvl)),
Acts::getDefaultLogger("SimProp", lvl)),
Acts::getDefaultLogger("Simulation", lvl)),
NeutralSimulation(
NeutralPropagator(NeutralStepper(),
Acts::Navigator{{cfg.trackingGeometry}}),
NeutralPropagator(
NeutralStepper(),
Acts::Navigator({cfg.trackingGeometry},
Acts::getDefaultLogger("SimNav", lvl)),
Acts::getDefaultLogger("SimProp", lvl)),
Acts::getDefaultLogger("Simulation", lvl))) {
using namespace ActsFatras;
using namespace ActsFatras::detail;

0 comments on commit 913d3c0

Please sign in to comment.