CMS 3D CMS Logo

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