| 3 | If you do not bother about the details, maybe the following instructions are enough for you to get GiBUU running. |
| 4 | |
| 5 | At the moment, only downloading of tar-balls is possible. |
| 6 | |
| 7 | == Default Installation == |
| 8 | |
| 9 | 1. generate base directory: |
| 10 | {{{ |
| 11 | mkdir GiBUU; cd GiBUU |
| 12 | }}} |
| 13 | |
| 14 | 2. download and unpacking: |
| 15 | {{{ |
| 16 | ... |
| 17 | |
| 18 | tar -xzvf buuinput2019.tar.gz |
| 19 | tar -xzvf release2019.tar.gz |
| 20 | }}} |
| 21 | |
| 22 | 3. change into release directory: |
| 23 | {{{ |
| 24 | cd release |
| 25 | }}} |
| 26 | |
| 27 | 4. compile GiBUU: |
| 28 | {{{ |
| 29 | make |
| 30 | }}} |
| 31 | |
| 32 | 5. run GiBUU: |
| 33 | {{{ |
| 34 | ... .../GiBUU.x < your_Jobcard |
| 35 | }}} |
| 36 | |
| 37 | == Installation with ROOT output == |
| 38 | |
| 39 | If you want to use the possibility to get event output in ROOT format, the installation has to be slightly modified: |
| 40 | |
| 41 | 1. generate base directory: |
| 42 | {{{ |
| 43 | mkdir GiBUU; cd GiBUU |
| 44 | }}} |
| 45 | |
| 46 | 2. download and unpacking: |
| 47 | {{{ |
| 48 | ... |
| 49 | |
| 50 | tar -xzvf buuinput2019.tar.gz |
| 51 | tar -xzvf release2019.tar.gz |
| 52 | tar -xzvf libraries2018_RootTuple.tar.gz |
| 53 | }}} |
| 54 | |
| 55 | 3. change into release directory: |
| 56 | {{{ |
| 57 | cd release |
| 58 | }}} |
| 59 | |
| 60 | 4. a) compile !RootTuple library: |
| 61 | {{{ |
| 62 | make buildRootTuple |
| 63 | }}} |
| 64 | |
| 65 | 4. b) compile GiBUU: |
| 66 | {{{ |
| 67 | make withROOT=1 |
| 68 | }}} |
| 69 | |
| 70 | 5. run GiBUU: |
| 71 | {{{ |
| 72 | ... .../GiBUU.x < your_Jobcard |
| 73 | }}} |
| 74 | ensure to have something like the following in 'your_Jobcard': |
| 75 | {{{ |
| 76 | ! file: ./analysis/EventOutputAnalysis.f90 |
| 77 | &EventOutput |
| 78 | WritePerturbativeParticles = T |
| 79 | EventFormat = 4 ! 1=LesHouches, 4=ROOT |
| 80 | / |
| 81 | }}} |
| 82 | |
| 83 | |