Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:33:16

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 pfMET = 'pfMet'
0004 
0005 pfMETBenchmark = cms.EDAnalyzer("PFMETBenchmarkAnalyzer",
0006     OutputFile = cms.untracked.string('METBenchmark.root'),
0007     InputTruthLabel = cms.InputTag('genParticles'),
0008     InputCaloLabel = cms.InputTag('met'),
0009     pfjBenchmarkDebug = cms.bool(False),                           
0010     PlotAgainstRecoQuantities = cms.bool(False),
0011     BenchmarkLabel = cms.string( pfMET ),
0012     InputRecoLabel = cms.InputTag( pfMET ),
0013     InputTCLabel = cms.InputTag( 'tcMet' )
0014 )