CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
genMuonRadiationFilter_cfi.py
Go to the documentation of this file.
1 # -*- coding: utf-8 -*-
2 
3 import FWCore.ParameterSet.Config as cms
4 
5 genMuonRadiationFilter = cms.EDFilter("GenMuonRadiationFilter",
6  srcGenParticles = cms.InputTag('genParticles::SIM'),
7  # CV: set Pt thresholds and cone sizes to values
8  # matching muon -> muon + photon radiation filter running on reconstruction level
9  # (cf. TauAnalysis/MCEmbeddingTools/python/muonRadiationFilter_cfi.py)
10  minPtLow = cms.double(2.),
11  dRlowPt = cms.double(0.07),
12  minPtHigh = cms.double(4.),
13  dRhighPt = cms.double(0.5),
14  invert = cms.bool(False),
15  filter = cms.bool(False),
16  verbosity = cms.int32(0)
17 )