CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/GeneratorInterface/Core/src/BaseHadronizer.cc

Go to the documentation of this file.
00001 
00002 #include "GeneratorInterface/Core/interface/BaseHadronizer.h"
00003 
00004 namespace gen {
00005 
00006 BaseHadronizer::BaseHadronizer( edm::ParameterSet const& ps )
00007 {
00008 
00009    runInfo().setFilterEfficiency(
00010       ps.getUntrackedParameter<double>("filterEfficiency", -1.) );
00011    runInfo().setExternalXSecLO(
00012       GenRunInfoProduct::XSec(ps.getUntrackedParameter<double>("crossSection", -1.)) );
00013    runInfo().setExternalXSecNLO(
00014        GenRunInfoProduct::XSec(ps.getUntrackedParameter<double>("crossSectionNLO", -1.)) );
00015 
00016 }
00017 
00018 }