Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:06:21

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def DeDxEstimatorProducer(*args, **kwargs):
0004   mod = cms.EDProducer('DeDxEstimatorProducer',
0005     estimator = cms.string('generic'),
0006     tracks = cms.InputTag('generalTracks'),
0007     UseDeDxHits = cms.bool(False),
0008     pixelDeDxHits = cms.InputTag(''),
0009     stripDeDxHits = cms.InputTag(''),
0010     UsePixel = cms.bool(False),
0011     UseStrip = cms.bool(True),
0012     MeVperADCPixel = cms.double(3.61e-06),
0013     MeVperADCStrip = cms.double(0.00095665000000000008),
0014     ShapeTest = cms.bool(True),
0015     UseCalibration = cms.bool(False),
0016     calibrationPath = cms.string(''),
0017     Record = cms.string('SiStripDeDxMip_3D_Rcd'),
0018     ProbabilityMode = cms.string('Accumulation'),
0019     fraction = cms.double(0.4),
0020     exponent = cms.double(-2),
0021     truncate = cms.bool(True),
0022     mightGet = cms.optional.untracked.vstring
0023   )
0024   for a in args:
0025     mod.update_(a)
0026   mod.update_(kwargs)
0027   return mod