Skip to content
Snippets Groups Projects
Commit 5cbe56ab authored by James Beacham's avatar James Beacham
Browse files

Merge branch '21.0-trtmonhitrequpdate' into '21.0'

Increasing minimum hit requirements of silicon and pixel as 3 and 1 respectively.

See merge request atlas/athena!11866

Former-commit-id: 45154d4c26f9b89c10dd60c3bac283cb48a05f32
parents 5a098d30 5644fbe9
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ if jobproperties.Beam.beamType() == "collisions":
minTrkPtCut = 2.0 * Units.GeV
### at least one silicon detector must be on to require silicon hits
if DetFlags.pixel_on() or DetFlags.SCT_on():
minSiHitCut = 1
minSiHitCut = 3
else: # both silicon detectors are off, we cannot require hits
minSiHitCut = 0
else: # no track quality cuts for cosmics or single beams
......@@ -76,8 +76,8 @@ InDetTRT_Monitoring_Tool = TRT_Monitoring_Tool (name = "
max_abs_eta = 2.5,
MinTrackP = 0.0 * Units.GeV,
min_pT = minTrkPtCut, # default = 0.5 GeV
min_si_hits = minSiHitCut, # default = 1
min_pixel_hits = 0,
min_si_hits = minSiHitCut, # default = 3
min_pixel_hits = 1,
min_sct_hits = 0,
min_trt_hits = 10
)
......
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