Skip to content
Snippets Groups Projects
Commit 15618c20 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'cherry-pick-5cbe56ab [formerly 45154d4c26]-master' into 'master'

Sweeping !11866 from 21.0 to master.
Increasing minimum hit requirements of silicon and pixel as 3 and 1 respectively.

See merge request atlas/athena!12124

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