Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:59:30

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #Gain
0004 # first SiStripGainESProducer takes SiStripGainRcd from DB
0005 from CalibTracker.SiStripESProducers.SiStripGainESProducer_cfi import *
0006 
0007 # SiStripLorentzAngleDep producer to select the LA value according to Tracker mode
0008 from CalibTracker.SiStripESProducers.SiStripLorentzAngleDepESProducer_cfi import *
0009 
0010 # SiStripBackPlaneCorrectionDep producer to select the LA value according to Tracker mode
0011 from CalibTracker.SiStripESProducers.SiStripBackPlaneCorrectionDepESProducer_cfi import *
0012 
0013 #LorentzAngle
0014 from RecoLocalTracker.SiStripRecHitConverter.StripCPEfromTrackAngle_cfi import *
0015 from RecoLocalTracker.SiStripRecHitConverter.SiStripRecHitMatcher_cfi import *
0016 
0017 #cabling
0018 sistripconn = cms.ESProducer("SiStripConnectivity")
0019 
0020 from CalibTracker.SiStripESProducers.SiStripQualityESProducer_cfi import *
0021 siStripQualityESProducer.ListOfRecordToMerge = cms.VPSet(
0022      cms.PSet( record = cms.string("SiStripDetVOffRcd"),    tag    = cms.string("") ),
0023      cms.PSet( record = cms.string("SiStripDetCablingRcd"), tag    = cms.string("") ),
0024      cms.PSet( record = cms.string("RunInfoRcd"),           tag    = cms.string("") ),
0025      cms.PSet( record = cms.string("SiStripBadChannelRcd"), tag    = cms.string("") ),
0026      cms.PSet( record = cms.string("SiStripBadFiberRcd"),   tag    = cms.string("") ),
0027      cms.PSet( record = cms.string("SiStripBadModuleRcd"),  tag    = cms.string("") ),
0028      cms.PSet( record = cms.string("SiStripBadStripRcd"),   tag    = cms.string("") )
0029      )
0030 siStripQualityESProducer.ReduceGranularity = cms.bool(False)
0031 # True means all the debug output from adding the RunInfo (default is False)
0032 siStripQualityESProducer.PrintDebugOutput = cms.bool(False)
0033 # "True" means that the RunInfo is used even if all the feds are off (including other subdetectors).
0034 # This means that if the RunInfo was filled with a fake empty object we will still set the full tracker as bad.
0035 # With "False", instead, in that case the RunInfo information is discarded.
0036 # Default is "False".
0037 siStripQualityESProducer.UseEmptyRunInfo = cms.bool(False)
0038 
0039 from CalibTracker.SiPixelESProducers.siPixelQualityESProducer_cfi import *
0040 from CalibTracker.SiPixelESProducers.siPixelQualityForRawToDigiESProducer_cfi import *
0041 
0042 # Multiple scattering parametrisation
0043 from RecoTracker.TkMSParametrization.multipleScatteringParametrisationMakerESProducer_cfi import *