CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoTracker/DeDx/python/dedxMedian_cfi.py

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