CMS 3D CMS Logo

ssdigimultinvestigator_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ssdigimultinvestigator = cms.EDAnalyzer('MultiplicityInvestigator',
4  vertexCollection = cms.InputTag(""),
5  wantInvestHist = cms.bool(True),
6  wantVtxCorrHist = cms.bool(False),
7  wantLumiCorrHist = cms.bool(False),
8  wantPileupCorrHist = cms.bool(False),
9  wantVtxPosCorrHist = cms.bool(False),
10  wantedSubDets = cms.untracked.VPSet(
11  cms.PSet(detSelection = cms.uint32(0),detLabel = cms.string("TK"), binMax = cms.int32(9523712)),
12  cms.PSet(detSelection = cms.uint32(3),detLabel = cms.string("TIB"), binMax = cms.int32(1787904)),
13  cms.PSet(detSelection = cms.uint32(4),detLabel = cms.string("TID"), binMax = cms.int32( 565248)),
14  cms.PSet(detSelection = cms.uint32(5),detLabel = cms.string("TOB"), binMax = cms.int32(3303936)),
15  cms.PSet(detSelection = cms.uint32(6),detLabel = cms.string("TEC"), binMax = cms.int32(3866624))
16  ),
17  hitName = cms.untracked.string("digi"),
18  multiplicityMap = cms.InputTag("ssdigimultprod"),
19  numberOfBins = cms.untracked.int32(2000),
20  maxLSBeforeRebin = cms.untracked.uint32(100),
21  startingLSFraction = cms.untracked.uint32(4),
22  scaleFactor = cms.untracked.int32(100)
23  )
24