Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Allen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
LHCb
Allen
Commits
4eace7bc
Commit
4eace7bc
authored
2 years ago
by
Lorenzo Pica
Browse files
Options
Downloads
Patches
Plain Diff
Switch sin and cos in tx TrackCheckerHistos.cpp definition
parent
de4b5943
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!839
Use the right tx and ty definition in TrackCheckerHistos.cpp
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
checker/tracking/src/TrackCheckerHistos.cpp
+2
-2
2 additions, 2 deletions
checker/tracking/src/TrackCheckerHistos.cpp
with
2 additions
and
2 deletions
checker/tracking/src/TrackCheckerHistos.cpp
+
2
−
2
View file @
4eace7bc
...
...
@@ -320,8 +320,8 @@ void TrackCheckerHistos::fillReconstructedHistos(const MCParticle& mcp, HistoCat
h_reconstructed_phi
[
phi_name
]
->
Fill
(
mcp
.
phi
);
h_reconstructed_nPV
[
nPV_name
]
->
Fill
(
mcp
.
nPV
);
h_reconstructed_eta_phi
[
eta_phi_name
]
->
Fill
(
mcp
.
eta
,
mcp
.
phi
);
float
tx
=
std
::
sin
(
mcp
.
phi
)
/
std
::
sinh
(
mcp
.
eta
);
float
ty
=
std
::
cos
(
mcp
.
phi
)
/
std
::
sinh
(
mcp
.
eta
);
float
tx
=
std
::
cos
(
mcp
.
phi
)
/
std
::
sinh
(
mcp
.
eta
);
float
ty
=
std
::
sin
(
mcp
.
phi
)
/
std
::
sinh
(
mcp
.
eta
);
float
docaz
=
std
::
abs
(
ty
*
mcp
.
ovtx_x
-
tx
*
mcp
.
ovtx_y
)
/
std
::
sqrt
(
tx
*
tx
+
ty
*
ty
);
h_reconstructed_docaz
[
docaz_name
]
->
Fill
(
docaz
);
#else
...
...
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