Skip to content

Commit

Permalink
Merge pull request #10316 from slava77/CMSSW_7_5_0/cscParamsFix
Browse files Browse the repository at this point in the history
T0 processing fixes: csc untracked to tracked, add dqm_offline customization
  • Loading branch information
davidlange6 committed Jul 24, 2015
2 parents 9c8698b + dd0edc6 commit dc35b96
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Configuration/DataProcessing/python/RecoTLR.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import FWCore.ParameterSet.Config as cms

from SLHCUpgradeSimulations.Configuration.postLS1Customs import customise_Reco,customise_RawToDigi
from SLHCUpgradeSimulations.Configuration.postLS1Customs import customise_Reco,customise_RawToDigi,customise_DQM
from RecoTracker.Configuration.customiseForRunI import customiseForRunI
#gone with the fact that there is no difference between production and development sequence
#def customiseCommon(process):
Expand Down Expand Up @@ -38,12 +38,16 @@ def customiseDataRun2Common(process):
process.csc2DRecHits.CSCUseGasGainCorrections = cms.bool(False)
if hasattr(process,'valCscTriggerPrimitiveDigis'):
#this is not doing anything at the moment
process.valCscTriggerPrimitiveDigis.commonParam.gangedME1a = cms.untracked.bool(False)
process.valCscTriggerPrimitiveDigis.commonParam.gangedME1a = cms.bool(False)
if hasattr(process,'valCsctfTrackDigis'):
process.valCsctfTrackDigis.gangedME1a = cms.untracked.bool(False)

process=customise_Reco(process)
process=customise_RawToDigi(process)
if hasattr(process,'RawToDigi'):
process=customise_RawToDigi(process)
if hasattr(process,'reconstruction'):
process=customise_Reco(process)
if hasattr(process,'dqmoffline_step'):
process=customise_DQM(process)

return process

Expand Down

0 comments on commit dc35b96

Please sign in to comment.