Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-11-06 23:38:07

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 DeDxEstimatorProducer = cms.EDProducer('DeDxEstimatorProducer',
0004   estimator = cms.string('generic'),
0005   tracks = cms.InputTag('generalTracks'),
0006   UsePixel = cms.bool(False),
0007   UseStrip = cms.bool(True),
0008   MeVperADCPixel = cms.double(3.61e-06),
0009   MeVperADCStrip = cms.double(0.00095665000000000008),
0010   ShapeTest = cms.bool(True),
0011   UseCalibration = cms.bool(False),
0012   calibrationPath = cms.string(''),
0013   Record = cms.string('SiStripDeDxMip_3D_Rcd'),
0014   ProbabilityMode = cms.string('Accumulation'),
0015   fraction = cms.double(0.4),
0016   exponent = cms.double(-2),
0017   truncate = cms.bool(True),
0018   mightGet = cms.optional.untracked.vstring
0019 )