CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PixelAndStripLayerPairs_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Seeding with one hit in outer pixel and one in inner strip.
4 # Useful for exotic physics, V0 finding etc.
5 
7 
8 PixelAndStripLayerPairs = seedingLayersEDProducer.clone()
9 PixelAndStripLayerPairs.layerList = cms.vstring(
10  'BPix3+TIB1_pos',
11  'BPix2+TIB1_pos',
12  'BPix3+TIB2_pos',
13  'FPix1+TIB1_pos',
14 # 'FPix1_pos+TID1_pos',
15 # 'FPix2+TIB1_pos',
16  'FPix2_pos+TID1_pos',
17  'FPix2_pos+TID2_pos',
18  'FPix2_pos+TID3_pos',
19  'FPix2_pos+TEC1_pos',
20  'BPix3+TIB1_neg',
21  'BPix2+TIB1_neg',
22  'BPix3+TIB2_neg',
23  'FPix1+TIB1_neg',
24 # 'FPix1_neg+TID1_neg',
25 # 'FPix2+TIB1_neg',
26  'FPix2_neg+TID1_neg',
27  'FPix2_neg+TID2_neg',
28  'FPix2_neg+TID3_neg',
29  'FPix2_neg+TEC1_neg'
30 )
31 PixelAndStripLayerPairs.TIB = cms.PSet(
32  matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
33  TTRHBuilder = cms.string('WithTrackAngle')
34  ,clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
35 )
36 PixelAndStripLayerPairs.TID = cms.PSet(
37  matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
38  useRingSlector = cms.bool(True),
39  TTRHBuilder = cms.string('WithTrackAngle'),
40  minRing = cms.int32(1),
41  maxRing = cms.int32(1)
42  ,clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
43 )
44 PixelAndStripLayerPairs.TEC = cms.PSet(
45  matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
46  useRingSlector = cms.bool(True),
47  TTRHBuilder = cms.string('WithTrackAngle'),
48  minRing = cms.int32(1),
49  maxRing = cms.int32(1)
50  ,clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone'))
51 )
52 PixelAndStripLayerPairs.BPix = cms.PSet(
53  TTRHBuilder = cms.string('WithTrackAngle'),
54  HitProducer = cms.string('siPixelRecHits'),
55 )
56 PixelAndStripLayerPairs.FPix = cms.PSet(
57  TTRHBuilder = cms.string('WithTrackAngle'),
58  HitProducer = cms.string('siPixelRecHits'),
59 )
60 
61 
62