Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Project Juggler
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
EIC
Project Juggler
Commits
5873406d
Commit
5873406d
authored
4 years ago
by
Jihee Kim
Committed by
Chao Peng
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
minor fixes
parent
fdc8245b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
JugReco/src/components/ClusterRecoCoG.cpp
+5
-8
5 additions, 8 deletions
JugReco/src/components/ClusterRecoCoG.cpp
with
5 additions
and
8 deletions
JugReco/src/components/ClusterRecoCoG.cpp
+
5
−
8
View file @
5873406d
...
@@ -37,6 +37,7 @@ public:
...
@@ -37,6 +37,7 @@ public:
m_clusterCollection
{
"clusterCollection"
,
Gaudi
::
DataHandle
::
Reader
,
this
};
m_clusterCollection
{
"clusterCollection"
,
Gaudi
::
DataHandle
::
Reader
,
this
};
// Pointer to the geometry service
// Pointer to the geometry service
SmartIF
<
IGeoSvc
>
m_geoSvc
;
SmartIF
<
IGeoSvc
>
m_geoSvc
;
double
m_depthCorr
;
// ill-formed: using GaudiAlgorithm::GaudiAlgorithm;
// ill-formed: using GaudiAlgorithm::GaudiAlgorithm;
ClusterRecoCoG
(
const
std
::
string
&
name
,
ISvcLocator
*
svcLoc
)
ClusterRecoCoG
(
const
std
::
string
&
name
,
ISvcLocator
*
svcLoc
)
...
@@ -56,6 +57,9 @@ public:
...
@@ -56,6 +57,9 @@ public:
<<
"Make sure you have GeoSvc and SimSvc in the right order in the configuration."
<<
endmsg
;
<<
"Make sure you have GeoSvc and SimSvc in the right order in the configuration."
<<
endmsg
;
return
StatusCode
::
FAILURE
;
return
StatusCode
::
FAILURE
;
}
}
// depth: z length of the crystal block
m_depthCorr
=
m_geoSvc
->
detector
()
->
constantAsDouble
(
m_moduleDimZName
);
//info() << "z_length " << depth << endmsg;
return
StatusCode
::
SUCCESS
;
return
StatusCode
::
SUCCESS
;
}
}
...
@@ -108,14 +112,7 @@ private:
...
@@ -108,14 +112,7 @@ private:
// convert local position to global position, use the cell with max edep as a reference
// convert local position to global position, use the cell with max edep as a reference
auto
volman
=
m_geoSvc
->
detector
()
->
volumeManager
();
auto
volman
=
m_geoSvc
->
detector
()
->
volumeManager
();
auto
alignment
=
volman
.
lookupDetector
(
centerID
).
nominal
();
auto
alignment
=
volman
.
lookupDetector
(
centerID
).
nominal
();
// depth
auto
gpos
=
alignment
.
localToWorld
(
dd4hep
::
Position
(
x
/
tw
,
y
/
tw
,
z
/
tw
+
m_depthCorr
));
// @TODO, assume on the surface
auto
dim
=
m_geoSvc
->
cellIDPositionConverter
()
->
cellDimensions
(
centerID
);
// z length of the crystal block
double
depth
=
m_geoSvc
->
detector
()
->
constantAsDouble
(
m_moduleDimZName
);
//info() << "z_length " << depth << endmsg;
// info() << depth << " (" << dim[0] << ", " << dim[1] << ", " << dim[2] << ")" << endmsg;
auto
gpos
=
alignment
.
localToWorld
(
dd4hep
::
Position
(
x
/
tw
,
y
/
tw
,
z
/
tw
+
depth
));
cl
.
position
({
gpos
.
x
(),
gpos
.
y
(),
gpos
.
z
()});
cl
.
position
({
gpos
.
x
(),
gpos
.
y
(),
gpos
.
z
()});
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment