From 1286904a3e92a2f953e1e4cdbd6068864b9fa3ad Mon Sep 17 00:00:00 2001 From: Zach Marshall <ZLMarshall@lbl.gov> Date: Tue, 17 Nov 2020 13:45:41 +0100 Subject: [PATCH] Increasing large-R truth jet threshold The default threshold should be higher. It was 50 GeV in the past, and this was missed in porting to master. Decreases the size of truth derivations by about 10%. --- .../DerivationFrameworkMCTruth/python/MCTruthCommon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkMCTruth/python/MCTruthCommon.py b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkMCTruth/python/MCTruthCommon.py index 8c193ca0afb..db96f6c2c1c 100644 --- a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkMCTruth/python/MCTruthCommon.py +++ b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkMCTruth/python/MCTruthCommon.py @@ -182,7 +182,7 @@ def addTruthJets(kernel=None, decorationDressing=None): JetRadius = 1.0, JetBuilder = DFCommon_jbld, GhostArea = 0.01, - PtMin = threshold + PtMin = 50000. ) #Now we setup a JetRecTool which will use the above JetFinder AntiKt10TruthJetsRec = CfgMgr.JetRecTool("AntiKt10TruthJetsRec", @@ -205,7 +205,7 @@ def addTruthJets(kernel=None, decorationDressing=None): JetRadius = 1.0, JetBuilder = DFCommon_jbld, GhostArea = 0.01, - PtMin = threshold + PtMin = 50000. ) from JetSubStructureMomentTools.JetSubStructureMomentToolsConf import EnergyCorrelatorTool DFCommon_EnCorr = EnergyCorrelatorTool("DFCommon_EnCorr", Beta = 1.0) -- GitLab