CMS 3D CMS Logo

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