Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@
minGoodStripCharge = dict(refToPSet_ = 'SiStripClusterChargeCutNone')
)

# Phase2 has extended outer-tracker coverage
# so no need to relax cuts on number of hits at high eta
from Configuration.Eras.Modifier_phase2_common_cff import phase2_common
phase2_common.toModify(TrajectoryFilterForElectrons,
highEtaSwitch = 5.0,
minHitsAtHighEta = 5
)

# Trajectory Builder
import RecoTracker.CkfPattern.CkfTrajectoryBuilder_cfi
TrajectoryBuilderForElectrons = RecoTracker.CkfPattern.CkfTrajectoryBuilder_cfi.CkfTrajectoryBuilder.clone(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,11 @@
MinNumberOfHitsHighEta = 3,
HighEtaSwitch = 2.5
)

# Phase2 has extended outer-tracker coverage
# so no need to relax cuts on number of hits at high eta
from Configuration.Eras.Modifier_phase2_common_cff import phase2_common
phase2_common.toModify(GsfElectronFittingSmoother,
MinNumberOfHitsHighEta = 5,
HighEtaSwitch = 5.0
)