CMS 3D CMS Logo

hltExoticaMonojetBackup_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 MonojetBackupPSet = cms.PSet(
4  hltPathsToCheck = cms.vstring(
5  "HLT_CaloJet500_NoJetID_v", # Claimed path for Run3
6  "HLT_CaloJet550_NoJetID_v", # Claimed path for Run3
7  "HLT_PFJet500_v", # Claimed path for Run3
8  "HLT_PFJet550_v" # Claimed path for Run3
9  ),
10  recPFJetLabel = cms.InputTag("ak4PFJets"),
11  recPFMETLabel = cms.InputTag("pfMet"),
12  recCaloJetLabel = cms.InputTag("ak4CaloJets"),
13  # -- Analysis specific cuts
14  minCandidates = cms.uint32(1),
15  # -- Analysis specific binnings
16  parametersTurnOn = cms.vdouble(
17  400, 410, 420, 430, 440, 450, 460, 470, 480, 490,
18  500, 510, 520, 530, 540, 550, 560, 570, 580, 590, 600
19  ),
20  dropPt2 = cms.bool(True),
21  dropPt3 = cms.bool(True),
22  )