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.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 TobTecLayerPairs = seedingLayersEDProducer.clone()
6 
7 # Don't bother with TEC8 and 9, as tracking requires 2 hits outside
8 # the seeding pairs.
9 TobTecLayerPairs.layerList = cms.vstring('TOB1+TOB2',
10  'TOB1+TEC1_pos',
11 # 'TOB1+TEC2_pos',
12  'TOB1+TEC1_neg',
13 # 'TOB1+TEC2_neg',
14  'TEC1_pos+TEC2_pos',
15 # 'TEC1_pos+TEC3_pos',
16  'TEC2_pos+TEC3_pos',
17 # 'TEC2_pos+TEC4_pos',
18  'TEC3_pos+TEC4_pos',
19 # 'TEC3_pos+TEC5_pos',
20  'TEC4_pos+TEC5_pos',
21 # 'TEC4_pos+TEC6_pos',
22  'TEC5_pos+TEC6_pos',
23 # 'TEC5_pos+TEC7_pos',
24  'TEC6_pos+TEC7_pos',
25  'TEC1_neg+TEC2_neg',
26 # 'TEC1_neg+TEC3_neg',
27  'TEC2_neg+TEC3_neg',
28 # 'TEC2_neg+TEC4_neg',
29  'TEC3_neg+TEC4_neg',
30 # 'TEC3_neg+TEC5_neg',
31  'TEC4_neg+TEC5_neg',
32 # 'TEC4_neg+TEC6_neg',
33  'TEC5_neg+TEC6_neg',
34 # 'TEC5_neg+TEC7_neg',
35  'TEC6_neg+TEC7_neg'
36 )
37 TobTecLayerPairs.TOB = cms.PSet(
38  matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
39  TTRHBuilder = cms.string('WithTrackAngle')
40  ,clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
41 )
42 TobTecLayerPairs.TEC = cms.PSet(
43  matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
44  useRingSlector = cms.bool(True),
45  TTRHBuilder = cms.string('WithTrackAngle'),
46  minRing = cms.int32(5),
47  maxRing = cms.int32(5)
48  ,clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
49 )
50 
51 
52