Skip to content
Snippets Groups Projects
Commit 90ff6b67 authored by Chris Malena Delitzsch's avatar Chris Malena Delitzsch
Browse files

Updating tau WPs for MET

parent 76c426e4
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!41971Updating tau WPs for MET
...@@ -50,12 +50,12 @@ tool1.TauSelectionTool = tauseltool ...@@ -50,12 +50,12 @@ tool1.TauSelectionTool = tauseltool
tool1.TauSelectionTool.ConfigPath = "" tool1.TauSelectionTool.ConfigPath = ""
tool1.TauSelectionTool.SelectionCuts \ tool1.TauSelectionTool.SelectionCuts \
= int(SelectionCuts.CutPt | SelectionCuts.CutAbsEta | = int(SelectionCuts.CutPt | SelectionCuts.CutAbsEta |
SelectionCuts.CutAbsCharge | SelectionCuts.CutNTrack) SelectionCuts.CutAbsCharge | SelectionCuts.CutNTrack | SelectionCuts.CutJetIDWP)
tool1.TauSelectionTool.PtMin = 20.0 tool1.TauSelectionTool.PtMin = 20.0
tool1.TauSelectionTool.JetIDWP = TauAnalysisTools.JETIDNONE tool1.TauSelectionTool.JetIDWP = TauAnalysisTools.JETIDRNNMEDIUM
tool1.TauSelectionTool.EleOLR = False tool1.TauSelectionTool.EleOLR = True
tool1.TauSelectionTool.NTracks = (0, 1, 2, 3, 4, 5) tool1.TauSelectionTool.NTracks = (1, 3)
tool1.TauSelectionTool.AbsCharges = (0, 1, 2, 3) tool1.TauSelectionTool.AbsCharge = 1
tool1.TauSelectionTool.AbsEtaRegion = (0.0, 1.37, 1.52, 2.5) tool1.TauSelectionTool.AbsEtaRegion = (0.0, 1.37, 1.52, 2.5)
monMan = CfgMgr.AthenaMonManager("PhysValMonManager") monMan = CfgMgr.AthenaMonManager("PhysValMonManager")
......
...@@ -31,12 +31,12 @@ def getMETMakerAlg(suffix,jetSelection="Tier0",jetColl=""): ...@@ -31,12 +31,12 @@ def getMETMakerAlg(suffix,jetSelection="Tier0",jetColl=""):
tauSel = CompFactory.getComp("TauAnalysisTools::TauSelectionTool")("TauSelectionTool_METMakerAlg", tauSel = CompFactory.getComp("TauAnalysisTools::TauSelectionTool")("TauSelectionTool_METMakerAlg",
ConfigPath = "", ConfigPath = "",
SelectionCuts = int(SelectionCuts.CutPt | SelectionCuts.CutAbsEta | SelectionCuts.CutAbsCharge | SelectionCuts.CutNTrack), SelectionCuts = int(SelectionCuts.CutPt | SelectionCuts.CutAbsEta | SelectionCuts.CutAbsCharge | SelectionCuts.CutNTrack | SelectionCuts.CutJetIDWP),
PtMin = 20.0, PtMin = 20.0,
JetIDWP = TauAnalysisTools.JETIDNONE, JetIDWP = TauAnalysisTools.JETIDRNNMEDIUM,
EleOLR = False, EleOLR = True,
NTracks = (0, 1, 2, 3, 4, 5), NTracks = (1, 3),
AbsCharges = (0, 1, 2, 3), AbsCharge = 1,
AbsEtaRegion = (0.0, 1.37, 1.52, 2.5)) AbsEtaRegion = (0.0, 1.37, 1.52, 2.5))
if jetColl=="": if jetColl=="":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment