10 #include <boost/algorithm/string.hpp>
11 #include <boost/lexical_cast.hpp>
24 std::string s_pythia_stream{
"PYTHIA8_INIT"};
29 #define PYTHIA8_NWEIGHTS nWeights
30 #define PYTHIA8_WEIGHT weight
31 #define PYTHIA8_WLABEL weightLabel
32 #define PYTHIA8_CONVERSION 1.0
34 #ifdef PYTHIA_VERSION_INTEGER
35 #undef PYTHIA8_NWEIGHTS
38 #if PYTHIA_VERSION_INTEGER > 8303
39 #define PYTHIA8_NWEIGHTS nWeightGroups
41 #define PYTHIA8_NWEIGHTS nVariationGroups
43 #define PYTHIA8_WEIGHT getGroupWeight
44 #define PYTHIA8_WLABEL getGroupName
53 std::string py8version()
55 static const std::string incdir (PY8INCLUDE_DIR);
56 std::string::size_type
pos = incdir.find (
"/pythia8/");
57 if (
pos == std::string::npos)
return "";
59 std::string::size_type pos2 = incdir.find (
"/",
pos);
60 if (pos2 == std::string::npos) pos2 = incdir.size();
61 return incdir.substr (
pos, pos2-
pos);
86 #ifndef PYTHIA8_3SERIES
103 m_runinfo = std::make_shared<HepMC3::GenRunInfo>();
105 struct HepMC3::GenRunInfo::ToolInfo
generator={std::string(
"Pythia8"),py8version(),std::string(
"Used generator")};
113 s_pythia_stream =
"PYTHIA8_INIT";
121 m_pythia->readString(
"Tune:pp = 5");
125 m_pythia->readString(
"PDF:pSet= LHAPDF6:cteq6l1");
128 m_pythia->readString(
"Next:numberShowEvent = 0");
131 m_pythia->settings.addFlag(
"AthenaPythia8ToHepMC:print_inconsistency",
true);
137 bool canSetHook =
true;
138 if (hook ==
"SuppressSmallPT") {
153 for(
const std::pair<const std::string, double> ¶m : Pythia8_UserHooks::UserHooksFactory::userSettings<double>()){
154 m_pythia->settings.addParm(param.first, param.second,
false,
false, 0., 0.);
157 for(
const std::pair<const std::string, int> ¶m : Pythia8_UserHooks::UserHooksFactory::userSettings<int>()){
158 m_pythia->settings.addMode(param.first, param.second,
false,
false, 0., 0.);
161 for(
const std::pair<const std::string, bool> ¶m : Pythia8_UserHooks::UserHooksFactory::userSettings<bool>()){
162 m_pythia->settings.addFlag(param.first, param.second);
165 for(
const std::pair<const std::string, std::string> ¶m : Pythia8_UserHooks::UserHooksFactory::userSettings<std::string>()){
166 m_pythia->settings.addWord(param.first, param.second);
171 ATH_MSG_ERROR(
"Unable to retrieve Athena Tool for custom Pythia processing");
172 return StatusCode::FAILURE;
183 if(
cmd.compare(
"")==0)
continue;
184 else if (
cmd.find(
"Beams:id") != std::string::npos ) {
185 ATH_MSG_ERROR(
"With command '" <<
cmd <<
"' you are trying to set a beam different from p: please use the Beam1/Beam2 properties instead:");
188 return StatusCode::FAILURE;
190 else if (
cmd.find(
"Beams:frameType") != std::string::npos ) {
192 ATH_MSG_WARNING(
" Found an explicit 'Beams:frameType' command: this will override transform beams momenta/energy parameters, regardless of its requested value. ");
199 return StatusCode::FAILURE;
211 return StatusCode::FAILURE;
218 ATH_MSG_INFO(
" !!!!!!!!!!!! WARNING ON PYTHIA RANDOM NUMBERS !!!!!!!!!! ");
219 ATH_MSG_INFO(
" THE ATHENA SERVICE AthRNGenSvc IS USED.");
220 ATH_MSG_INFO(
" !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ");
225 #if PYTHIA_VERSION_INTEGER >= 8310
230 s_pythia_stream =
"PYTHIA8";
232 ATH_MSG_INFO(
" !!!!!!!!!!!! WARNING ON PYTHIA RANDOM NUMBERS !!!!!!!!!! ");
233 ATH_MSG_INFO(
" THE STANDARD PYTHIA8 RANDOM NUMBER SERVICE IS USED.");
234 ATH_MSG_INFO(
" THE ATHENA SERVICE AthRNGSvc IS ***NOT*** USED.");
235 ATH_MSG_INFO(
" !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ");
246 std::vector<std::string> resonanceArgs;
249 if(resonanceArgs.size() != 2){
250 ATH_MSG_ERROR(
"Cannot Understand UserResonance job option!");
251 ATH_MSG_ERROR(
"You should specify it as a 'name:id1,id2,id3...'");
252 ATH_MSG_ERROR(
"Where name is the name of your UserResonance, and id1,id2,id3 are a comma separated list of PDG IDs to which it is applied");
255 std::vector<std::string> resonanceIds;
256 boost::split(resonanceIds, resonanceArgs.back(), boost::is_any_of(
","));
257 if(resonanceIds.size()==0){
258 ATH_MSG_ERROR(
"You did not specifiy any PDG ids to which your user resonance width should be applied!");
259 ATH_MSG_ERROR(
"You should specify a list as 'name:id1,id2,id3...'");
260 ATH_MSG_ERROR(
"Where name is the name of your UserResonance, and id1,id2,id3 are a comma separated list of PDG IDs to which it is applied");
264 for(std::vector<std::string>::const_iterator sId = resonanceIds.begin();
265 sId != resonanceIds.end(); ++sId){
266 int idResIn = boost::lexical_cast<int>(*sId);
271 #if PYTHIA_VERSION_INTEGER >= 8310
272 m_pythia->setResonancePtr(resonance);
274 m_pythia->setResonancePtr(resonance.get());
290 ATH_MSG_ERROR(
"Both LHE file and user process have been specified");
291 ATH_MSG_ERROR(
"LHE input does not make sense with a user process!");
295 canInit = canInit &&
m_pythia->readString(
"Beams:frameType = 4");
303 canInit = canInit &&
m_pythia->readString(
"Beams:frameType = 1");
311 #if PYTHIA_VERSION_INTEGER >= 8310
326 m_pythia->settings.writeFile(
"Settings_before.log",
true);
333 returnCode = StatusCode::FAILURE;
338 m_pythia->settings.writeFile(
"Settings_after.log",
true);
346 m_pythiaToHepMC.set_print_inconsistency(
m_pythia->settings.flag(
"AthenaPythia8ToHepMC:print_inconsistency") );
361 const EventContext& ctx = Gaudi::Hive::currentContext();
376 ATH_MSG_ERROR(
"Exceeded the max number of consecutive event failures.");
377 returnCode = StatusCode::FAILURE;
387 if(stat != StatusCode::SUCCESS) returnCode =
stat;
396 double eventWeight =
m_pythia->info.mergingWeight()*
m_pythia->info.weight();
399 if(returnCode != StatusCode::FAILURE &&
407 ATH_MSG_WARNING(
"Found event weight " << eventWeight <<
" between the float and double precision limits. Rejecting event.");
434 ATH_MSG_ERROR(
"Something wrong with this event - it contains fewer than 2 particles!");
436 return StatusCode::FAILURE;
444 auto evtlhe = std::make_shared<HepMC::GenEvent>();
446 auto extra = std::make_shared<HepMC::ShortEventAttribute>(evtlhe.get());
447 evt->add_attribute(
"LHERecord",
extra);
449 ATH_MSG_WARNING(
"LHE record saving requested, but not implemented with HEPMC2 functionality.");
474 ATH_MSG_DEBUG(
"No PDF information available in HepMC::GenEvent!");
482 return StatusCode::SUCCESS;
492 #ifndef PYTHIA8_304SERIES
495 if (hook->canEnhanceEmission()) {
499 #endif // not PYTHIA8_304SERIES
504 std::map<std::string,double> fWeights;
508 size_t atlas_specific_weights = 1;
509 fWeights[
"Default"]=eventWeight;
533 std::vector<std::string>::const_iterator
id =
m_weightIDs.begin()+atlas_specific_weights;
536 if(
m_pythia->info.getWeightsDetailedSize() != 0){
537 for(std::map<std::string, Pythia8::LHAwgt>::const_iterator wgt =
m_pythia->info.rwgt->wgts.begin();
538 wgt !=
m_pythia->info.rwgt->wgts.end(); ++wgt){
543 if(*
id != wgt->first){
544 ATH_MSG_ERROR(
"Mismatch in LHE3 weight id. Found "<<wgt->first<<
", expected "<<*
id);
545 return StatusCode::FAILURE;
550 std::map<std::string, Pythia8::LHAweight>::const_iterator weightName =
m_pythia->info.init_weights->find(wgt->first);
551 if(weightName !=
m_pythia->info.init_weights->end()){
564 for(
int iw = 1; iw <
m_pythia->info.PYTHIA8_NWEIGHTS(); ++iw){
580 fWeights[
"AUX_bare_not_for_analyses"]=(-10.0)*
m_pythia->info.eventWeightLHEF;
589 std::map<std::string, Pythia8::LHAweight>::const_iterator
weight =
m_pythia->info.init_weights->find(
id);
598 ATH_MSG_ERROR(
"Something wrong when building list of weight names: " <<
m_weightNames.size() <<
" vs "<< fWeights.size() <<
", exiting ...");
599 return StatusCode::FAILURE;
605 if (!
evt->run_info()) {
606 evt->set_run_info(m_runinfo);
612 evt->weights().push_back(1.0);
618 evt->weights().resize(fWeights.size(), 1.0);
619 for (
auto w: fWeights) {
620 evt->weight(
w.first)=
w.second;
623 auto beams=
evt->beams();
631 evt->weights().clear();
633 auto beams=
evt->beam_particles();
634 ATH_MSG_DEBUG(
" Energy of the beams " << beams.first->momentum().e() );
641 return StatusCode::SUCCESS;
651 double xs =
info.sigmaGen();
655 ATH_MSG_DEBUG(
"Multiplying cross-section by CKKWL merging acceptance of "<<
m_nMerged <<
"/" <<
info.nAccepted() <<
" = " << accfactor
656 <<
": " << xs <<
" -> " << xs*accfactor);
663 std::cout <<
"Using FxFx cross section recipe: xs = "<<
m_sigmaTotal <<
" / " << 1e9*
info.nTried() << std::endl;
668 ATH_MSG_DEBUG(
"Multiplying cross-section by Pythia Modifier tool factor " << xsmod );
674 std::cout <<
"MetaData: cross-section (nb)= " << xs <<std::endl;
675 std::cout <<
"MetaData: generator= Pythia 8." << std::string(py8version()) <<std::endl;
678 std::cout<<
"MetaData: weights = ";
680 std::cout<<std::endl;
684 if (
info.nTried()>0)
ATH_MSG_INFO(
"Pythia8 efficiency (nAccepted/nTried %) = " <<
info.nAccepted()*100./
info.nTried());
685 else ATH_MSG_INFO(
"Pythia8 efficiency cannot be computed, nTried <=0");
694 return StatusCode::SUCCESS;
704 return s_pythia_stream;
711 std::string foundpath =
"";
722 #ifdef PYTHIA8_NWEIGHTS
723 #undef PYTHIA8_NWEIGHTS
724 #undef PYTHIA8_WEIGHT
725 #undef PYTHIA8_WLABEL
726 #undef PYTHIA8_CONVERSION