CMS 3D CMS Logo

badGlobalMuonTaggersAOD_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 badGlobalMuonTagger = cms.EDFilter("BadGlobalMuonTagger",
4  muons = cms.InputTag("muons"),
5  vtx = cms.InputTag("offlinePrimaryVertices"),
6  muonPtCut = cms.double(20),
7  selectClones = cms.bool(False),
8  taggingMode = cms.bool(False),
9 )
10 cloneGlobalMuonTagger = badGlobalMuonTagger.clone(
11  selectClones = True
12 )
13 
14 noBadGlobalMuons = cms.Sequence(~cloneGlobalMuonTagger + ~badGlobalMuonTagger)
15