CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/RecoTracker/TkSeedingLayers/python/TobTecLayerPairs_cfi.py

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 # Don't bother with TEC8 and 9, as tracking requires 2 hits outside
00007 # the seeding pairs.
00008     layerList = cms.vstring('TOB1+TOB2', 
00009         'TOB1+TEC1_pos', 
00010 #        'TOB1+TEC2_pos', 
00011         'TOB1+TEC1_neg', 
00012 #        'TOB1+TEC2_neg', 
00013         'TEC1_pos+TEC2_pos', 
00014 #        'TEC1_pos+TEC3_pos', 
00015         'TEC2_pos+TEC3_pos', 
00016 #        'TEC2_pos+TEC4_pos', 
00017         'TEC3_pos+TEC4_pos', 
00018 #        'TEC3_pos+TEC5_pos', 
00019         'TEC4_pos+TEC5_pos', 
00020 #        'TEC4_pos+TEC6_pos', 
00021         'TEC5_pos+TEC6_pos', 
00022 #        'TEC5_pos+TEC7_pos', 
00023         'TEC6_pos+TEC7_pos', 
00024         'TEC1_neg+TEC2_neg', 
00025 #        'TEC1_neg+TEC3_neg', 
00026         'TEC2_neg+TEC3_neg', 
00027 #        'TEC2_neg+TEC4_neg', 
00028         'TEC3_neg+TEC4_neg', 
00029 #        'TEC3_neg+TEC5_neg', 
00030         'TEC4_neg+TEC5_neg', 
00031 #        'TEC4_neg+TEC6_neg', 
00032         'TEC5_neg+TEC6_neg', 
00033 #        'TEC5_neg+TEC7_neg', 
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