/usr/share/pythia8-examples/examples/main85.cc is in pythia8-examples 8.1.80-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 | // main85.cc is a part of the PYTHIA event generator.
// Copyright (C) 2011 Torbjorn Sjostrand.
// PYTHIA is licenced under the GNU GPL version 2, see COPYING for details.
// Please respect the MCnet Guidelines, see GUIDELINES for details.
// This program is written by Stefan Prestel.
// It illustrates how to do CKKW-L merging,
// see the Matrix Element Merging page in the online manual.
#include "Pythia8/Pythia.h"
#include "Pythia8/Pythia8ToHepMC.h"
#include "HepMC/GenEvent.h"
#include "HepMC/IO_GenEvent.h"
// Following line to be used with HepMC 2.04 onwards.
#include "HepMC/Units.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'"
<< " identifier" << endl
<< " 3. Output hepmc file name" << endl
<< " Program stopped. " << endl;
return 1;
}
Pythia pythia;
// Input parameters:
pythia.readFile(argv[1]);
// Interface for conversion from Pythia8::Event to HepMC one.
HepMC::Pythia8ToHepMC ToHepMC;
// Specify file where HepMC events will be stored.
HepMC::IO_GenEvent ascii_io(argv[3], std::ios::out);
// 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" 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");
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// 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);
int njetcounterLO = nMaxLO;
string iPathTree = iPath + "_tree";
// Save estimates in vectors.
vector<double> xsecLO;
vector<double> nAcceptLO;
cout << endl << endl << endl;
cout << "Start estimating ckkwl tree level cross section" << endl;
while(njetcounterLO >= 0) {
// From njetcounter, choose LHE file
stringstream in;
in << "_" << njetcounterLO << ".lhe";
#ifdef GZIPSUPPORT
if(access( (iPathTree+in.str()+".gz").c_str(), F_OK) != -1) in << ".gz";
#endif
string LHEfile = iPathTree + in.str();
LHAupLHEF lhareader((char*)(LHEfile).c_str());
pythia.settings.mode("Merging:nRequested", njetcounterLO);
pythia.settings.word("Beams:LHEF", LHEfile);
pythia.init(&lhareader);
// 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());
nAcceptLO.push_back(pythia.info.nAccepted());
// Restart with ME of a reduced the number of jets
if( njetcounterLO > 0 )
njetcounterLO--;
else
break;
} // end loop over different jet multiplicities
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// 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;
// Cross section an error.
double sigmaTotal = 0.;
double errorTotal = 0.;
int sizeLO = int(xsecLO.size());
njetcounterLO = nMaxLO;
iPathTree = iPath + "_tree";
while(njetcounterLO >= 0){
// From njetcounter, choose LHE file
stringstream in;
in << "_" << njetcounterLO << ".lhe";
#ifdef GZIPSUPPORT
if(access( (iPathTree+in.str()+".gz").c_str(), F_OK) != -1) in << ".gz";
#endif
string LHEfile = iPathTree + in.str();
LHAupLHEF lhareader((char*)(LHEfile).c_str());
cout << endl << endl << endl
<< "Start tree level treatment for " << njetcounterLO << " jets"
<< endl;
pythia.settings.mode("Merging:nRequested", njetcounterLO);
pythia.settings.word("Beams:LHEF", LHEfile);
pythia.init(&lhareader);
// 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 weight = pythia.info.mergingWeight();
double evtweight = pythia.info.weight();
weight *= evtweight;
// Do not print zero-weight events.
if ( weight == 0. ) continue;
// Construct new empty HepMC event.
HepMC::GenEvent* hepmcevt = new HepMC::GenEvent();
// Get correct cross section from previous estimate.
double normhepmc = xsecLO[iNow] / nAcceptLO[iNow];
// Set event weight
hepmcevt->weights().push_back(weight*normhepmc);
// Fill HepMC event
ToHepMC.fill_next_event( pythia, hepmcevt );
// Add the weight of the current event to the cross section.
sigmaTotal += weight*normhepmc;
sigmaTemp += weight*normhepmc;
errorTotal += pow2(weight*normhepmc);
// Report cross section to hepmc
HepMC::GenCrossSection xsec;
xsec.set_cross_section( sigmaTotal*1e9, pythia.info.sigmaErr()*1e9 );
hepmcevt->set_cross_section( xsec );
// Write the HepMC event to file. Done with it.
ascii_io << hepmcevt;
delete hepmcevt;
} // 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;
}
// Print cross section information.
cout << endl << endl;
cout << " *---------------------------------------------------*" << endl;
cout << " | |" << endl;
cout << " | Sample cross sections after CKKW-L 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 << " |---------------------------------------------------|" << endl;
cout << " |---------------------------------------------------|" << endl;
cout << " | Inclusive cross sections: |" << endl;
cout << " | |" << endl;
cout << " | CKKW-L merged inclusive cross section: |" << endl;
cout << " | " << setw(17) << scientific << setprecision(6)
<< sigmaTotal << " +- " << setw(17) << sqrt(errorTotal) << " 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;
}
|