Skip to content
Snippets Groups Projects
Commit 2d3fe073 authored by Mengzhen Wang's avatar Mengzhen Wang Committed by Christina Agapopoulou
Browse files

Bug fix for the Upsilon trigger high mass window

parent 76e975ce
No related branches found
No related tags found
5 merge requests!4232Run5: rebase, restructure run5 code, add back examples,!3376Draft: bnoc_PPbarLines_isolation,!3351Synchronize master branch with 2024-patches,!3328Draft: Synchronize master branch with 2024-patches,!3310Bug fix for the Upsilon trigger high mass window
......@@ -28,6 +28,7 @@ from Hlt2Conf.lines.charmonium_to_dimuon import make_jpsi
from Hlt2Conf.lines.charmonium_to_dimuon import make_charmonium_muons as make_bandq_muons
_MASSMIN_UPSILON = 7900 * MeV
_MASSMAX_UPSILON = 12000 * MeV
_PIDMU_UPSILON = -5.
#mass window and pidmu cuts of jpsi and psi2s defined in Hlt2Conf.lines.charmonium_to_dimuon
......@@ -93,6 +94,7 @@ def make_jpsi_highpt(name='bandq_jpsi_highpt_{hash}'):
@configurable
def make_upsilon(name='bandq_upsilon_{hash}',
minMass_dimuon=_MASSMIN_UPSILON,
maxMass_dimuon=_MASSMAX_UPSILON,
minPt_muon=300 * MeV,
minP_muon=0 * MeV,
minPt_upsilon=0 * MeV):
......@@ -105,7 +107,8 @@ def make_upsilon(name='bandq_upsilon_{hash}',
minP_muon=minP_muon,
minPt_muon=minPt_muon,
minPIDmu=_PIDMU_UPSILON,
minMass_dimuon=minMass_dimuon)
minMass_dimuon=minMass_dimuon,
maxMass_dimuon=maxMass_dimuon)
return ParticleFilter(dimuon, name=name, Cut=F.FILTER(code))
......
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