Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:18:52

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 HighPtPhotonPSet = cms.PSet(
0004     hltPathsToCheck = cms.vstring(
0005         "HLT_Photon175_v",  # Run2 proposal # Claimed path for Run3
0006         "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350_v", # Path updated for 2023
0007         "HLT_Photon110EB_TightID_TightIso_v", # Claimed path for Run3 
0008         "HLT_Photon200_v" # Claimed path for Run3
0009         ),
0010     recPhotonLabel  = cms.InputTag("gedPhotons"),
0011     # -- Analysis specific cuts
0012     minCandidates = cms.uint32(1),
0013     # -- Analysis specific binnings
0014     parametersTurnOn = cms.vdouble( 0, 25, 50, 75, 100, 125, 150, 175, 200, 225,
0015                                     250, 275, 300, 400, 500, 600, 700, 800, 900, 1000
0016                                    ),
0017     dropPt2 = cms.bool(True),
0018     dropPt3 = cms.bool(True),
0019     )