Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-07-18 22:33:55

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 FastTrackDeDxProducer = cms.EDProducer('FastTrackDeDxProducer',
0004   estimator = cms.string('generic'),
0005   tracks = cms.InputTag('generalTracks'),
0006   UsePixel = cms.bool(False),
0007   UseStrip = cms.bool(True),
0008   MeVperADCStrip = cms.double(0.00095665000000000008),
0009   MeVperADCPixel = cms.double(3.61e-06),
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   convertFromGeV2MeV = cms.bool(True),
0018   nothick = cms.bool(False),
0019   simHits = cms.required.InputTag,
0020   simHit2RecHitMap = cms.required.InputTag,
0021   mightGet = cms.optional.untracked.vstring
0022 )