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.ESProducer("SeedingLayersESProducer",
4  ComponentName = cms.string('TobTecLayerPairs'),
5 
6 # Don't bother with TEC8 and 9, as tracking requires 2 hits outside
7 # the seeding pairs.
8  layerList = cms.vstring('TOB1+TOB2',
9  'TOB1+TEC1_pos',
10 # 'TOB1+TEC2_pos',
11  'TOB1+TEC1_neg',
12 # 'TOB1+TEC2_neg',
13  'TEC1_pos+TEC2_pos',
14 # 'TEC1_pos+TEC3_pos',
15  'TEC2_pos+TEC3_pos',
16 # 'TEC2_pos+TEC4_pos',
17  'TEC3_pos+TEC4_pos',
18 # 'TEC3_pos+TEC5_pos',
19  'TEC4_pos+TEC5_pos',
20 # 'TEC4_pos+TEC6_pos',
21  'TEC5_pos+TEC6_pos',
22 # 'TEC5_pos+TEC7_pos',
23  'TEC6_pos+TEC7_pos',
24  'TEC1_neg+TEC2_neg',
25 # 'TEC1_neg+TEC3_neg',
26  'TEC2_neg+TEC3_neg',
27 # 'TEC2_neg+TEC4_neg',
28  'TEC3_neg+TEC4_neg',
29 # 'TEC3_neg+TEC5_neg',
30  'TEC4_neg+TEC5_neg',
31 # 'TEC4_neg+TEC6_neg',
32  'TEC5_neg+TEC6_neg',
33 # 'TEC5_neg+TEC7_neg',
34  'TEC6_neg+TEC7_neg'),
35 
36  TOB = cms.PSet(
37  matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
38  TTRHBuilder = cms.string('WithTrackAngle')
39  ),
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(5),
46  maxRing = cms.int32(5)
47  )
48 )
49 
50