Skip to content
Snippets Groups Projects
Commit 5615bdb9 authored by Christopher Rob Jones's avatar Christopher Rob Jones
Browse files

Add Min momentum cuts to RICH Reco QMT tests

parent 2d7ac339
No related branches found
No related tags found
2 merge requests!3788Draft: Update SciFi cluster monitoring,!3625RICH 4D Reco Update
......@@ -13,6 +13,7 @@
from Gaudi.Configuration import *
from GaudiConfig.ControlFlow import seq
from GaudiKernel.SystemOfUnits import GeV
from Configurables import LHCbApp, GaudiSequencer, DDDBConf
from Configurables import FPEAuditor
from Configurables import UnpackMCParticle, UnpackMCVertex
......@@ -144,6 +145,10 @@ else:
# DataType
dType = "Upgrade"
# Min Momentum cuts
minP = (0.5 * GeV, 0.5 * GeV, 0.5 * GeV)
minPt = 0.1 * GeV
if not useMCTracks:
# Explicitly unpack the Tracks
......@@ -200,6 +205,8 @@ histos = "OfflineFull"
from RichFutureRecSys.ConfiguredRichReco import RichRecoSequence
RichRec = RichRecoSequence(
MinP=minP,
MinPt=minPt,
dataType=dType,
inputTrackLocations=tkLocs,
outputPIDLocations=pidLocs,
......
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