CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
PFMETValidation_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMOffline.PFTau.PFMETDQMAnalyzer_cfi import pfMETDQMAnalyzer
4 
5 pfMETValidation1 = pfMETDQMAnalyzer.clone(
6  InputCollection = 'pfMet',
7  MatchCollection = 'genMetTrue',
8  BenchmarkLabel = 'PFMETValidation/CompWithGenMET'
9 )
10 
11 pfMETValidation2 = pfMETDQMAnalyzer.clone(
12  InputCollection = 'pfMet',
13  MatchCollection = 'caloMet',
14  BenchmarkLabel = 'PFMETValidation/CompWithCaloMET'
15 )
16 
17 pfMETValidationSequence = cms.Sequence( pfMETValidation1 * pfMETValidation2 )