CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/PhysicsTools/TagAndProbe/python/ProbeTreeProducer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 ProbeTreeProducer = cms.EDAnalyzer("ProbeTreeProducer",
00004     src = cms.InputTag("patMuons"),
00005     cut = cms.string("isGlobalMuon"),
00006     variables = cms.PSet(
00007         pt  = cms.string("pt"),
00008         eta = cms.string("eta"),
00009     ),
00010     flags = cms.PSet(
00011         GlobalMuonPromptTight = cms.string("muonID('GlobalMuonPromptTight')"),
00012     ),
00013 )
00014