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")),
26 std::vector<std::string> analysisNames = pset.
getParameter<std::vector<std::string> >(
"AnalysisNames");
32 if (!pset.
exists(
"GenEventInfoCollection")){
33 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 " ;
49 const std::set< AnaHandle, CmpAnaHandle > & analyses =
_analysisHandler.analyses();
51 std::set< AnaHandle, CmpAnaHandle >::const_iterator ibeg = analyses.begin();
52 std::set< AnaHandle, CmpAnaHandle >::const_iterator iend = analyses.end();
53 std::set< AnaHandle, CmpAnaHandle >::const_iterator iana;
55 for (iana = ibeg; iana != iend; ++iana){
56 if ((*iana)->needsCrossSection())
73 char * cmsswbase = getenv(
"CMSSW_BASE");
74 char * cmsswrelease = getenv(
"CMSSW_RELEASE_BASE");
75 if ( !getenv(
"RIVET_REF_PATH") )
77 const std::string rivetref =
"RIVET_REF_PATH=" +
string(cmsswbase) +
"/src/GeneratorInterface/RivetInterface/data:" +
string(cmsswrelease) +
"/src/GeneratorInterface/RivetInterface/data";
78 char *rivetrefCstr = 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 char *rivetinfoCstr = strdup(rivetinfo.c_str());
86 putenv(rivetinfoCstr);
102 const HepMC::GenEvent *myGenEvent = evt->
GetEvent();
103 std::unique_ptr<HepMC::GenEvent> tmpGenEvtPtr;
106 tmpGenEvtPtr = std::make_unique<HepMC::GenEvent>(*(evt->
GetEvent()));
109 HepMC::GenCrossSection xsec;
111 tmpGenEvtPtr->set_cross_section(xsec);
115 if (tmpGenEvtPtr->weights().empty()) {
116 throw cms::Exception(
"RivetAnalyzer") <<
"Original weight container has 0 size ";
118 if (tmpGenEvtPtr->weights().size() > 1) {
119 edm::LogWarning(
"RivetAnalyzer") <<
"Original event weight size is " << tmpGenEvtPtr->weights().size() <<
". Will change only the first one ";
122 double weightForRivet = 1.;
133 weightForRivet *= wgt.
wgt;
136 tmpGenEvtPtr->weights()[0] = weightForRivet;
138 myGenEvent = tmpGenEvtPtr.get();
184 using namespace YODA;
188 const string tmpdir =
"/RivetNormalizeTmp";
190 foreach (
const string& analysis, analyses) {
192 dbe->setCurrentFolder(
"Rivet/"+analysis);
195 TH1F
nevent(
"nEvt",
"n analyzed Events", 1, 0., 1.);
197 _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