Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
EIC
Project Juggler
Commits
f811ff42
Commit
f811ff42
authored
Oct 03, 2020
by
Jihee Kim
Browse files
Merge branch 'master' of
https://eicweb.phy.anl.gov/EIC/juggler
into master
parents
85cad72c
21068a61
Changes
2
Hide whitespace changes
Inline
Side-by-side
JugDigi/src/components/CrystalEndcapsDigi.cpp
View file @
f811ff42
...
...
@@ -32,9 +32,10 @@ namespace Jug {
// ill-formed: using GaudiAlgorithm::GaudiAlgorithm;
CrystalEndcapsDigi
(
const
std
::
string
&
name
,
ISvcLocator
*
svcLoc
)
:
GaudiAlgorithm
(
name
,
svcLoc
)
{
declareProperty
(
"inputHitCollection"
,
m_inputHitCollection
,
""
);
declareProperty
(
"outputHitCollection"
,
m_outputHitCollection
,
""
);
}
declareProperty
(
"inputHitCollection"
,
m_inputHitCollection
,
""
);
declareProperty
(
"outputHitCollection"
,
m_outputHitCollection
,
""
);
}
StatusCode
initialize
()
override
{
if
(
GaudiAlgorithm
::
initialize
().
isFailure
())
return
StatusCode
::
FAILURE
;
...
...
@@ -45,6 +46,7 @@ namespace Jug {
}
return
StatusCode
::
SUCCESS
;
}
StatusCode
execute
()
override
{
// input collections
const
dd4pod
::
CalorimeterHitCollection
*
simhits
=
m_inputHitCollection
.
get
();
...
...
@@ -52,9 +54,10 @@ namespace Jug {
auto
rawhits
=
m_outputHitCollection
.
createAndPut
();
eic
::
RawCalorimeterHitCollection
*
rawHitCollection
=
new
eic
::
RawCalorimeterHitCollection
();
for
(
const
auto
&
ahit
:
*
simhits
)
{
double
res
=
m_gaussDist
()
/
sqrt
(
ahit
.
energyDeposit
()
/
Gaudi
::
Units
::
GeV
);
eic
::
RawCalorimeterHit
rawhit
(
(
long
long
)
ahit
.
cellID
(),
(
long
long
)
(
ahit
.
energyDeposit
()
+
m_gaussDist
*
sqrt
(
ahit
.
energyDeposit
())
)
/
Gaudi
::
Units
::
MeV
*
100.0
,
(
long
long
)
ahit
.
energyDeposit
()
*
(
1.
+
res
)
/
Gaudi
::
Units
::
MeV
*
100.0
,
(
double
)
ahit
.
truth
().
time
/
Gaudi
::
Units
::
ns
);
rawhits
->
push_back
(
rawhit
);
}
...
...
JugReco/src/components/ClusterRecoCoG.cpp
View file @
f811ff42
...
...
@@ -32,7 +32,8 @@ class ClusterRecoCoG : public GaudiAlgorithm
{
public:
Gaudi
::
Property
<
double
>
m_logWeightBase
{
this
,
"logWeightBase"
,
3.6
};
Gaudi
::
Property
<
std
::
string
>
m_moduleDimZName
{
this
,
"moduleDimZName"
,
"CrystalBox_z_length"
};
Gaudi
::
Property
<
double
>
m_depthCorrection
{
this
,
"depthCorrection"
,
0.0
};
Gaudi
::
Property
<
std
::
string
>
m_moduleDimZName
{
this
,
"moduleDimZName"
,
""
};
DataHandle
<
eic
::
ClusterCollection
>
m_clusterCollection
{
"clusterCollection"
,
Gaudi
::
DataHandle
::
Reader
,
this
};
// Pointer to the geometry service
...
...
@@ -57,8 +58,15 @@ public:
<<
"Make sure you have GeoSvc and SimSvc in the right order in the configuration."
<<
endmsg
;
return
StatusCode
::
FAILURE
;
}
<<<<<<<
HEAD
// depth: z length of the crystal block
m_depthCorr
=
m_geoSvc
->
detector
()
->
constantAsDouble
(
m_moduleDimZName
);
=======
// update depth correction if a name is provided
if
(
!
m_moduleDimZName
.
value
().
empty
())
{
m_depthCorrection
=
m_geoSvc
->
detector
()
->
constantAsDouble
(
m_moduleDimZName
);
}
>>>>>>>
21068
a610f35f083a214e3a81badd0ced4aad3da
//info() << "z_length " << depth << endmsg;
return
StatusCode
::
SUCCESS
;
}
...
...
@@ -112,7 +120,11 @@ private:
// convert local position to global position, use the cell with max edep as a reference
auto
volman
=
m_geoSvc
->
detector
()
->
volumeManager
();
auto
alignment
=
volman
.
lookupDetector
(
centerID
).
nominal
();
<<<<<<<
HEAD
auto
gpos
=
alignment
.
localToWorld
(
dd4hep
::
Position
(
x
/
tw
,
y
/
tw
,
z
/
tw
+
m_depthCorr
));
=======
auto
gpos
=
alignment
.
localToWorld
(
dd4hep
::
Position
(
x
/
tw
,
y
/
tw
,
z
/
tw
+
m_depthCorrection
));
>>>>>>>
21068
a610f35f083a214e3a81badd0ced4aad3da
cl
.
position
({
gpos
.
x
(),
gpos
.
y
(),
gpos
.
z
()});
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment