Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:28:55

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Seeding with one hit in outer pixel and one in inner strip.
0004 # Useful for exotic physics, V0 finding etc.
0005 
0006 from RecoTracker.TkSeedingLayers.seedingLayersEDProducer_cfi import *
0007 
0008 PixelAndStripLayerPairs = seedingLayersEDProducer.clone(
0009     layerList = ['BPix3+TIB1_pos',
0010                  'BPix2+TIB1_pos',
0011                  'BPix3+TIB2_pos',
0012                  'FPix1+TIB1_pos',
0013 #                 'FPix1_pos+TID1_pos',
0014 #                 'FPix2+TIB1_pos',
0015                  'FPix2_pos+TID1_pos',
0016                  'FPix2_pos+TID2_pos',
0017                  'FPix2_pos+TID3_pos',
0018                  'FPix2_pos+TEC1_pos',
0019                  'BPix3+TIB1_neg',
0020                  'BPix2+TIB1_neg',
0021                  'BPix3+TIB2_neg',
0022                  'FPix1+TIB1_neg',
0023 #                 'FPix1_neg+TID1_neg',
0024 #                 'FPix2+TIB1_neg',
0025                  'FPix2_neg+TID1_neg',
0026                  'FPix2_neg+TID2_neg',
0027                  'FPix2_neg+TID3_neg',
0028                  'FPix2_neg+TEC1_neg'],
0029     TIB = dict(
0030         matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
0031         TTRHBuilder = cms.string('WithTrackAngle'),
0032         clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
0033     ),
0034     TID = dict(
0035         matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
0036         useRingSlector = cms.bool(True),
0037         TTRHBuilder = cms.string('WithTrackAngle'),
0038         minRing = cms.int32(1),
0039         maxRing = cms.int32(1),
0040         clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
0041     ),
0042     TEC = dict(
0043         matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
0044         useRingSlector = cms.bool(True),
0045         TTRHBuilder = cms.string('WithTrackAngle'),
0046         minRing = cms.int32(1),
0047         maxRing = cms.int32(1),
0048         clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
0049     ),
0050     BPix = dict(
0051         TTRHBuilder = cms.string('WithTrackAngle'),
0052         HitProducer = cms.string('siPixelRecHits'),
0053     ),
0054     FPix = dict(
0055         TTRHBuilder = cms.string('WithTrackAngle'),
0056         HitProducer = cms.string('siPixelRecHits'),
0057     ),
0058 )