Skip to content

Commit 7f60115

Browse files
authored
Merge pull request #1129 from stephenswat/build/detray_0_102_0
Update detray to version 0.102.0
2 parents 6dd73d2 + 7b4b3ba commit 7f60115

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

extern/detray/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ message( STATUS "Building Detray as part of the TRACCC project" )
1313

1414
# Declare where to get Detray from.
1515
set( TRACCC_DETRAY_SOURCE
16-
"URL;https://github.com/acts-project/detray/archive/refs/tags/v0.101.0.tar.gz;URL_MD5;91d6f3f4cbe56ae5ab772df8efad21b5"
16+
"URL;https://github.com/acts-project/detray/archive/refs/tags/v0.102.0.tar.gz;URL_MD5;69421d1a0d606be1d627bd1cce7ff0fb"
1717
CACHE STRING "Source for Detray, when built as part of this project" )
1818
mark_as_advanced( TRACCC_DETRAY_SOURCE )
1919
FetchContent_Declare( Detray SYSTEM ${TRACCC_DETRAY_SOURCE} )

simulation/include/traccc/simulation/simulator.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,10 @@ struct simulator {
9191
// Update the actor config
9292
if (m_cfg.m_is_min_pT) {
9393
m_aborter_state.min_pT(m_cfg.m_min_p);
94+
m_aborter_state.min_p(0.f);
9495
} else {
9596
m_aborter_state.min_p(m_cfg.m_min_p);
97+
m_aborter_state.min_pT(0.f);
9698
}
9799
m_scatterer.do_energy_loss = m_cfg.do_energy_loss;
98100
m_scatterer.do_multiple_scattering = m_cfg.do_multiple_scattering;

0 commit comments

Comments
 (0)