Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:06:42

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ssclusmultinvestigator = cms.EDAnalyzer('MultiplicityInvestigator',
0004                                         vertexCollection = cms.InputTag(""),
0005                                         wantInvestHist = cms.bool(True),
0006                                         wantVtxCorrHist = cms.bool(False),
0007                                         wantLumiCorrHist = cms.bool(False),
0008                                         wantPileupCorrHist = cms.bool(False),
0009                                         wantVtxPosCorrHist = cms.bool(False),
0010                             wantedSubDets = cms.untracked.VPSet(    
0011                               cms.PSet(detSelection = cms.uint32(0),detLabel = cms.string("TK"),  binMax = cms.int32(9523712/64)),
0012                               cms.PSet(detSelection = cms.uint32(3),detLabel = cms.string("TIB"), binMax = cms.int32(1787904/64)),
0013                               cms.PSet(detSelection = cms.uint32(4),detLabel = cms.string("TID"), binMax = cms.int32( 565248/64)),
0014                               cms.PSet(detSelection = cms.uint32(5),detLabel = cms.string("TOB"), binMax = cms.int32(3303936/64)),
0015                               cms.PSet(detSelection = cms.uint32(6),detLabel = cms.string("TEC"), binMax = cms.int32(3866624/64))
0016                             ),
0017                                          hitName = cms.untracked.string("cluster"),
0018                                          multiplicityMap = cms.InputTag("ssclustermultprod"),
0019                                          numberOfBins = cms.untracked.int32(500),   
0020                                          maxLSBeforeRebin = cms.untracked.uint32(100),   
0021                                         startingLSFraction = cms.untracked.uint32(4),   
0022                                          scaleFactor = cms.untracked.int32(10)
0023                                       )
0024