CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrajectorySeedProducer_cfi.py
Go to the documentation of this file.
2 
3 trajectorySeedProducer = cms.EDProducer("TrajectorySeedProducer",
4 
5  simTrackSelection = cms.PSet(
6  # The smallest pT (in GeV) to create a track candidate
7  pTMin = cms.double(-1),
8  # skip SimTracks processed in previous iterations
9  skipSimTrackIds = cms.VInputTag(),
10  maxZ0 = cms.double(-1),
11  maxD0 = cms.double(-1),
12  ),
13  # minimum number of layer crossed (with hits on them) by the simtrack
14  minLayersCrossed = cms.uint32(0),
15 
16  #if empty, BS compatibility is skipped
17  beamSpot = cms.InputTag("offlineBeamSpot"),
18  #if empty, PV compatibility is skipped
19  primaryVertex = cms.InputTag(""),
20 
21  nSigmaZ = cms.double(-1),
22  originHalfLength= cms.double(-1),
23 
24  originRadius = cms.double(-1),
25  ptMin = cms.double(-1),
26 
27  # Inputs: tracker rechits, beam spot position.
28  recHits = cms.InputTag("siTrackerGaussianSmearingRecHits","TrackerGSMatchedRecHits"),
29 
30  layerList = cms.vstring(),
31 )
32