Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
160
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
!58204
An error occurred while fetching the assigned milestone of the selected merge_request.
Sweeping
!58169
from master to 22.0. ISF_PunchThroughTools: Fix build with clang.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Sweeping
!58169
from master to 22.0. ISF_PunchThroughTools: Fix build with clang.
cherry-pick-c0ec3cf779c-22.0
into
22.0
Overview
4
Commits
1
Pipelines
1
Changes
3
Merged
Atlas Nightlybuild
requested to merge
cherry-pick-c0ec3cf779c-22.0
into
22.0
2 years ago
Overview
4
Commits
1
Pipelines
1
Changes
3
Expand
ISF_PunchThroughTools: Fix build with clang.
See merge request
!58169 (merged)
0
0
Merge request reports
Compare
22.0
22.0 (base)
and
latest version
latest version
f17961d8
1 commit,
2 years ago
3 files
+
6
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
Simulation/ISF/ISF_FastCaloSim/ISF_PunchThroughTools/src/PunchThroughClassifier.h
+
1
−
3
Options
@@ -51,7 +51,7 @@ public:
StatusCode
initializeCalibrator
(
std
::
string
calibratorConfigFile
);
/** interface method to return probability prediction of punch through */
double
computePunchThroughProbability
(
const
ISF
::
ISFParticle
&
isfp
,
const
TFCSSimulationState
&
simulstate
)
const
;
virtual
double
computePunchThroughProbability
(
const
ISF
::
ISFParticle
&
isfp
,
const
TFCSSimulationState
&
simulstate
)
const
override
;
/** calcalate NN inputs based on isfp and simulstate */
std
::
map
<
std
::
string
,
std
::
map
<
std
::
string
,
double
>
>
computeInputs
(
const
ISF
::
ISFParticle
&
isfp
,
const
TFCSSimulationState
&
simulstate
)
const
;
@@ -63,8 +63,6 @@ public:
double
calibrateOutput
(
double
&
networkOutput
)
const
;
private:
const
char
*
m_name
=
nullptr
;
/** NN graph */
std
::
unique_ptr
<
lwt
::
LightweightGraph
>
m_graph
;
Loading