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 from RecoTracker.TkSeedingLayers.seedingLayersEDProducer_cfi import *
0004 
0005 PixelLessLayerPairs = seedingLayersEDProducer.clone(
0006     layerList = ['TIB1+TIB2', 
0007                  'TIB1+TID1_pos', 
0008 #                 'TIB1+TID2_pos', 
0009                  'TIB1+TID1_neg', 
0010 #                 'TIB1+TID2_neg', 
0011                  'TID1_pos+TID2_pos', 
0012                  'TID2_pos+TID3_pos', 
0013                  'TID3_pos+TEC1_pos', 
0014                  'TEC1_pos+TEC2_pos', 
0015                  'TEC2_pos+TEC3_pos', 
0016                  'TEC3_pos+TEC4_pos',
0017                  'TEC3_pos+TEC5_pos', 
0018                  'TEC4_pos+TEC5_pos',                             
0019                  'TID1_neg+TID2_neg', 
0020                  'TID2_neg+TID3_neg', 
0021                  'TID3_neg+TEC1_neg', 
0022                  'TEC1_neg+TEC2_neg', 
0023                  'TEC2_neg+TEC3_neg',
0024                  'TEC3_neg+TEC4_neg',
0025                  'TEC3_neg+TEC5_neg',
0026                  'TEC4_neg+TEC5_neg'],
0027 
0028 # WARNING: in the old implemenation, all the 3 rings of  TID were used.
0029 # we need a different configuaration of rings for TID disks. Is it feasible 
0030 # in the current framework?? 
0031 
0032     TIB = dict(
0033     matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
0034         TTRHBuilder = cms.string('WithTrackAngle'),
0035         clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
0036     ),
0037     TID = dict(
0038         matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
0039         useRingSlector = cms.bool(True),
0040         TTRHBuilder = cms.string('WithTrackAngle'),
0041         minRing = cms.int32(1),
0042         maxRing = cms.int32(2),
0043         clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
0044     ),
0045     TEC = dict(
0046         matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
0047         useRingSlector = cms.bool(True),
0048         TTRHBuilder = cms.string('WithTrackAngle'),
0049         minRing = cms.int32(1),
0050         maxRing = cms.int32(2),
0051         clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
0052     )
0053 )