Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:23:46

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