CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ssclusmultinvestigatorwithvtx_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ssclusmultinvestigatorwithvtx = 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/64))
13  ),
14  hitName = cms.untracked.string("cluster"),
15  numberOfBins = cms.untracked.int32(100),
16  scaleFactor = cms.untracked.int32(10)
17  ),
18  wantedSubDets = cms.untracked.VPSet(
19  cms.PSet(detSelection = cms.uint32(0),detLabel = cms.string("TK"), binMax = cms.int32(9523712/64)),
20  cms.PSet(detSelection = cms.uint32(3),detLabel = cms.string("TIB"), binMax = cms.int32(1787904/64)),
21  cms.PSet(detSelection = cms.uint32(4),detLabel = cms.string("TID"), binMax = cms.int32( 565248/64)),
22  cms.PSet(detSelection = cms.uint32(5),detLabel = cms.string("TOB"), binMax = cms.int32(3303936/64)),
23  cms.PSet(detSelection = cms.uint32(6),detLabel = cms.string("TEC"), binMax = cms.int32(3866624/64))
24  ),
25  hitName = cms.untracked.string("cluster"),
26  multiplicityMap = cms.InputTag("ssclustermultprod"),
27  numberOfBins = cms.untracked.int32(500),
28  maxLSBeforeRebin = cms.untracked.uint32(100),
29  startingLSFraction = cms.untracked.uint32(4),
30  scaleFactor = cms.untracked.int32(10)
31  )
32