Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:44:47

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 
0006 from DQM.HLTEvF.dqmCorrelationClient_cfi import *
0007 pixelClusterVsLumi = dqmCorrelationClient.clone(
0008    me = cms.PSet(
0009       folder = cms.string("HLT/Pixel/"),
0010       name   = cms.string("num_clusters_per_instLumi"),
0011       doXaxis = cms.bool( True ),
0012       nbinsX = cms.int32(    40 ),
0013       xminX  = cms.double(    0.),
0014       xmaxX  = cms.double(20000.),
0015 #      doYaxis = cms.bool( False ),
0016       doYaxis = cms.bool( True ),
0017       nbinsY = cms.int32 (    400 ),
0018       xminY  = cms.double(      0.),
0019       xmaxY  = cms.double( 400000.),
0020    ),
0021    me1 = cms.PSet(
0022       folder   = cms.string("HLT/LumiMonitoring"),
0023       name     = cms.string("lumiVsLS"),
0024       profileX = cms.bool(True)
0025    ),
0026    me2 = cms.PSet(
0027       folder   = cms.string("HLT/Pixel"),
0028       name     = cms.string("num_clusters_per_Lumisection_PXBarrel"),
0029       profileX = cms.bool(True)
0030    ),
0031 )
0032 
0033 pixelClusterVsLumiPXBarrel = pixelClusterVsLumi.clone()
0034 pixelClusterVsLumiPXBarrel.me.name  = "num_clusters_per_instLumi_PXBarrel" 
0035 pixelClusterVsLumiPXBarrel.me2.name = "num_clusters_per_Lumisection_PXBarrel"
0036 
0037 pixelClusterVsLumiPXForward = pixelClusterVsLumi.clone()
0038 pixelClusterVsLumiPXForward.me.name  = "num_clusters_per_instLumi_PXForward" 
0039 pixelClusterVsLumiPXForward.me2.name = "num_clusters_per_Lumisection_PXForward"
0040 
0041 pixelTrackClusterVsLumiPXBarrel = pixelClusterVsLumi.clone()
0042 pixelTrackClusterVsLumiPXBarrel.me.folder  = "HLT/Pixel/TrackClusters/"
0043 pixelTrackClusterVsLumiPXBarrel.me.name    = "num_clusters_ontrack_per_instLumi_PXBarrel" 
0044 pixelTrackClusterVsLumiPXBarrel.me2.folder = "HLT/Pixel/TrackClusters"
0045 pixelTrackClusterVsLumiPXBarrel.me2.name   = "num_clusters_ontrack_per_Lumisection_PXBarrel"
0046 
0047 pixelTrackClusterVsLumiPXForward = pixelClusterVsLumi.clone()
0048 pixelTrackClusterVsLumiPXForward.me.folder  = "HLT/Pixel/TrackClusters/"
0049 pixelTrackClusterVsLumiPXForward.me.name    = "num_clusters_ontrack_per_instLumi_PXForward" 
0050 pixelTrackClusterVsLumiPXForward.me2.folder = "HLT/Pixel/TrackClusters"
0051 pixelTrackClusterVsLumiPXForward.me2.name   = "num_clusters_ontrack_per_Lumisection_PXForward"
0052 
0053 sipixelHarvesterHLTsequence = cms.Sequence(
0054 #    hltSiPixelPhase1ClustersHarvester
0055 #    + hltSiPixelPhase1TrackClustersHarvester
0056     pixelClusterVsLumiPXBarrel
0057     + pixelClusterVsLumiPXForward
0058 #    + pixelTrackClusterVsLumiPXBarrel
0059 #    + pixelTrackClusterVsLumiPXForward
0060 )