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 usesResource(
"Rivet");
28 std::vector<std::string> analysisNames = pset.
getParameter<std::vector<std::string> >(
"AnalysisNames");
34 if (!pset.
exists(
"GenEventInfoCollection")){
35 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 " ;
51 const std::set< AnaHandle, CmpAnaHandle > & analyses =
_analysisHandler.analyses();
53 std::set< AnaHandle, CmpAnaHandle >::const_iterator ibeg = analyses.begin();
54 std::set< AnaHandle, CmpAnaHandle >::const_iterator iend = analyses.end();
55 std::set< AnaHandle, CmpAnaHandle >::const_iterator iana;
57 for (iana = ibeg; iana != iend; ++iana){
58 if ((*iana)->needsCrossSection())
75 char * cmsswbase = getenv(
"CMSSW_BASE");
76 char * cmsswrelease = getenv(
"CMSSW_RELEASE_BASE");
77 if ( !getenv(
"RIVET_REF_PATH") )
79 const std::string rivetref =
"RIVET_REF_PATH=" +
string(cmsswbase) +
"/src/GeneratorInterface/RivetInterface/data:" +
string(cmsswrelease) +
"/src/GeneratorInterface/RivetInterface/data";
80 putenv(strdup(rivetref.c_str()));
82 if ( !getenv(
"RIVET_INFO_PATH") )
84 const std::string rivetinfo =
"RIVET_INFO_PATH=" +
string(cmsswbase) +
"/src/GeneratorInterface/RivetInterface/data:" +
string(cmsswrelease) +
"/src/GeneratorInterface/RivetInterface/data";
85 putenv(strdup(rivetinfo.c_str()));
101 std::unique_ptr<HepMC::GenEvent> tmpGenEvtPtr;
104 tmpGenEvtPtr = std::make_unique<HepMC::GenEvent>(*(evt->
GetEvent()));
107 HepMC::GenCrossSection xsec;
109 tmpGenEvtPtr->set_cross_section(xsec);
113 if (tmpGenEvtPtr->weights().empty()) {
114 throw cms::Exception(
"RivetAnalyzer") <<
"Original weight container has 0 size ";
116 if (tmpGenEvtPtr->weights().size() > 1) {
117 edm::LogWarning(
"RivetAnalyzer") <<
"Original event weight size is " << tmpGenEvtPtr->weights().size() <<
". Will change only the first one ";
120 double weightForRivet = 1.;
131 weightForRivet *= wgt.
wgt;
134 tmpGenEvtPtr->weights()[0] = weightForRivet;
136 myGenEvent = tmpGenEvtPtr.get();
182 using namespace YODA;
186 const string tmpdir =
"/RivetNormalizeTmp";
188 foreach (
const string& analysis, analyses) {
190 dbe->setCurrentFolder(
"Rivet/"+analysis);
193 TH1F
nevent(
"nEvt",
"n analyzed Events", 1, 0., 1.);
195 _mes.push_back(
dbe->book1D(
"nEvt",&nevent));
void analyze(const edm::Event &, const edm::EventSetup &) override
T getParameter(std::string const &) const
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
const std::vector< WGT > & weights() const
Rivet::AnalysisHandler _analysisHandler
void beginRun(const edm::Run &, const edm::EventSetup &) override
RivetAnalyzer(const edm::ParameterSet &)
edm::EDGetTokenT< edm::HepMCProduct > _hepmcCollection
const HepMC::GenEvent * GetEvent() const
void endJob() override
List of registered analysis data objects.
edm::EDGetTokenT< LHEEventProduct > _LHECollection
std::vector< double > & weights()
edm::EDGetTokenT< GenEventInfoProduct > _genEventInfoCollection
std::vector< MonitorElement * > _mes
~RivetAnalyzer() override