CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
muonRadiationCorrWeightProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from TauAnalysis.MCEmbeddingTools.genMuonRadCorrAnalyzer_cfi import genMuonRadCorrAnalyzer
4 muonRadiationCorrWeightProducer = cms.EDProducer("MuonRadiationCorrWeightProducer",
5  inputFileName = cms.FileInPath("TauAnalysis/MCEmbeddingTools/data/muonRadiationCorrWeightProducer.root"),
6  srcMuonsBeforeRad = cms.InputTag('generator', 'muonsBeforeRad'),
7  srcMuonsAfterRad = cms.InputTag('generator', 'muonsAfterRad'),
8  lutDirectoryRef = cms.string('genMuonRadCorrAnalyzerPHOTOS'), # NOTE: needs to match 'applyMuonRadiationCorrection' parameter of ParticleReplacerZtautau used in embedding (default = PHOTOS)
9  lutDirectoryOthers = cms.PSet(
10  pythia = cms.string('genMuonRadCorrAnalyzer')
11  ),
12  binningMuonEn = genMuonRadCorrAnalyzer.binningMuonEn,
13  minWeight = cms.double(0.),
14  maxWeight = cms.double(2.),
15  verbosity = cms.int32(0)
16 )