File indexing completed on 2024-04-06 12:06:42
0001 import FWCore.ParameterSet.Config as cms
0002
0003 ssclusmultinvestigatorwithvtx = cms.EDAnalyzer('MultiplicityInvestigator',
0004 vertexCollection = cms.InputTag("offlinePrimaryVertices"),
0005 wantInvestHist = cms.bool(True),
0006 wantVtxCorrHist = cms.bool(True),
0007 wantLumiCorrHist = cms.bool(False),
0008 wantPileupCorrHist = cms.bool(False),
0009 wantVtxPosCorrHist = cms.bool(False),
0010 digiVtxCorrConfig = cms.PSet(
0011 wantedSubDets = cms.untracked.VPSet(
0012 cms.PSet(detSelection = cms.uint32(0),detLabel = cms.string("TK"), binMax = cms.int32(9523712/64))
0013 ),
0014 hitName = cms.untracked.string("cluster"),
0015 numberOfBins = cms.untracked.int32(100),
0016 scaleFactor = cms.untracked.int32(10)
0017 ),
0018 wantedSubDets = cms.untracked.VPSet(
0019 cms.PSet(detSelection = cms.uint32(0),detLabel = cms.string("TK"), binMax = cms.int32(9523712/64)),
0020 cms.PSet(detSelection = cms.uint32(3),detLabel = cms.string("TIB"), binMax = cms.int32(1787904/64)),
0021 cms.PSet(detSelection = cms.uint32(4),detLabel = cms.string("TID"), binMax = cms.int32( 565248/64)),
0022 cms.PSet(detSelection = cms.uint32(5),detLabel = cms.string("TOB"), binMax = cms.int32(3303936/64)),
0023 cms.PSet(detSelection = cms.uint32(6),detLabel = cms.string("TEC"), binMax = cms.int32(3866624/64))
0024 ),
0025 hitName = cms.untracked.string("cluster"),
0026 multiplicityMap = cms.InputTag("ssclustermultprod"),
0027 numberOfBins = cms.untracked.int32(500),
0028 maxLSBeforeRebin = cms.untracked.uint32(100),
0029 startingLSFraction = cms.untracked.uint32(4),
0030 scaleFactor = cms.untracked.int32(10)
0031 )
0032