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