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 ssdigimultinvestigator = 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)),
0012                                 cms.PSet(detSelection = cms.uint32(3),detLabel = cms.string("TIB"), binMax = cms.int32(1787904)),
0013                                 cms.PSet(detSelection = cms.uint32(4),detLabel = cms.string("TID"), binMax = cms.int32( 565248)),
0014                                 cms.PSet(detSelection = cms.uint32(5),detLabel = cms.string("TOB"), binMax = cms.int32(3303936)),
0015                                 cms.PSet(detSelection = cms.uint32(6),detLabel = cms.string("TEC"), binMax = cms.int32(3866624))
0016                               ),
0017                                          hitName = cms.untracked.string("digi"),
0018                                          multiplicityMap = cms.InputTag("ssdigimultprod"),
0019                                          numberOfBins = cms.untracked.int32(2000),   
0020                                          maxLSBeforeRebin = cms.untracked.uint32(100),   
0021                                          startingLSFraction = cms.untracked.uint32(4),   
0022                                          scaleFactor = cms.untracked.int32(100)
0023                                       )
0024