CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dedxMedian_cfi.py
Go to the documentation of this file.
2 
3 dedxMedian = cms.EDProducer("DeDxEstimatorProducer",
4  tracks = cms.InputTag("generalTracks"),
5  trajectoryTrackAssociation = cms.InputTag("generalTracks"),
6 
7  estimator = cms.string('median'),
8 
9  UseStrip = cms.bool(True),
10  UsePixel = cms.bool(False),
11  MeVperADCStrip = cms.double(3.61e-06*265),
12  MeVperADCPixel = cms.double(3.61e-06),
13 
14  UseCalibration = cms.bool(False),
15  calibrationPath = cms.string(""),
16  ShapeTest = cms.bool(False),
17 )
18 
19 
20