Skip to content
Snippets Groups Projects
Commit f49be98f authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Merge branch 'HION4-minpt-update' into 'main'

Looser photon and electron requirements on pT for light-by-light and yy2ee in HION4.py

See merge request atlas/athena!76294
parents 979f7e93 21d3227c
Branches main
No related tags found
No related merge requests found
......@@ -26,10 +26,10 @@ def HION4SkimmingToolCfg(flags):
muonsRequirements = '(Muons.pt >= 2.0*GeV) && (abs(Muons.eta) < 2.6)'
muonOnlySelection = 'count('+muonsRequirements+') >= 1'
electronsRequirements = '(Electrons.pt > 2.0*GeV) && (abs(Electrons.eta) < 2.6)'
electronsRequirements = '(Electrons.pt > 1.5*GeV) && (abs(Electrons.eta) < 2.6)'
electronOnlySelection = 'count('+electronsRequirements+') >= 1'
photonsRequirements = '(Photons.pt >= 2.0*GeV)'
photonsRequirements = '(Photons.pt >= 1.5*GeV)'
photonOnlySelection = 'count('+photonsRequirements+') >=2'
electronPhotonSelection = '(count('+electronsRequirements+') + count('+photonsRequirements+')) >= 2'
......
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