Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CCC off everywhere, not only iterative tracking, in RunI-like customisation snippet. #9411

Merged
merged 1 commit into from Jun 4, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions RecoTracker/Configuration/python/customiseForRunI.py
Expand Up @@ -101,4 +101,12 @@ def customiseForRunI(process):
process.ak4CaloJetsForTrk.srcPVs = 'pixelVertices'
process.photonConvTrajSeedFromSingleLeg.primaryVerticesTag = 'pixelVertices'

# ... and finally turn off all possible references to CCC: this is
# done by switching off the Tight and Loose reftoPSet, rather than
# following all the places in which they are effectively used in
# release. The RunI-like tracking already uses CCCNone: this will
# be useful mainly for conversions.
process.SiStripClusterChargeCutTight.value = -1.
process.SiStripClusterChargeCutLoose.value = -1.

return process