CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTEffAnalyzer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 DTEffAnalyzer = cms.EDAnalyzer("DTEffAnalyzer",
4  recHits2DLabel = cms.string('dt2DSegments'),
5  minHitsSegment = cms.int32(5),
6  minCloseDist = cms.double(20.0),
7  recHits4DLabel = cms.string('dt4DSegments'),
8  rootFileName = cms.untracked.string('DTEffAnalyzer.root'),
9  debug = cms.untracked.bool(False),
10  recHits1DLabel = cms.string('dt1DRecHits'),
11  minChi2NormSegment = cms.double(20.0)
12 )
13 
14 
15