Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 TobTecLayerPairs = cms.ESProducer("SeedingLayersESProducer",
00004 ComponentName = cms.string('TobTecLayerPairs'),
00005
00006
00007
00008 layerList = cms.vstring('TOB1+TOB2',
00009 'TOB1+TEC1_pos',
00010
00011 'TOB1+TEC1_neg',
00012
00013 'TEC1_pos+TEC2_pos',
00014
00015 'TEC2_pos+TEC3_pos',
00016
00017 'TEC3_pos+TEC4_pos',
00018
00019 'TEC4_pos+TEC5_pos',
00020
00021 'TEC5_pos+TEC6_pos',
00022
00023 'TEC6_pos+TEC7_pos',
00024 'TEC1_neg+TEC2_neg',
00025
00026 'TEC2_neg+TEC3_neg',
00027
00028 'TEC3_neg+TEC4_neg',
00029
00030 'TEC4_neg+TEC5_neg',
00031
00032 'TEC5_neg+TEC6_neg',
00033
00034 'TEC6_neg+TEC7_neg'),
00035
00036 TOB = cms.PSet(
00037 matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
00038 TTRHBuilder = cms.string('WithTrackAngle')
00039 ),
00040
00041 TEC = cms.PSet(
00042 matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
00043 useRingSlector = cms.bool(True),
00044 TTRHBuilder = cms.string('WithTrackAngle'),
00045 minRing = cms.int32(5),
00046 maxRing = cms.int32(5)
00047 )
00048 )
00049
00050