From c9b0d704d378d7a04b6c78df3b3b9614b3b9306f Mon Sep 17 00:00:00 2001 From: Titus Mombaecher Date: Mon, 25 Aug 2025 11:12:25 +0200 Subject: [PATCH 1/2] remove pT thresholds in DiElectronSoft --- configuration/python/AllenConf/HLT1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/python/AllenConf/HLT1.py b/configuration/python/AllenConf/HLT1.py index 97c3c428747..91513c91a7f 100644 --- a/configuration/python/AllenConf/HLT1.py +++ b/configuration/python/AllenConf/HLT1.py @@ -661,7 +661,7 @@ def default_physics_lines(reconstructed_objects, with_calo, with_muon, name="Hlt1DiElectronHighMass"), make_di_electron_soft_line( long_tracks, - dileptons, + dileptons_nopt, calo_matching_objects, name="Hlt1DiElectronSoft"), make_cone_jet_line( -- GitLab From adb485220fcf7376e5a568f3ed77ae056c508403 Mon Sep 17 00:00:00 2001 From: Hlt Oper Date: Tue, 26 Aug 2025 00:04:04 +0200 Subject: [PATCH 2/2] loosen a few cuts to increase efficiency --- .../lines/electron/include/DiElectronSoftLine.cuh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/device/selections/lines/electron/include/DiElectronSoftLine.cuh b/device/selections/lines/electron/include/DiElectronSoftLine.cuh index 19960535d79..47a33d45f45 100644 --- a/device/selections/lines/electron/include/DiElectronSoftLine.cuh +++ b/device/selections/lines/electron/include/DiElectronSoftLine.cuh @@ -95,10 +95,10 @@ namespace di_electron_soft_line { Allen::Property m_DESoftM0 {this, "DESoftM0", 483.f, "lower m(pipi) for KS->pipi veto"}; Allen::Property m_DESoftM1 {this, "DESoftM1", 513.f, "higher m(pipi) for KS->pipi veto"}; Allen::Property m_DESoftM2 {this, "DESoftM2", 800.f, "upper m(ee)"}; - Allen::Property m_DESoftMinIP {this, "DESoftMinIP", 1.45f, "min(IP) of the electrons"}; - Allen::Property m_DESoftMinRho2 {this, "DESoftMinRho2", 9.1f, "minimum transverse distance to the beampipe"}; - Allen::Property m_DESoftMaxDOCA {this, "DESoftMaxDOCA", 0.096f, "max DOCA between electrons"}; - Allen::Property m_DESoftMaxIPDZ {this, "DESoftMaxIPDZ", 0.0024f, "DESoftMaxIPDZ description"}; + Allen::Property m_DESoftMinIP {this, "DESoftMinIP", 1.4f, "min(IP) of the electrons"}; + Allen::Property m_DESoftMinRho2 {this, "DESoftMinRho2", 9.f, "minimum transverse distance to the beampipe"}; + Allen::Property m_DESoftMaxDOCA {this, "DESoftMaxDOCA", 0.1f, "max DOCA between electrons"}; + Allen::Property m_DESoftMaxIPDZ {this, "DESoftMaxIPDZ", 0.0045f, "DESoftMaxIPDZ description"}; Allen::Property m_DESoftMinZ {this, "DESoftMinZ", -375.f, "min z"}; Allen::Property m_DESoftMaxZ {this, "DESoftMaxZ", 635.f, "max z"}; Allen::Property m_DESoftGhost {this, -- GitLab