CMS 3D CMS Logo

PixelLessLayerPairs_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 PixelLessLayerPairs = seedingLayersEDProducer.clone(
6  layerList = ['TIB1+TIB2',
7  'TIB1+TID1_pos',
8 # 'TIB1+TID2_pos',
9  'TIB1+TID1_neg',
10 # 'TIB1+TID2_neg',
11  'TID1_pos+TID2_pos',
12  'TID2_pos+TID3_pos',
13  'TID3_pos+TEC1_pos',
14  'TEC1_pos+TEC2_pos',
15  'TEC2_pos+TEC3_pos',
16  'TEC3_pos+TEC4_pos',
17  'TEC3_pos+TEC5_pos',
18  'TEC4_pos+TEC5_pos',
19  'TID1_neg+TID2_neg',
20  'TID2_neg+TID3_neg',
21  'TID3_neg+TEC1_neg',
22  'TEC1_neg+TEC2_neg',
23  'TEC2_neg+TEC3_neg',
24  'TEC3_neg+TEC4_neg',
25  'TEC3_neg+TEC5_neg',
26  'TEC4_neg+TEC5_neg'],
27 
28 # WARNING: in the old implemenation, all the 3 rings of TID were used.
29 # we need a different configuaration of rings for TID disks. Is it feasible
30 # in the current framework??
31 
32  TIB = dict(
33  matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
34  TTRHBuilder = cms.string('WithTrackAngle'),
35  clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
36  ),
37  TID = dict(
38  matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
39  useRingSlector = cms.bool(True),
40  TTRHBuilder = cms.string('WithTrackAngle'),
41  minRing = cms.int32(1),
42  maxRing = cms.int32(2),
43  clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
44  ),
45  TEC = dict(
46  matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
47  useRingSlector = cms.bool(True),
48  TTRHBuilder = cms.string('WithTrackAngle'),
49  minRing = cms.int32(1),
50  maxRing = cms.int32(2),
51  clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
52  )
53 )