CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch12/src/RecoTracker/TkSeedingLayers/python/MixedLayerPairs_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # This is standard pixel-pair seeding, but making use of TEC disks
00004 # in forward region to boost acceptance.
00005 
00006 MixedLayerPairs = cms.ESProducer("SeedingLayersESProducer",
00007     ComponentName = cms.string('MixedLayerPairs'),
00008     layerList = cms.vstring('BPix1+BPix2', 
00009         'BPix1+BPix3', 
00010         'BPix2+BPix3', 
00011         'BPix1+FPix1_pos', 
00012         'BPix1+FPix1_neg', 
00013         'BPix1+FPix2_pos', 
00014         'BPix1+FPix2_neg', 
00015         'BPix2+FPix1_pos', 
00016         'BPix2+FPix1_neg', 
00017         'BPix2+FPix2_pos', 
00018         'BPix2+FPix2_neg', 
00019         'FPix1_pos+FPix2_pos', 
00020         'FPix1_neg+FPix2_neg', 
00021         'FPix2_pos+TEC1_pos', 
00022         'FPix2_pos+TEC2_pos', 
00023         'TEC1_pos+TEC2_pos', 
00024         'TEC2_pos+TEC3_pos', 
00025         'FPix2_neg+TEC1_neg', 
00026         'FPix2_neg+TEC2_neg', 
00027         'TEC1_neg+TEC2_neg', 
00028         'TEC2_neg+TEC3_neg'),
00029     TEC = cms.PSet(
00030         matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
00031         useRingSlector = cms.bool(True),
00032         TTRHBuilder = cms.string('WithTrackAngle'),
00033         minRing = cms.int32(1),
00034         maxRing = cms.int32(1)
00035     ),
00036     BPix = cms.PSet(
00037         useErrorsFromParam = cms.bool(True),
00038         hitErrorRPhi = cms.double(0.0027),
00039         TTRHBuilder = cms.string('TTRHBuilderWithoutAngle4MixedPairs'),
00040         HitProducer = cms.string('siPixelRecHits'),
00041         hitErrorRZ = cms.double(0.006)
00042     ),
00043     FPix = cms.PSet(
00044         useErrorsFromParam = cms.bool(True),
00045         hitErrorRPhi = cms.double(0.0051),
00046         TTRHBuilder = cms.string('TTRHBuilderWithoutAngle4MixedPairs'),
00047         HitProducer = cms.string('siPixelRecHits'),
00048         hitErrorRZ = cms.double(0.0036)
00049     )
00050 )
00051 
00052