File indexing completed on 2024-04-06 12:06:42
0001 import FWCore.ParameterSet.Config as cms
0002
0003 ssdigimulttimecorrelations = cms.EDAnalyzer('MultiplicityTimeCorrelations',
0004 wantedSubDets = cms.untracked.VPSet(
0005 cms.PSet(detSelection = cms.uint32(0),detLabel = cms.string("TK"), binMax = cms.int32(9523712), phasePartition = cms.untracked.string("All")),
0006 cms.PSet(detSelection = cms.uint32(3),detLabel = cms.string("TIB"), binMax = cms.int32(1787904), phasePartition = cms.untracked.string("TI")),
0007 cms.PSet(detSelection = cms.uint32(4),detLabel = cms.string("TID"), binMax = cms.int32( 565248), phasePartition = cms.untracked.string("TI")),
0008 cms.PSet(detSelection = cms.uint32(5),detLabel = cms.string("TOB"), binMax = cms.int32(3303936), phasePartition = cms.untracked.string("TO")),
0009 cms.PSet(detSelection = cms.uint32(6),detLabel = cms.string("TEC"), binMax = cms.int32(3866624), phasePartition = cms.untracked.string("TP"))
0010 ),
0011 hitName = cms.untracked.string("digi"),
0012 historyProduct = cms.InputTag("froml1abcHEs"),
0013 apvPhaseCollection = cms.InputTag("APVPhases"),
0014 multiplicityMap = cms.InputTag("ssdigimultprod"),
0015 scaleFactors = cms.untracked.vint32(5,250,750),
0016 corrNbins = cms.untracked.int32(1000),
0017 lowedgeOrbit = cms.untracked.int32(-1),
0018 highedgeOrbit = cms.untracked.int32(-1),
0019 minDBX = cms.untracked.int32(-1),
0020 minTripletDBX = cms.untracked.int32(-1),
0021 dbxBins = cms.untracked.vint32(-1,144,148)
0022 )
0023