9 #include "Rivet/AnalysisHandler.hh"
10 #include "Rivet/Analysis.hh"
12 using namespace Rivet;
18 _outFileName(pset.getParameter<std::
string>(
"OutputFile")),
21 _doFinalize(pset.getParameter<bool>(
"DoFinalize")),
22 _produceDQM(pset.getParameter<bool>(
"ProduceDQMOutput"))
25 std::vector<std::string> analysisNames = pset.
getParameter<std::vector<std::string> >(
"AnalysisNames");
31 if (!pset.
exists(
"GenEventInfoCollection")){
32 throw cms::Exception(
"RivetAnalyzer") <<
"when using an external event weight you have to specify the GenEventInfoProduct collection from which the weight has to be taken " ;
45 const std::set< AnaHandle, CmpAnaHandle > & analyses =
_analysisHandler.analyses();
47 std::set< AnaHandle, CmpAnaHandle >::const_iterator ibeg = analyses.begin();
48 std::set< AnaHandle, CmpAnaHandle >::const_iterator iend = analyses.end();
49 std::set< AnaHandle, CmpAnaHandle >::const_iterator iana;
50 double xsection = -1.;
52 for (iana = ibeg; iana != iend; ++iana){
53 if ((*iana)->needsCrossSection())
54 (*iana)->setCrossSection(xsection);
70 char * cmsswbase = getenv(
"CMSSW_BASE");
71 char * cmsswrelease = getenv(
"CMSSW_RELEASE_BASE");
73 rivetref =
"RIVET_REF_PATH=" +
string(cmsswbase) +
"/src/GeneratorInterface/RivetInterface/data:" +
string(cmsswrelease) +
"/src/GeneratorInterface/RivetInterface/data";
74 rivetinfo =
"RIVET_INFO_PATH=" +
string(cmsswbase) +
"/src/GeneratorInterface/RivetInterface/data:" +
string(cmsswrelease) +
"/src/GeneratorInterface/RivetInterface/data";
75 putenv(strdup(rivetref.c_str()));
76 putenv(strdup(rivetinfo.c_str()));
90 const HepMC::GenEvent *myGenEvent = evt->GetEvent();
95 HepMC::GenEvent * tmpGenEvtPtr =
new HepMC::GenEvent( *(evt->GetEvent()) );
96 if (tmpGenEvtPtr->weights().size() == 0) {
97 throw cms::Exception(
"RivetAnalyzer") <<
"Original weight container has 0 size ";
99 if (tmpGenEvtPtr->weights().size() > 1) {
100 edm::LogWarning(
"RivetAnalyzer") <<
"Original event weight size is " << tmpGenEvtPtr->weights().size() <<
". Will change only the first one ";
106 tmpGenEvtPtr->weights()[0] = genEventInfoProduct->weight();
111 tmpGenEvtPtr->weights()[0] = wgt.
wgt;
113 myGenEvent = tmpGenEvtPtr;
162 using namespace YODA;
166 const string tmpdir =
"/RivetNormalizeTmp";
168 foreach (
const string& analysis, analyses) {
170 dbe->setCurrentFolder((
"Rivet/"+analysis).c_str());
173 TH1F
nevent(
"nEvt",
"n analyzed Events", 1, 0., 1.);
175 _mes.push_back(
dbe->book1D(
"nEvt",&nevent));
virtual void analyze(const edm::Event &, const edm::EventSetup &) override
T getParameter(std::string const &) const
virtual void endRun(const edm::Run &, const edm::EventSetup &) override
bool getByToken(EDGetToken token, Handle< PROD > &result) const
#define DEFINE_FWK_MODULE(type)
bool exists(std::string const ¶meterName) const
checks if a parameter exists
Rivet::AnalysisHandler _analysisHandler
virtual void beginJob() override
virtual void beginRun(const edm::Run &, const edm::EventSetup &) override
RivetAnalyzer(const edm::ParameterSet &)
edm::EDGetTokenT< edm::HepMCProduct > _hepmcCollection
virtual void endJob() override
List of registered analysis data objects.
edm::EDGetTokenT< LHEEventProduct > _LHECollection
edm::EDGetTokenT< GenEventInfoProduct > _genEventInfoCollection
std::vector< MonitorElement * > _mes