Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena-acts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
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
Show more breadcrumbs
Dimitra Amperiadou
athena-acts
Commits
339f9ce2
Commit
339f9ce2
authored
9 years ago
by
Suneet Upadhyay
Committed by
Graeme Stewart
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
added keys, sub-keys, histograms (MissingETMonitoring-00-02-33)
parent
b6fa3ea3
No related branches found
No related tags found
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Reconstruction/MissingETMonitoring/share/MissingET_Monitoring.py
+40
-21
40 additions, 21 deletions
...ruction/MissingETMonitoring/share/MissingET_Monitoring.py
Reconstruction/MissingETMonitoring/src/METMonTool.cxx
+263
-116
263 additions, 116 deletions
Reconstruction/MissingETMonitoring/src/METMonTool.cxx
with
303 additions
and
137 deletions
Reconstruction/MissingETMonitoring/share/MissingET_Monitoring.py
+
40
−
21
View file @
339f9ce2
...
...
@@ -88,7 +88,7 @@ for trigger in triggerList:
metMonTool
.
NameSuffix
=
"
Calo
"
if
triggerName
!=
""
:
metMonTool
.
NameSuffix
+=
"
_
"
+
triggerName
metMonTool
.
metKeys
=
[
"
MET_
Base0
"
,
"
MET_Base
"
,
"
MET_
Topo
"
,
"
MET_LocHadTopo
"
]
metMonTool
.
metKeys
=
[
"
MET_Topo
"
,
"
MET_LocHadTopo
"
]
metMonTool
.
metFinKey
=
""
metMonTool
.
metCalKey
=
""
metMonTool
.
jetColKey
=
"
AntiKt4LCTopoJets
"
...
...
@@ -107,7 +107,26 @@ for trigger in triggerList:
metMonTool
.
NameSuffix
=
"
Refined
"
if
triggerName
!=
""
:
metMonTool
.
NameSuffix
+=
"
_
"
+
triggerName
metMonTool
.
metKeys
=
[
"
MET_RefEle
"
,
"
MET_RefGamma
"
,
"
MET_RefTau
"
,
"
MET_RefJet
"
,
"
MET_Muon
"
,
"
MET_RefFinal
"
]
metMonTool
.
metKeys
=
[
"
MET_RefEle
"
,
"
MET_RefGamma
"
,
"
MET_RefTau
"
,
"
MET_RefJet
"
,
"
MET_Muon
"
,
"
MET_PVSoftTrk
"
,
"
MET_SoftClus
"
,
"
MET_RefFinal
"
]
metMonTool
.
metFinKey
=
""
metMonTool
.
metCalKey
=
""
metMonTool
.
jetColKey
=
"
AntiKt4LCTopoJets
"
metMonTool
.
eleColKey
=
""
metMonTool
.
muoColKey
=
""
metMonTool
.
TriggerChain
=
trigger
metMonTool
.
FilterTools
.
append
(
monFilledBunchFilterTool
)
metMonTool
.
FilterTools
.
append
(
monbadlb
)
if
trigger
!=
""
:
metMonTool
.
TrigDecisionTool
=
monTrigDecTool
ToolSvc
+=
metMonTool
monManETmiss
.
AthenaMonTools
+=
[
metMonTool
]
# Tool for PFlow MET monitoring
metMonTool
=
METMonTool
(
name
=
"
METMonTool_PFlow_
"
+
triggerName
)
metMonTool
.
NameSuffix
=
"
PFlow
"
if
triggerName
!=
""
:
metMonTool
.
NameSuffix
+=
"
_
"
+
triggerName
metMonTool
.
metKeys
=
[
"
MET_PFlow_RefEle
"
,
"
MET_PFlow_RefGamma
"
,
"
MET_PFlow_RefTau
"
,
"
MET_PFlow_RefJet
"
,
"
MET_PFlow_Muon
"
,
"
MET_PFlow_PVSoftTrk
"
,
"
MET_PFlow_SoftClus
"
,
"
MET_PFlow_RefFinal
"
]
metMonTool
.
metFinKey
=
""
metMonTool
.
metCalKey
=
""
metMonTool
.
jetColKey
=
"
AntiKt4LCTopoJets
"
...
...
@@ -127,7 +146,7 @@ if DQMonFlags.useTrigger():
trigger
=
"
L1_RD0_EMPTY
"
else
:
trigger
=
""
#
# Tool for calorimeter term monitoring (TopoClusters)
metMonTool
=
METMonTool
(
name
=
"
METMonTool_Topo
"
)
metMonTool
.
NameSuffix
=
"
Topo
"
...
...
@@ -147,21 +166,21 @@ if trigger != "":
ToolSvc
+=
metMonTool
monManETmiss
.
AthenaMonTools
+=
[
metMonTool
]
# Tool for calorimeter term monitoring (2 sigma noise suppression)
metMonTool
=
METMonTool
(
name
=
"
METMonTool_Base
"
)
metMonTool
.
NameSuffix
=
"
Base
"
metMonTool
.
metKeys
=
[]
metMonTool
.
metFinKey
=
"
MET_Base
"
metMonTool
.
metCalKey
=
"
MET_Base
"
metMonTool
.
jetColKey
=
"
AntiKt4LCTopoJets
"
metMonTool
.
eleColKey
=
""
metMonTool
.
muoColKey
=
""
metMonTool
.
nEtBins
=
100
metMonTool
.
EtRange
=
50.0
metMonTool
.
SumEtRangeFactor
=
2.0
metMonTool
.
FillNegativeSumEt
=
True
metMonTool
.
TriggerChain
=
trigger
if
trigger
!=
""
:
metMonTool
.
TrigDecisionTool
=
monTrigDecTool
ToolSvc
+=
metMonTool
monManETmiss
.
AthenaMonTools
+=
[
metMonTool
]
#
# Tool for calorimeter term monitoring (2 sigma noise suppression)
#
metMonTool = METMonTool(name = "METMonTool_Base")
#
metMonTool.NameSuffix = "Base"
#
metMonTool.metKeys = []
#
metMonTool.metFinKey = "MET_Base"
#
metMonTool.metCalKey = "MET_Base"
#
metMonTool.jetColKey = "AntiKt4LCTopoJets"
#
metMonTool.eleColKey = ""
#
metMonTool.muoColKey = ""
#
metMonTool.nEtBins = 100
#
metMonTool.EtRange = 50.0
#
metMonTool.SumEtRangeFactor = 2.0
#
metMonTool.FillNegativeSumEt = True
#
metMonTool.TriggerChain = trigger
#
if trigger != "":
#
metMonTool.TrigDecisionTool = monTrigDecTool
#
ToolSvc += metMonTool
#
monManETmiss.AthenaMonTools += [ metMonTool ]
This diff is collapsed.
Click to expand it.
Reconstruction/MissingETMonitoring/src/METMonTool.cxx
+
263
−
116
View file @
339f9ce2
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