CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TobTecLayerPairs_cfi.py
Go to the documentation of this file.
2 
3 TobTecLayerPairs = cms.EDProducer("SeedingLayersEDProducer",
4 # Don't bother with TEC8 and 9, as tracking requires 2 hits outside
5 # the seeding pairs.
6  layerList = cms.vstring('TOB1+TOB2',
7  'TOB1+TEC1_pos',
8 # 'TOB1+TEC2_pos',
9  'TOB1+TEC1_neg',
10 # 'TOB1+TEC2_neg',
11  'TEC1_pos+TEC2_pos',
12 # 'TEC1_pos+TEC3_pos',
13  'TEC2_pos+TEC3_pos',
14 # 'TEC2_pos+TEC4_pos',
15  'TEC3_pos+TEC4_pos',
16 # 'TEC3_pos+TEC5_pos',
17  'TEC4_pos+TEC5_pos',
18 # 'TEC4_pos+TEC6_pos',
19  'TEC5_pos+TEC6_pos',
20 # 'TEC5_pos+TEC7_pos',
21  'TEC6_pos+TEC7_pos',
22  'TEC1_neg+TEC2_neg',
23 # 'TEC1_neg+TEC3_neg',
24  'TEC2_neg+TEC3_neg',
25 # 'TEC2_neg+TEC4_neg',
26  'TEC3_neg+TEC4_neg',
27 # 'TEC3_neg+TEC5_neg',
28  'TEC4_neg+TEC5_neg',
29 # 'TEC4_neg+TEC6_neg',
30  'TEC5_neg+TEC6_neg',
31 # 'TEC5_neg+TEC7_neg',
32  'TEC6_neg+TEC7_neg'),
33 
34  TOB = cms.PSet(
35  matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
36  TTRHBuilder = cms.string('WithTrackAngle')
37  ),
38 
39  TEC = cms.PSet(
40  matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
41  useRingSlector = cms.bool(True),
42  TTRHBuilder = cms.string('WithTrackAngle'),
43  minRing = cms.int32(5),
44  maxRing = cms.int32(5)
45  )
46 )
47 
48