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
!54657
LArG4H6SD: enable thread-checker and fixes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
LArG4H6SD: enable thread-checker and fixes
fwinkl/athena:larg4h6sd
into
master
Overview
11
Commits
1
Pipelines
2
Changes
11
Merged
Frank Winklmeier
requested to merge
fwinkl/athena:larg4h6sd
into
master
2 years ago
Overview
11
Commits
1
Pipelines
2
Changes
11
Expand
replace statics with locals
const fixes
remove unnecessary new/delete operators
use const static initialization
0
0
Merge request reports
Compare
master
version 1
40726bc5
2 years ago
master (base)
and
latest version
latest version
1f31cddc
1 commit,
2 years ago
version 1
40726bc5
1 commit,
2 years ago
11 files
+
86
−
127
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
LArCalorimeter/LArG4/LArG4H6SD/src/LArFCALH62004CalibCalculatorBase.cc
+
3
−
3
Options
/*
Copyright (C) 2002-202
0
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-202
2
CERN for the benefit of the ATLAS collaboration
*/
#include
"LArFCALH62004CalibCalculatorBase.h"
@@ -155,8 +155,8 @@ G4bool LArFCALH62004CalibCalculatorBase::Process(const G4Step* a_step, LArG4Iden
// S.M. TransformPoint(p);
// Find a transformation to a module coordinate system
G4TouchableHistory
*
theTouchable
=
(
G4TouchableHistory
*
)
(
pre_step_point
->
GetTouchable
());
const
G4TouchableHistory
*
theTouchable
=
dynamic_cast
<
const
G4TouchableHistory
*
>
(
pre_step_point
->
GetTouchable
());
G4String
volumeName
=
theTouchable
->
GetVolume
()
->
GetName
()
;
int
modVol
=
theTouchable
->
GetHistoryDepth
();
Loading