Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 dedxMedian = cms.EDProducer("DeDxEstimatorProducer",
00004 tracks = cms.InputTag("generalTracks"),
00005 trajectoryTrackAssociation = cms.InputTag("generalTracks"),
00006
00007 estimator = cms.string('median'),
00008
00009 UseStrip = cms.bool(True),
00010 UsePixel = cms.bool(False),
00011 MeVperADCStrip = cms.double(3.61e-06*265),
00012 MeVperADCPixel = cms.double(3.61e-06),
00013
00014 UseCalibration = cms.bool(False),
00015 calibrationPath = cms.string(""),
00016 ShapeTest = cms.bool(False),
00017 )
00018
00019
00020