CMS 3D CMS Logo

PFMuonValidation_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMOffline.Muon.muonPFAnalyzer_cfi import muonPFsequence
4 
5 muonPFsequenceMC = muonPFsequence.clone(
6  inputTagMuonReco = "muons",
7  inputTagGenParticles = "genParticles",
8  inputTagVertex = "offlinePrimaryVertices",
9  inputTagBeamSpot = "offlineBeamSpot",
10  runOnMC = True,
11  folder = 'ParticleFlow/PFMuonValidation/',
12  recoGenDeltaR = 0.1,
13  relCombIsoCut = 0.15,
14  highPtThreshold = 200.
15 )
16 
17 pfMuonValidationSequence = cms.Sequence( muonPFsequenceMC )