CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfTrack_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 pfTrack = cms.EDProducer("PFTrackProducer",
4  TrackQuality = cms.string('highPurity'),
5  UseQuality = cms.bool(True),
6  GsfTrackModuleLabel = cms.InputTag("electronGsfTracks"),
7  TkColList = cms.VInputTag(cms.InputTag("generalTracks")),
8  PrimaryVertexLabel = cms.InputTag("offlinePrimaryVertices"),
9  MuColl = cms.InputTag("muons1stStep"),
10  TrajInEvents = cms.bool(False),
11  GsfTracksInEvents = cms.bool(True),
12 )
13 
14