Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:03

0001 # Offline DQM for HLT_Mu3er1p5_PFJet100er2p5_PFMETX_PFMHTX_IDTight (X = 70, 80, 90)
0002 # Mateusz Zarucki 2018
0003 
0004 import FWCore.ParameterSet.Config as cms
0005 
0006 from DQMOffline.Trigger.SusyMonitor_cfi import hltSUSYmonitoring
0007 
0008 SoftMuHardJetMETSUSYmonitoring = hltSUSYmonitoring.clone(
0009     FolderName = 'HLT/SUSY/SoftMuHardJetMET/',
0010     met   = "pfMet",
0011     jets  = "ak4PFJetsCHS",
0012     muons = "muons",
0013     HTdefinition     = 'pt>30 & abs(eta)<2.5',
0014     leptJetDeltaRmin = 0.4,
0015     MHTdefinition    = 'pt>30 & abs(eta)<2.4',
0016     numGenericTriggerEventPSet = dict(hltInputTag = ["TriggerResults","","HLT"],
0017                                       hltPaths = ["HLT_Mu3er1p5_PFJet100er2p5_PFMET70_PFMHT70_IDTight_v*",
0018                                                   "HLT_Mu3er1p5_PFJet100er2p5_PFMET80_PFMHT80_IDTight_v*",
0019                                                   "HLT_Mu3er1p5_PFJet100er2p5_PFMET90_PFMHT90_IDTight_v*" ])
0020 )
0021 
0022 
0023 ###############
0024 ### Muon pt ###
0025 ###############
0026 SoftMuHardJetMETSUSYmonitoring_muPt            = SoftMuHardJetMETSUSYmonitoring.clone(
0027     FolderName = 'HLT/SUSY/SoftMuHardJetMET/Muon',
0028     # Muon selection
0029     nmuons       = 1,
0030     muoSelection = 'abs(eta)<1.5',
0031     # Jet selection
0032     njets = 1,
0033     jetSelection = "pt>130 & abs(eta)<2.5",
0034     # MET selection
0035     enableMETPlot = True,
0036     metSelection = 'pt>150',
0037     MHTcut       = 150,
0038     ## Selection ##
0039     denGenericTriggerEventPSet = dict(hltPaths = ['HLT_PFMET120_PFMHT120_IDTight_v*', 'HLT_PFMET130_PFMHT130_IDTight_v*', 'HLT_PFMET140_PFMHT140_IDTight_v*']),
0040     ## Binning ##
0041     histoPSet = dict(muPtBinning = [0,2,5,7,10,12,15,17,20,25,30,50])
0042 )
0043 
0044 
0045 ##############
0046 ### Jet pt ###
0047 ##############
0048 SoftMuHardJetMETSUSYmonitoring_jetPt = SoftMuHardJetMETSUSYmonitoring.clone(
0049     FolderName = 'HLT/SUSY/SoftMuHardJetMET/Jet',
0050     # Muon selection
0051     nmuons       = 1,
0052     muoSelection = 'pt>30 & abs(eta)<1.5',
0053     # Jet selection
0054     njets        = 1,
0055     jetSelection = "abs(eta)<2.5",
0056     # MET selection
0057     enableMETPlot = True,
0058     metSelection  = 'pt>150',
0059     MHTcut        = 150,
0060     ## Selection ##
0061     denGenericTriggerEventPSet = dict(hltPaths = ["HLT_IsoMu27_v*"]),
0062     # Binning
0063     histoPSet = dict(jetPtBinning = [0,5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,90,100,120,200,400]) 
0064 )
0065 
0066 
0067 ##############
0068 ### MET pt ###
0069 ##############
0070 SoftMuHardJetMETSUSYmonitoring_metPt = SoftMuHardJetMETSUSYmonitoring.clone(
0071     FolderName = 'HLT/SUSY/SoftMuHardJetMET/MET',
0072     # Muon selection
0073     nmuons       = 1,
0074     muoSelection = 'pt>30 & abs(eta)<1.5',
0075     # Jet selection
0076     njets        = 1,
0077     jetSelection = "pt>130 & abs(eta)<2.5",
0078     # MET selection
0079     enableMETPlot = True,
0080     ## Selection ##
0081     denGenericTriggerEventPSet = dict(hltPaths = ["HLT_IsoMu27_v*"]),
0082     # Binning
0083     histoPSet = dict(metPSet = dict(nbins= 50,xmin= 50,xmax= 300))
0084 )
0085 
0086 
0087 susyHLTSoftMuHardJetMETMonitoring = cms.Sequence(
0088     SoftMuHardJetMETSUSYmonitoring_muPt
0089   + SoftMuHardJetMETSUSYmonitoring_jetPt
0090   + SoftMuHardJetMETSUSYmonitoring_metPt
0091 )