Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Katja Hannele Mankinen
athena
Commits
ef4969e4
Commit
ef4969e4
authored
6 years ago
by
Will Kalderon
Browse files
Options
Downloads
Patches
Plain Diff
remove skipping start of bunch train, add histogram
Former-commit-id: 2d7fd1613cac1a8aaee3e3a4362ec30983f76666
parent
99f9c079
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
Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerReader.cxx
+1
-13
1 addition, 13 deletions
Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerReader.cxx
with
1 addition
and
13 deletions
Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerReader.cxx
+
1
−
13
View file @
ef4969e4
...
...
@@ -126,21 +126,9 @@ StatusCode JGTowerReader::execute() {
const
xAOD
::
EventInfo
*
eventInfo
=
0
;
CHECK
(
evtStore
()
->
retrieve
(
eventInfo
,
"EventInfo"
)
);
//events with bcid distance from bunch train <20 vetoed
ToolHandle
<
Trig
::
IBunchCrossingTool
>
m_bcTool
(
"Trig::MCBunchCrossingTool/BunchCrossingTool"
);
int
distFrontBunchTrain
=
m_bcTool
->
distanceFromFront
(
eventInfo
->
bcid
(),
Trig
::
IBunchCrossingTool
::
BunchCrossings
);
ATH_MSG_DEBUG
(
"dist from front of bunch train is "
<<
distFrontBunchTrain
<<
"..."
);
if
(
distFrontBunchTrain
<
0
)
{
ATH_MSG_DEBUG
(
"... hasn't worked, ignoring"
);
}
else
if
(
distFrontBunchTrain
<
20
)
{
ATH_MSG_DEBUG
(
"... skipping event"
);
return
StatusCode
::
SUCCESS
;
}
else
{
ATH_MSG_DEBUG
(
"... continuing"
);
}
CHECK
(
HistBookFill
(
"distFrontBunchTrain"
,
100
,
0
,
100
,
distFrontBunchTrain
,
1.
));
const
CaloCellContainer
*
scells
=
0
;
CHECK
(
evtStore
()
->
retrieve
(
scells
,
"SCell"
)
);
...
...
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