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