main87
Back to index.
// main87.cc is a part of the PYTHIA event generator.
// Copyright (C) 2023 Torbjorn Sjostrand.
// PYTHIA is licenced under the GNU GPL v2 or later, see COPYING for details.
// Please respect the MCnet Guidelines, see GUIDELINES for details.
// Authors:
// Stefan Prestel
// Keywords:
// Merging
// NLO
// NL3
// Hepmc
// It illustrates how to do NL3 merging, see the Matrix Element
// Merging page in the online manual. An example command is
// ./main87 main87.cmnd w_production hepmcout87.dat
// where main87.cmnd supplies the commands, w_production provides the
// input LHE events, and hepmcout87.dat is the output file. This
// example requires HepMC 3.
#include "Pythia8/Pythia.h"
#ifndef HEPMC2
#include "Pythia8Plugins/HepMC3.h"
#else
#include "Pythia8Plugins/HepMC2.h"
#endif
#include <unistd.h>
using namespace Pythia8;
//==========================================================================
// Example main programm to illustrate merging
int main( int argc, char* argv[] ){
// Check that correct number of command-line arguments
if (argc != 4) {
cerr << " Unexpected number of command-line arguments ("<<argc<<"). \n"
<< " You are expected to provide the arguments" << endl
<< " 1. Input file for settings" << endl
<< " 2. Name of the input LHE file (with path), up to the '_tree'"
<< " or '_powheg' identifiers" << endl
<< " 3. Output hepmc file name" << endl
<< " Program stopped. " << endl;
return 1;
}
Pythia pythia;
// Input parameters:
// 1. Input file for settings
// 2. Path to input LHE file
// 3. Output histogram path
pythia.readFile(argv[1]);
// Deactivate AUX_ weight output
pythia.readString("Weights:suppressAUX = on");
// Interface for conversion from Pythia8::Event to HepMC one.
// Specify file where HepMC events will be stored.
Pythia8ToHepMC toHepMC(argv[3]);
// Switch off warnings for parton-level events.
toHepMC.set_print_inconsistency(false);
toHepMC.set_free_parton_warnings(false);
// Do not store cross section information, as this will be done manually.
toHepMC.set_store_pdf(false);
toHepMC.set_store_proc(false);
toHepMC.set_store_xsec(false);
// Path to input events, with name up to the "_tree", "_powheg" identifier
// included.
string iPath = string(argv[2]);
// Number of events
int nEvent = pythia.mode("Main:numberOfEvents");
// Maximal number of additional LO jets.
int nMaxLO = pythia.mode("Merging:nJetMax");
// maximal number of additional NLO jets.
int nMaxNLO = pythia.mode("Merging:nJetMaxNLO");
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Switch off all showering and MPI when extimating the cross section after
// the merging scale cut.
bool fsr = pythia.flag("PartonLevel:FSR");
bool isr = pythia.flag("PartonLevel:ISR");
bool mpi = pythia.flag("PartonLevel:MPI");
bool had = pythia.flag("HadronLevel:all");
pythia.settings.flag("PartonLevel:FSR",false);
pythia.settings.flag("PartonLevel:ISR",false);
pythia.settings.flag("HadronLevel:all",false);
pythia.settings.flag("PartonLevel:MPI",false);
// Switch on cross section estimation procedure.
pythia.settings.flag("Merging:doXSectionEstimate", true);
pythia.settings.flag("Merging:doNL3Tree", true);
int njetcounterLO = nMaxLO;
string iPathTree = iPath + "_tree";
vector<double> xsecLO;
vector<double> nSelectedLO;
vector<double> nAcceptLO;
cout << endl << endl << endl;
cout << "Start estimating nl3 tree level cross section" << endl;
while(njetcounterLO >= 0){
// From njetcounter, choose LHE file
stringstream in;
in << "_" << njetcounterLO << ".lhe";
#ifdef GZIP
if(access( (iPathTree+in.str()+".gz").c_str(), F_OK) != -1) in << ".gz";
#endif
string LHEfile = iPathTree + in.str();
pythia.settings.mode("Merging:nRequested", njetcounterLO);
pythia.settings.mode("Beams:frameType", 4);
pythia.settings.word("Beams:LHEF", LHEfile);
pythia.init();
// Start generation loop
for( int iEvent=0; iEvent<nEvent; ++iEvent ){
// Generate next event
if( !pythia.next() ) {
if( pythia.info.atEndOfFile() ){
break;
}
else continue;
}
} // end loop over events to generate
// print cross section, errors
pythia.stat();
xsecLO.push_back(pythia.info.sigmaGen());
nSelectedLO.push_back(pythia.info.nSelected());
nAcceptLO.push_back(pythia.info.nAccepted());
// Restart with ME of a reduced the number of jets
if( njetcounterLO > 0 )
njetcounterLO--;
else
break;
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
cout << endl << endl << endl;
cout << "Start estimating nl3 virtual corrections cross section" << endl;
pythia.settings.flag("Merging:doNL3Tree",false);
pythia.settings.flag("Merging:doNL3Loop",true);
int njetcounterNLO = nMaxNLO;
string iPathLoop= iPath + "_powheg";
vector<double> xsecNLO;
vector<double> nSelectedNLO;
vector<double> nAcceptNLO;
vector<int> strategyNLO;
while(njetcounterNLO >= 0){
// From njetcounter, choose LHE file
stringstream in;
in << "_" << njetcounterNLO << ".lhe";
#ifdef GZIP
if(access( (iPathLoop+in.str()+".gz").c_str(), F_OK) != -1) in << ".gz";
#endif
string LHEfile = iPathLoop + in.str();
pythia.settings.mode("Merging:nRequested", njetcounterNLO);
pythia.settings.mode("Beams:frameType", 4);
pythia.settings.word("Beams:LHEF", LHEfile);
pythia.init();
// Start generation loop
for( int iEvent=0; iEvent<nEvent; ++iEvent ){
// Generate next event
if( !pythia.next() ) {
if( pythia.info.atEndOfFile() ){
break;
}
else continue;
}
} // end loop over events to generate
// print cross section, errors
pythia.stat();
xsecNLO.push_back(pythia.info.sigmaGen());
nSelectedNLO.push_back(pythia.info.nSelected());
nAcceptNLO.push_back(pythia.info.nAccepted());
strategyNLO.push_back(pythia.info.lhaStrategy());
// Restart with ME of a reduced the number of jets
if( njetcounterNLO > 0 )
njetcounterNLO--;
else
break;
}
// Set k-factors
int sizeLO = int(xsecLO.size());
int sizeNLO = int(xsecNLO.size());
double k0 = 1.;
double k1 = 1.;
double k2 = 1.;
// Lowest order k-factor only
if ( false ) k1 = k2 = k0 = xsecNLO.back() / xsecLO.back();
// No k-factors
if ( true ) k0 = k1 = k2 = 1.;
cout << " K-Factors :" << endl;
cout << "k0 = " << k0 << endl;
cout << "k1 = " << k1 << endl;
cout << "k2 = " << k2 << endl;
// Switch off cross section estimation.
pythia.settings.flag("Merging:doXSectionEstimate", false);
// Switch showering and multiple interaction back on.
pythia.settings.flag("PartonLevel:FSR",fsr);
pythia.settings.flag("PartonLevel:ISR",isr);
pythia.settings.flag("HadronLevel:all",had);
pythia.settings.flag("PartonLevel:MPI",mpi);
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Declare sample cross section for output.
double sigmaTemp = 0.;
vector<double> sampleXStree;
vector<double> sampleXSvirt;
vector<double> sampleXSsubtTree;
// Cross section an error.
double sigmaTotal = 0.;
double errorTotal = 0.;
// Switch on tree-level processing.
pythia.settings.flag("Merging:doNL3Tree",true);
pythia.settings.flag("Merging:doNL3Loop",false);
pythia.settings.flag("Merging:doNL3Subt",false);
pythia.settings.mode("Merging:nRecluster",0);
pythia.settings.mode("Merging:nRequested", -1);
njetcounterLO = nMaxLO;
iPathTree = iPath + "_tree";
while(njetcounterLO >= 0){
// Set k factors
pythia.settings.parm("Merging:kFactor0j", k0);
pythia.settings.parm("Merging:kFactor1j", k1);
pythia.settings.parm("Merging:kFactor2j", k2);
// From njetcounter, choose LHE file
stringstream in;
in << "_" << njetcounterLO << ".lhe";
#ifdef GZIP
if(access( (iPathTree+in.str()+".gz").c_str(), F_OK) != -1) in << ".gz";
#endif
string LHEfile = iPathTree + in.str();
cout << endl << endl << endl
<< "Start tree level treatment for " << njetcounterLO << " jets"
<< endl;
pythia.settings.mode("Merging:nRequested", njetcounterLO);
pythia.settings.mode("Beams:frameType", 4);
pythia.settings.word("Beams:LHEF", LHEfile);
pythia.init();
// Remember position in vector of cross section estimates.
int iNow = sizeLO-1-njetcounterLO;
// Start generation loop
for( int iEvent=0; iEvent<nEvent; ++iEvent ){
// Generate next event
if( !pythia.next() ) {
if( pythia.info.atEndOfFile() ) break;
else continue;
}
// Get event weight(s).
double weightNLO = pythia.info.mergingWeightNLO();
double evtweight = pythia.info.weight();
weightNLO *= evtweight;
// Do not print zero-weight events.
if ( weightNLO == 0. ) continue;
// Copy weight names to HepMC.
toHepMC.setWeightNames(pythia.info.weightNameVector());
// Get correct cross section from previous estimate.
double normhepmc = xsecLO[iNow] / nAcceptLO[iNow];
// powheg box weighted events
if( abs(pythia.info.lhaStrategy()) == 4 )
normhepmc = 1. / (1e9*nSelectedLO[iNow]);
// Fill HepMC event.
toHepMC.fillNextEvent( pythia );
// Add the weight of the current event to the cross section.
sigmaTotal += weightNLO*normhepmc;
sigmaTemp += weightNLO*normhepmc;
errorTotal += pow2(weightNLO*normhepmc);
// Report cross section to hepmc.
toHepMC.setXSec( sigmaTotal*1e9, pythia.info.sigmaErr()*1e9 );
// Write the HepMC event to file.
toHepMC.writeEvent();
} // end loop over events to generate
// print cross section, errors
pythia.stat();
// Save sample cross section for output.
sampleXStree.push_back(sigmaTemp);
sigmaTemp = 0.;
// Restart with ME of a reduced the number of jets
if( njetcounterLO > 0 )
njetcounterLO--;
else
break;
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
cout << endl << endl << endl;
cout << "Start nl3 virtual corrections part" << endl;
// Switch on loop-level processing.
pythia.settings.flag("Merging:doNL3Tree",false);
pythia.settings.flag("Merging:doNL3Loop",true);
pythia.settings.flag("Merging:doNL3Subt",false);
pythia.settings.mode("Merging:nRecluster",0);
njetcounterNLO = nMaxNLO;
iPathLoop = iPath + "_powheg";
while(njetcounterNLO >= 0){
// From njetcounter, choose LHE file
stringstream in;
in << "_" << njetcounterNLO << ".lhe";
#ifdef GZIP
if(access( (iPathLoop+in.str()+".gz").c_str(), F_OK) != -1) in << ".gz";
#endif
string LHEfile = iPathLoop + in.str();
cout << endl << endl << endl
<< "Start loop level treatment for " << njetcounterNLO << " jets"
<< endl;
pythia.settings.mode("Merging:nRequested", njetcounterNLO);
pythia.settings.mode("Beams:frameType", 4);
pythia.settings.word("Beams:LHEF", LHEfile);
pythia.init();
// Remember position in vector of cross section estimates.
int iNow = sizeNLO-1-njetcounterNLO;
// Start generation loop
for( int iEvent=0; iEvent<nEvent; ++iEvent ){
// Generate next event
if( !pythia.next() ) {
if( pythia.info.atEndOfFile() ) break;
else continue;
}
// Get event weight(s).
double weightNLO = pythia.info.mergingWeightNLO();
double evtweight = pythia.info.weight();
weightNLO *= evtweight;
// Do not print zero-weight events.
if ( weightNLO == 0. ) continue;
// Copy weight names to HepMC.
toHepMC.setWeightNames(pythia.info.weightNameVector());
// Get correct cross section from previous estimate.
double normhepmc = xsecNLO[iNow] / nAcceptNLO[iNow];
// powheg box weighted events
if( abs(pythia.info.lhaStrategy()) == 4 )
normhepmc = 1. / (1e9*nSelectedNLO[iNow]);
// Fill HepMC event.
toHepMC.fillNextEvent( pythia );
// Add the weight of the current event to the cross section.
sigmaTotal += weightNLO*normhepmc;
sigmaTemp += weightNLO*normhepmc;
errorTotal += pow2(weightNLO*normhepmc);
// Report cross section to hepmc.
toHepMC.setXSec( sigmaTotal*1e9, pythia.info.sigmaErr()*1e9 );
// Write the HepMC event to file.
toHepMC.writeEvent();
} // end loop over events to generate
// print cross section, errors
pythia.stat();
// Save sample cross section for output.
sampleXSvirt.push_back(sigmaTemp);
sigmaTemp = 0.;
// Restart with ME of a reduced the number of jets
if( njetcounterNLO > 0)
njetcounterNLO--;
else
break;
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
cout << endl << endl << endl;
cout << "Shower subtractive events" << endl;
// Switch on processing of counter-events.
pythia.settings.flag("Merging:doNL3Tree",false);
pythia.settings.flag("Merging:doNL3Loop",false);
pythia.settings.flag("Merging:doNL3Subt",true);
pythia.settings.mode("Merging:nRecluster",1);
pythia.settings.mode("Merging:nRequested", -1);
int nMaxCT = nMaxNLO + 1;
int njetcounterCT = nMaxCT;
string iPathSubt = iPath + "_tree";
while(njetcounterCT >= 1){
// From njetcounter, choose LHE file
stringstream in;
in << "_" << njetcounterCT << ".lhe";
#ifdef GZIP
if(access( (iPathSubt+in.str()+".gz").c_str(), F_OK) != -1) in << ".gz";
#endif
string LHEfile = iPathSubt + in.str();
cout << endl << endl << endl
<< "Start subtractive treatment for " << njetcounterCT << " jets"
<< endl;
pythia.settings.mode("Merging:nRequested", njetcounterCT);
pythia.settings.mode("Beams:frameType", 4);
pythia.settings.word("Beams:LHEF", LHEfile);
pythia.init();
// Remember position in vector of cross section estimates.
int iNow = sizeLO-1-njetcounterCT;
// Start generation loop
for( int iEvent=0; iEvent<nEvent; ++iEvent ){
// Generate next event
if( !pythia.next() ) {
if( pythia.info.atEndOfFile() ) break;
else continue;
}
// Get event weight(s).
double weightNLO = pythia.info.mergingWeightNLO();
double evtweight = pythia.info.weight();
weightNLO *= evtweight;
// Do not print zero-weight events.
if ( weightNLO == 0. ) continue;
// Copy the weight names to HepMC.
toHepMC.setWeightNames(pythia.info.weightNameVector());
// Get correct cross section from previous estimate.
double normhepmc = -1.*xsecLO[iNow] / nAcceptLO[iNow];
// powheg box weighted events
if( abs(pythia.info.lhaStrategy()) == 4 )
normhepmc = -1. / (1e9*nSelectedLO[iNow]);
// Fill HepMC event.
toHepMC.fillNextEvent( pythia );
// Add the weight of the current event to the cross section.
sigmaTotal += weightNLO*normhepmc;
sigmaTemp += weightNLO*normhepmc;
errorTotal += pow2(weightNLO*normhepmc);
// Report cross section to hepmc.
toHepMC.setXSec( sigmaTotal*1e9, pythia.info.sigmaErr()*1e9 );
// Write the HepMC event to file.
toHepMC.writeEvent();
} // end loop over events to generate
// print cross section, errors
pythia.stat();
// Save sample cross section for output.
sampleXSsubtTree.push_back(sigmaTemp);
sigmaTemp = 0.;
// Restart with ME of a reduced the number of jets
if( njetcounterCT > 1 )
njetcounterCT--;
else
break;
}
// Print cross section information.
cout << endl << endl;
cout << " *---------------------------------------------------*" << endl;
cout << " | |" << endl;
cout << " | Sample cross sections after NL3 merging |" << endl;
cout << " | |" << endl;
cout << " | Leading order cross sections (mb): |" << endl;
for (int i = 0; i < int(sampleXStree.size()); ++i)
cout << " | " << sampleXStree.size()-1-i << "-jet: "
<< setw(17) << scientific << setprecision(6)
<< sampleXStree[i] << " |" << endl;
cout << " | |" << endl;
cout << " | NLO order cross sections (mb): |" << endl;
for (int i = 0; i < int(sampleXSvirt.size()); ++i)
cout << " | " << sampleXSvirt.size()-1-i << "-jet: "
<< setw(17) << scientific << setprecision(6)
<< sampleXSvirt[i] << " |" << endl;
cout << " | |" << endl;
cout << " | Leading-order subtractive cross sections (mb): |" << endl;
for (int i = 0; i < int(sampleXSsubtTree.size()); ++i)
cout << " | " << sampleXSsubtTree.size()-1-i+1 << "-jet: "
<< setw(17) << scientific << setprecision(6)
<< sampleXSsubtTree[i] << " |" << endl;
cout << " | |" << endl;
cout << " |---------------------------------------------------|" << endl;
cout << " |---------------------------------------------------|" << endl;
cout << " | Inclusive cross sections: |" << endl;
cout << " | |" << endl;
cout << " | NL3 merged inclusive cross section: |" << endl;
cout << " | " << setw(17) << scientific << setprecision(6)
<< sigmaTotal << " +- " << setw(17) << sqrt(errorTotal) << " mb "
<< " |" << endl;
cout << " | |" << endl;
cout << " | NLO inclusive cross section: |" << endl;
cout << " | " << setw(17) << scientific << setprecision(6)
<< xsecNLO.back() << " mb |" << endl;
cout << " | |" << endl;
cout << " | LO inclusive cross section: |" << endl;
cout << " | " << setw(17) << scientific << setprecision(6)
<< xsecLO.back() << " mb |" << endl;
cout << " | |" << endl;
cout << " *---------------------------------------------------*" << endl;
cout << endl << endl;
// Done
return 0;
}