From 09feb25c57bd63206433ade6a9b485790f499ed9 Mon Sep 17 00:00:00 2001 From: Marco Rovere Date: Tue, 2 Jun 2015 15:57:44 +0200 Subject: [PATCH] turn CCC off for everybody, not only for iterative tracking, in RunI-like customization snippet. --- RecoTracker/Configuration/python/customiseForRunI.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/RecoTracker/Configuration/python/customiseForRunI.py b/RecoTracker/Configuration/python/customiseForRunI.py index a1aaa1ee6f153..fd81ca407fb82 100644 --- a/RecoTracker/Configuration/python/customiseForRunI.py +++ b/RecoTracker/Configuration/python/customiseForRunI.py @@ -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