Skip to content

Commit

Permalink
Merge pull request #9987 from rovere/CCC_Off_For_Express_and_Prompt
Browse files Browse the repository at this point in the history
Turn CCC off for Express and Prompt processing, for Run2 scenarios.
  • Loading branch information
davidlange6 committed Jul 4, 2015
2 parents e4cfafa + 3fd3676 commit 6a6cebf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Configuration/DataProcessing/python/RecoTLR.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ def customiseExpress(process):
def customiseExpressRun2(process):
process = customiseExpress(process)
process = customiseDataRun2Common(process)
process.SiStripClusterChargeCutTight.value = -1.
process.SiStripClusterChargeCutLoose.value = -1.
return process

def customiseExpressRun2B0T(process):
Expand All @@ -103,6 +105,8 @@ def customisePrompt(process):
def customisePromptRun2(process):
process = customisePrompt(process)
process = customiseDataRun2Common(process)
process.SiStripClusterChargeCutTight.value = -1.
process.SiStripClusterChargeCutLoose.value = -1.
return process

def customisePromptRun2B0T(process):
Expand Down
11 changes: 11 additions & 0 deletions RecoTracker/Configuration/python/customiseNoCCC.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import FWCore.ParameterSet.Config as cms

def customiseNoCCC(process):

# apply only in reco step
if not hasattr(process,'reconstruction'):
return process
process.SiStripClusterChargeCutTight.value = -1.
process.SiStripClusterChargeCutLoose.value = -1.

return process

0 comments on commit 6a6cebf

Please sign in to comment.