CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GlobalPixelSeedProducerForElectrons_cff.py
Go to the documentation of this file.
2 
3 import FastSimulation.Tracking.TrajectorySeedProducer_cfi
4 
5 globalPixelSeedsForElectrons = FastSimulation.Tracking.TrajectorySeedProducer_cfi.trajectorySeedProducer.clone()
6 #globalPixelSeedsForElectrons.firstHitSubDetectorNumber = [2]
7 #globalPixelSeedsForElectrons.firstHitSubDetectors = [1, 2]
8 #globalPixelSeedsForElectrons.secondHitSubDetectorNumber = [2]
9 #globalPixelSeedsForElectrons.secondHitSubDetectors = [1, 2]
10 
11 #a stripped translation of the old syntax above
12 globalPixelSeedsForElectrons.layerList = cms.vstring(
13  'BPix1+BPix2'
14  'BPix1+FPix1_pos',
15  'BPix1+FPix1_neg',
16  'BPix2+FPix1_pos',
17  'BPix2+FPix1_neg',
18 
19  'FPix1_pos+FPix2_pos',
20  'FPix1_neg+FPix2_neg',
21 )
22 globalPixelSeedsForElectrons.simTrackSelection.skipSimTrackIds = [cms.InputTag("globalPixelStepIds")]
23 #globalPixelSeedsForElectrons.zVertexConstraint = cms.double(0.5)
24 globalPixelSeedsForElectrons.originRadius = cms.double(0.02)
25 globalPixelSeedsForElectrons.originpTMin = cms.double(1.5)
26 
27 
28 
29 globalPixelSeedsForPhotons = FastSimulation.Tracking.TrajectorySeedProducer_cfi.trajectorySeedProducer.clone()
30 #globalPixelSeedsForPhotons.firstHitSubDetectorNumber = [2]
31 #globalPixelSeedsForPhotons.firstHitSubDetectors = [1, 2]
32 #globalPixelSeedsForPhotons.secondHitSubDetectorNumber = [2]
33 #globalPixelSeedsForPhotons.secondHitSubDetectors = [1, 2]
34 
35 #a stripped translation of the old syntax above
36 globalPixelSeedsForPhotons.layerList = cms.vstring(
37  'BPix1+BPix2'
38  'BPix1+FPix1_pos',
39  'BPix1+FPix1_neg',
40  'BPix2+FPix1_pos',
41  'BPix2+FPix1_neg',
42 
43  'FPix1_pos+FPix2_pos',
44  'FPix1_neg+FPix2_neg',
45 )
46 globalPixelSeedsForPhotons.simTrackSelection.skipSimTrackIds = [cms.InputTag("globalPixelStepIds")]
47 globalPixelSeedsForPhotons.originRadius = cms.double(0.02)
48 globalPixelSeedsForPhotons.originpTMin = cms.double(1.5)
49