CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
PFJetValidation_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMOffline.PFTau.PFJetDQMAnalyzer_cfi import pfJetDQMAnalyzer
4 
5 pfJetValidation1 = pfJetDQMAnalyzer.clone(
6  InputCollection = 'ak4PFJets',
7  MatchCollection = 'ak4GenJets',
8  BenchmarkLabel = 'PFJetValidation/CompWithGenJet'
9 )
10 
11 pfJetValidation2 = pfJetDQMAnalyzer.clone(
12  InputCollection = 'ak4PFJets',
13  MatchCollection = 'ak4CaloJets',
14  BenchmarkLabel = 'PFJetValidation/CompWithCaloJet'
15 )
16 
17 pfJetValidationSequence = cms.Sequence( pfJetValidation1 * pfJetValidation2 )