CMS 3D CMS Logo

ProbeTreeProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ProbeTreeProducer = cms.EDAnalyzer("ProbeTreeProducer",
4  src = cms.InputTag("patMuons"),
5  cut = cms.string("isGlobalMuon"),
6  variables = cms.PSet(
7  pt = cms.string("pt"),
8  eta = cms.string("eta"),
9  ),
10  flags = cms.PSet(
11  GlobalMuonPromptTight = cms.string("muonID('GlobalMuonPromptTight')"),
12  ),
13 )
14