CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/RecoTracker/DeDx/python/dedxTruncated40_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 dedxTruncated40 = cms.EDProducer("DeDxEstimatorProducer",
00004     tracks                     = cms.InputTag("generalTracks"),
00005     trajectoryTrackAssociation = cms.InputTag("generalTracks"),
00006  
00007     estimator      = cms.string('truncated'),
00008     fraction       = cms.double(0.4),
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 )
00019 
00020