File indexing completed on 2024-04-06 11:59:03
0001 import FWCore.ParameterSet.Config as cms
0002 from RecoJets.Configuration.RecoJets_cff import *
0003 from RecoJets.Configuration.RecoPFJets_cff import *
0004 from CommonTools.ParticleFlow.pfNoPileUp_cff import *
0005
0006 GammaJetAnalysis = cms.EDAnalyzer('GammaJetAnalysis',
0007 rhoColl = cms.InputTag("fixedGridRhoFastjetAll"),
0008 PFMETColl = cms.InputTag("pfMet"),
0009 PFMETTYPE1Coll = cms.InputTag("pfType1CorrectedMet"),
0010 photonCollName = cms.string('gedPhotons'),
0011 pfJetCollName = cms.string('ak4PFJetsCHS'),
0012 JetCorrections = cms.InputTag("ak4PFCHSL2L3Corrector"),
0013 genJetCollName = cms.string('ak4GenJets'),
0014 genParticleCollName = cms.string('genParticles'),
0015 genEventInfoName = cms.string('generator'),
0016 hbheRecHitName = cms.string('hbhereco'),
0017 hfRecHitName = cms.string('hfreco'),
0018 hoRecHitName = cms.string('horeco'),
0019 rootHistFilename = cms.string('PhotonPlusJet_tree.root'),
0020 pvCollName = cms.string('offlinePrimaryVertices'),
0021 beamSpotName= cms.string('offlineBeamSpot'),
0022 conversionsName= cms.string('allConversions'),
0023 electronCollName= cms.string('gedGsfElectrons'),
0024 photonIdTightName= cms.InputTag('PhotonIDProdGED','PhotonCutBasedIDTight'),
0025 photonIdLooseName= cms.InputTag('PhotonIDProdGED','PhotonCutBasedIDLoose'),
0026 prodProcess = cms.untracked.string('reRECO'),
0027 allowNoPhoton = cms.bool(False),
0028 photonJetDPhiMin = cms.double(2.0),
0029 photonPtMin = cms.double(15.),
0030 jetEtMin = cms.double(15.),
0031 jet2EtMax = cms.double(100.),
0032 jet3EtMax = cms.double(50.),
0033 photonTriggers = cms.vstring(''),
0034 jetTriggers = cms.vstring(''),
0035 writeTriggerPrescale= cms.bool(False),
0036 doPFJets = cms.bool(True),
0037 doGenJets = cms.bool(True),
0038 debug = cms.untracked.int32(0),
0039 debugHLTTrigNames = cms.untracked.int32(2),
0040 workOnAOD = cms.int32(0),
0041 stageL1Trigger = cms.uint32(1)
0042 )
0043 from Configuration.Eras.Modifier_stage2L1Trigger_cff import stage2L1Trigger
0044 stage2L1Trigger.toModify(GammaJetAnalysis, stageL1Trigger = 2)