Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Shaun Roe
athena
Commits
ffe1b1e2
Commit
ffe1b1e2
authored
4 years ago
by
Jacob Julian Kempster
Browse files
Options
Downloads
Patches
Plain Diff
Quick bug fixes, nothing special.
parent
26911d67
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Trigger/TrigT1/L1CaloFEX/L1CaloFEXSim/src/eTower.cxx
+2
-5
2 additions, 5 deletions
Trigger/TrigT1/L1CaloFEX/L1CaloFEXSim/src/eTower.cxx
Trigger/TrigT1/L1CaloFEX/L1CaloFEXSim/src/jTower.cxx
+2
-5
2 additions, 5 deletions
Trigger/TrigT1/L1CaloFEX/L1CaloFEXSim/src/jTower.cxx
with
4 additions
and
10 deletions
Trigger/TrigT1/L1CaloFEX/L1CaloFEXSim/src/eTower.cxx
+
2
−
5
View file @
ffe1b1e2
...
...
@@ -181,7 +181,7 @@ namespace LVL1 {
Should be derived from tower ID, should be corrected in the future.
Need to also think what index range should be (thinking ahead to Run2) */
int
eTower
::
iEta
()
const
{
const
int
index
=
(
m_eta
+
2.5
)
/
0.1
;
// /0.1; // Equivalent to divide by 0.1 which is the Tower size
const
int
index
=
(
m_eta
*
m_posneg
);
return
index
;
}
...
...
@@ -189,10 +189,7 @@ namespace LVL1 {
Should be derived from tower ID, should be corrected in the future.
Decision here is whether phi is signed or not */
int
eTower
::
iPhi
()
const
{
int
index
=
32
*
m_phi
/
M_PI
;
if
(
m_phi
<
0
)
index
=
32
*
(
m_phi
+
2
*
M_PI
)
/
M_PI
;
const
int
cindex
=
index
;
return
cindex
;
return
m_phi
;
}
/** Return ET of specified supercell */
...
...
This diff is collapsed.
Click to expand it.
Trigger/TrigT1/L1CaloFEX/L1CaloFEXSim/src/jTower.cxx
+
2
−
5
View file @
ffe1b1e2
...
...
@@ -197,7 +197,7 @@ namespace LVL1 {
Should be derived from tower ID, should be corrected in the future.
Need to also think what index range should be (thinking ahead to Run2) */
int
jTower
::
iEta
()
const
{
const
int
index
=
(
m_eta
+
2.5
)
*
10
;
// /0.1; // Equivalent to divide by 0.1 which is the Tower size
const
int
index
=
(
m_eta
*
m_posneg
);
return
index
;
}
...
...
@@ -205,10 +205,7 @@ namespace LVL1 {
Should be derived from tower ID, should be corrected in the future.
Decision here is whether phi is signed or not */
int
jTower
::
iPhi
()
const
{
int
index
=
32
*
m_phi
/
M_PI
;
if
(
m_phi
<
0
)
index
=
32
*
(
m_phi
+
2
*
M_PI
)
/
M_PI
;
const
int
cindex
=
index
;
return
cindex
;
return
m_phi
;
}
/** Return ET of specified supercell */
...
...
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