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.
2 
3 # Seeding with one hit in outer pixel and one in inner strip.
4 # Useful for exotic physics, V0 finding etc.
5 
6 pixelandstriplayerpairs = cms.ESProducer("SeedingLayersESProducer",
7  ComponentName = cms.string('PixelAndStripLayerPairs'),
8  layerList = cms.vstring(
9  'BPix3+TIB1_pos',
10  'BPix2+TIB1_pos',
11  'BPix3+TIB2_pos',
12  'FPix1+TIB1_pos',
13 # 'FPix1_pos+TID1_pos',
14 # 'FPix2+TIB1_pos',
15  'FPix2_pos+TID1_pos',
16  'FPix2_pos+TID2_pos',
17  'FPix2_pos+TID3_pos',
18  'FPix2_pos+TEC1_pos',
19  'BPix3+TIB1_neg',
20  'BPix2+TIB1_neg',
21  'BPix3+TIB2_neg',
22  'FPix1+TIB1_neg',
23 # 'FPix1_neg+TID1_neg',
24 # 'FPix2+TIB1_neg',
25  'FPix2_neg+TID1_neg',
26  'FPix2_neg+TID2_neg',
27  'FPix2_neg+TID3_neg',
28  'FPix2_neg+TEC1_neg'),
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(1)
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(1)
47  ),
48  BPix = cms.PSet(
49  useErrorsFromParam = cms.bool(True),
50  hitErrorRPhi = cms.double(0.0027),
51  TTRHBuilder = cms.string('TTRHBuilderWithoutAngle4MixedPairs'),
52  HitProducer = cms.string('siPixelRecHits'),
53  hitErrorRZ = cms.double(0.006)
54  ),
55  FPix = cms.PSet(
56  useErrorsFromParam = cms.bool(True),
57  hitErrorRPhi = cms.double(0.0051),
58  TTRHBuilder = cms.string('TTRHBuilderWithoutAngle4MixedPairs'),
59  HitProducer = cms.string('siPixelRecHits'),
60  hitErrorRZ = cms.double(0.0036)
61  )
62 )
63 
64