CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
conversionTrackProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 conversionTrackProducer = cms.EDProducer("ConversionTrackProducer",
4  #input collection of tracks or gsf tracks
5  TrackProducer = cms.string(''),
6  #control whether to get ref to Trajectory (only available in reco job)
7  useTrajectory = cms.bool(True),
8  #control which flags are set in output collection
9  setTrackerOnly = cms.bool(False),
10  setArbitratedEcalSeeded = cms.bool(False),
11  setArbitratedMerged = cms.bool(True),
12  setArbitratedMergedEcalGeneral = cms.bool(False),
13  beamSpotInputTag = cms.InputTag("offlineBeamSpot"),
14  filterOnConvTrackHyp = cms.bool(True),
15  minConvRadius = cms.double(2.0) #cm
16  )