Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!29978
Fix random number stream usage in FastCaloSimV2Tool
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix random number stream usage in FastCaloSimV2Tool
jchapman/athena:FCSV2_RNG_Fix_master
into
master
Overview
4
Commits
1
Pipelines
1
Changes
1
Merged
John Derek Chapman
requested to merge
jchapman/athena:FCSV2_RNG_Fix_master
into
master
5 years ago
Overview
4
Commits
1
Pipelines
1
Changes
1
Expand
Adding one change accidentally missed out from
!29913 (merged)
.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
b727c071
1 commit,
5 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimServices/src/FastCaloSimV2Tool.cxx
+
1
−
1
Options
@@ -198,7 +198,7 @@ StatusCode ISF::FastCaloSimV2Tool::simulate(const ISF::ISFParticle& isfp, ISFPar
TFCSExtrapolationState
extrapol
;
m_FastCaloSimCaloExtrapolation
->
extrapolate
(
extrapol
,
&
truth
);
ATHRNG
::
RNGWrapper
*
rngWrapper
=
m_rndmGenSvc
->
getEngine
(
this
);
ATHRNG
::
RNGWrapper
*
rngWrapper
=
m_rndmGenSvc
->
getEngine
(
this
,
m_randomEngineName
);
TFCSSimulationState
simulstate
(
*
rngWrapper
);
ATH_MSG_DEBUG
(
" particle: "
<<
isfp
.
pdgCode
()
<<
" Ekin: "
<<
isfp
.
ekin
()
<<
" position eta: "
<<
particle_position
.
eta
()
<<
" direction eta: "
<<
particle_direction
.
eta
()
<<
" position phi: "
<<
particle_position
.
phi
()
<<
" direction phi: "
<<
particle_direction
.
phi
());
Loading