Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
atlas
athena
Commits
3b518a22
Commit
3b518a22
authored
Feb 19, 2020
by
Christos Anastopoulos
Browse files
Rescaling should not alter the eta, but could have an effect on phi
parent
daf05c8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Reconstruction/egamma/egammaAlgs/src/egammaSelectedTrackCopy.cxx
View file @
3b518a22
...
...
@@ -297,12 +297,11 @@ egammaSelectedTrackCopy::Select(const EventContext& ctx,
}
/*
* Cases where
* - it passes deltaEta[2] from last measurement
* - and it is still inside the broad preselection window
* - it passes deltaEta[2] from last measurement (rescaling should not affect the eta side)
* - and we have a cluster with higher Et.
* Rescale up the track to account for radiative loses and retry
*/
if
(
fabs
(
deltaEta
[
2
])
<
m_narrowDeltaEta
&&
fabs
(
deltaPhi
[
2
])
<
m_broadDeltaPhi
&&
cluster
->
et
()
>
track
->
pt
())
{
if
(
fabs
(
deltaEta
[
2
])
<
m_narrowDeltaEta
&&
cluster
->
et
()
>
track
->
pt
())
{
// Extrapolate from Perigee Rescaled
std
::
array
<
double
,
4
>
etaRes
=
{
-
999.0
,
-
999.0
,
-
999.0
,
-
999.0
};
std
::
array
<
double
,
4
>
phiRes
=
{
-
999.0
,
-
999.0
,
-
999.0
,
-
999.0
};
...
...
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