00001 import FWCore.ParameterSet.Config as cms 00002 00003 metAnalyzer = cms.EDFilter("METTester", 00004 InputGenMETLabel = cms.string('genMet'), 00005 OutputFile = cms.untracked.string('METTester_data.root'), 00006 InputCaloMETLabel = cms.string('met') 00007 ) 00008 00009 recoMETValidation = cms.Sequence(metAnalyzer) 00010