CMS 3D CMS Logo

L1Validator_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 L1Validator = cms.EDAnalyzer('L1Validator',
4  dirName=cms.string("L1T/L1TriggerVsGen"),
5 # fileName=cms.string("L1Validation.root") #output file name
6  GenSource=cms.InputTag("genParticles"),
7  srcToken = cms.InputTag("generator"),
8  L1MuonBXSource=cms.InputTag("gmtStage2Digis", "Muon"),
9  L1EGammaBXSource=cms.InputTag("caloStage2Digis", "EGamma"),
10  L1TauBXSource=cms.InputTag("caloStage2Digis", "Tau"),
11  L1JetBXSource=cms.InputTag("caloStage2Digis", "Jet"),
12  L1ExtraMuonSource=cms.InputTag("l1extraParticles"),
13  L1GenJetSource=cms.InputTag("ak4GenJets","")
14 )