File indexing completed on 2024-08-22 04:57:34
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from DQMOffline.Trigger.SiPixel_OfflineMonitoring_Cluster_cff import *
0004 from DQMOffline.Trigger.SiPixel_OfflineMonitoring_TrackCluster_cff import *
0005 from DQMOffline.Trigger.SiPixel_OfflineMonitoring_TrackResiduals_cff import *
0006
0007 from DQM.HLTEvF.dqmCorrelationClient_cfi import *
0008 pixelClusterVsLumi = dqmCorrelationClient.clone(
0009 me = cms.PSet(
0010 folder = cms.string("HLT/Pixel/"),
0011 name = cms.string("num_clusters_per_instLumi"),
0012 doXaxis = cms.bool( True ),
0013 nbinsX = cms.int32( 40 ),
0014 xminX = cms.double( 0.),
0015 xmaxX = cms.double(20000.),
0016
0017 doYaxis = cms.bool( True ),
0018 nbinsY = cms.int32 ( 400 ),
0019 xminY = cms.double( 0.),
0020 xmaxY = cms.double( 400000.),
0021 ),
0022 me1 = cms.PSet(
0023 folder = cms.string("HLT/LumiMonitoring"),
0024 name = cms.string("lumiVsLS"),
0025 profileX = cms.bool(True)
0026 ),
0027 me2 = cms.PSet(
0028 folder = cms.string("HLT/Pixel"),
0029 name = cms.string("num_clusters_per_Lumisection_PXBarrel"),
0030 profileX = cms.bool(True)
0031 ),
0032 )
0033
0034 pixelClusterVsLumiPXBarrel = pixelClusterVsLumi.clone()
0035 pixelClusterVsLumiPXBarrel.me.name = "num_clusters_per_instLumi_PXBarrel"
0036 pixelClusterVsLumiPXBarrel.me2.name = "num_clusters_per_Lumisection_PXBarrel"
0037
0038 pixelClusterVsLumiPXForward = pixelClusterVsLumi.clone()
0039 pixelClusterVsLumiPXForward.me.name = "num_clusters_per_instLumi_PXForward"
0040 pixelClusterVsLumiPXForward.me2.name = "num_clusters_per_Lumisection_PXForward"
0041
0042 pixelTrackClusterVsLumiPXBarrel = pixelClusterVsLumi.clone()
0043 pixelTrackClusterVsLumiPXBarrel.me.folder = "HLT/Pixel/TrackClusters/"
0044 pixelTrackClusterVsLumiPXBarrel.me.name = "num_clusters_ontrack_per_instLumi_PXBarrel"
0045 pixelTrackClusterVsLumiPXBarrel.me2.folder = "HLT/Pixel/TrackClusters"
0046 pixelTrackClusterVsLumiPXBarrel.me2.name = "num_clusters_ontrack_per_Lumisection_PXBarrel"
0047
0048 pixelTrackClusterVsLumiPXForward = pixelClusterVsLumi.clone()
0049 pixelTrackClusterVsLumiPXForward.me.folder = "HLT/Pixel/TrackClusters/"
0050 pixelTrackClusterVsLumiPXForward.me.name = "num_clusters_ontrack_per_instLumi_PXForward"
0051 pixelTrackClusterVsLumiPXForward.me2.folder = "HLT/Pixel/TrackClusters"
0052 pixelTrackClusterVsLumiPXForward.me2.name = "num_clusters_ontrack_per_Lumisection_PXForward"
0053
0054 sipixelHarvesterHLTsequence = cms.Sequence(
0055
0056
0057 hltSiPixelPhase1TrackResidualsHarvester
0058 + hltSiPixelPhase1ResidualsExtra
0059 + pixelClusterVsLumiPXBarrel
0060 + pixelClusterVsLumiPXForward
0061
0062
0063 )