CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/RecoTracker/TkSeedingLayers/python/PixelAndStripLayerPairs_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Seeding with one hit in outer pixel and one in inner strip.
00004 # Useful for exotic physics, V0 finding etc.
00005 
00006 PixelAndStripLayerPairs = cms.ESProducer("SeedingLayersESProducer",
00007     ComponentName = cms.string('PixelAndStripLayerPairs'),
00008     layerList = cms.vstring(
00009         'BPix3+TIB1_pos',
00010         'BPix2+TIB1_pos',
00011         'BPix3+TIB2_pos',
00012         'FPix1+TIB1_pos',
00013 #        'FPix1_pos+TID1_pos',
00014 #        'FPix2+TIB1_pos',
00015         'FPix2_pos+TID1_pos',
00016         'FPix2_pos+TID2_pos',
00017         'FPix2_pos+TID3_pos',
00018         'FPix2_pos+TEC1_pos',
00019         'BPix3+TIB1_neg',
00020         'BPix2+TIB1_neg',
00021         'BPix3+TIB2_neg',
00022         'FPix1+TIB1_neg',
00023 #        'FPix1_neg+TID1_neg',
00024 #        'FPix2+TIB1_neg',
00025         'FPix2_neg+TID1_neg',
00026         'FPix2_neg+TID2_neg',
00027         'FPix2_neg+TID3_neg',
00028         'FPix2_neg+TEC1_neg'),
00029                                  
00030     TIB = cms.PSet(
00031         matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
00032         TTRHBuilder = cms.string('WithTrackAngle')
00033     ),
00034     TID = cms.PSet(
00035         matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
00036         useRingSlector = cms.bool(True),
00037         TTRHBuilder = cms.string('WithTrackAngle'),
00038         minRing = cms.int32(1),
00039         maxRing = cms.int32(1)
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(1),
00046         maxRing = cms.int32(1)
00047     ),
00048     BPix = cms.PSet(
00049         useErrorsFromParam = cms.bool(True),
00050         hitErrorRPhi = cms.double(0.0027),
00051         TTRHBuilder = cms.string('TTRHBuilderWithoutAngle4MixedPairs'),
00052         HitProducer = cms.string('siPixelRecHits'),
00053         hitErrorRZ = cms.double(0.006)
00054     ),
00055     FPix = cms.PSet(
00056         useErrorsFromParam = cms.bool(True),
00057         hitErrorRPhi = cms.double(0.0051),
00058         TTRHBuilder = cms.string('TTRHBuilderWithoutAngle4MixedPairs'),
00059         HitProducer = cms.string('siPixelRecHits'),
00060         hitErrorRZ = cms.double(0.0036)
00061     )
00062 )
00063 
00064