| 98 | If you want to use the possibility to get event output in HepMC3 format via the HepMC3 C++ library, the installation has to be slightly modified: |
| 99 | |
| 100 | 1. generate base directory: |
| 101 | {{{ |
| 102 | mkdir GiBUU; cd GiBUU |
| 103 | }}} |
| 104 | |
| 105 | 2. download and unpacking: |
| 106 | {{{ |
| 107 | wget --content-disposition https://gibuu.hepforge.org/downloads?f=release2024.tar.gz |
| 108 | wget --content-disposition https://gibuu.hepforge.org/downloads?f=buuinput2024.tar.gz |
| 109 | wget --content-disposition https://gibuu.hepforge.org/downloads?f=libraries2024_HEPMC3.tar.gz |
| 110 | |
| 111 | tar -xzvf buuinput2024.tar.gz |
| 112 | tar -xzvf release2024.tar.gz |
| 113 | tar -xzvf libraries2024_HEPMC3.tar.gz |
| 114 | }}} |
| 115 | |
| 116 | 3. change into release directory: |
| 117 | {{{ |
| 118 | cd release |
| 119 | }}} |
| 120 | |
| 121 | 4. a) compile !HEPMC3event library: |
| 122 | {{{ |
| 123 | make buildHEPMC3event |
| 124 | }}} |
| 125 | |
| 126 | 4. b) compile GiBUU: |
| 127 | {{{ |
| 128 | make withHEPMC3=1 |
| 129 | }}} |
| 130 | |
| 131 | 5. run GiBUU: |
| 132 | {{{ |
| 133 | ./testRun/GiBUU.x < your_Jobcard |
| 134 | }}} |
| 135 | |
| 136 | ensure to have something like the following in 'your_Jobcard': |
| 137 | {{{ |
| 138 | ! file: ./analysis/EventOutputAnalysis.f90 |
| 139 | &EventOutput |
| 140 | WritePerturbativeParticles = T |
| 141 | EventFormat = 6 ! 1=LesHouches, 6=HepMC3 |
| 142 | / |
| 143 | }}} |
| 144 | |
| 145 | |