Changes between Version 1 and Version 2 of WorkBook/Pythia8
- Timestamp:
- Jun 4, 2015, 4:39:19 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WorkBook/Pythia8
v1 v2 3 3 4 4 First, you'll need a working [http://fastjet.fr/quickstart.html Pythia8] installation. 5 The environment variable {{{PYTHIA8}}} has to be defined.6 5 6 Second, define an environment variable for the path to your PYTHIA installation directory 7 8 {{{ 9 export PYTHIA8=path_to_PYTHIA8_installation 10 }}} 7 11 12 and you can then build the {{{DelphesPythia8}}} executable with the following command: 8 13 9 === Generate events with Pythia8 within Delphes=== 14 {{{ 15 make HAS_PYTHIA8=true DelphesPythia8 16 }}} 17 18 You can run a simple example for generating QCD Pythia8 events within Delphes: 19 20 {{{ 21 ./DelphesPythia8 cards/delphes_card_CMS.tcl examples/Pythia8/configNoLHE.cmnd delphes_nolhe.root 22 }}} 23 24 If you have your own Les Houches file (the path for the LHE is defined inside the *.cmnd file): 25 26 {{{ 27 ./DelphesPythia8 cards/delphes_card_CMS.tcl examples/Pythia8/configLHE.cmnd delphes_lhe.root 28 }}} 10 29 11 30 … … 13 32 14 33 15 Either way, you have to prepare a Pythia8 configuration file (usually defined with the *.cmnd extension). 34 16 35 17 36