gibuu is hosted by Hepforge, IPPP Durham
GiBUU

Changes between Version 9 and Version 10 of impatient


Ignore:
Timestamp:
Oct 4, 2024, 5:58:53 PM (7 months ago)
Author:
gallmei
Comment:

adding info about HepMC3 library for future version v2024

Legend:

Unmodified
Added
Removed
Modified
  • impatient

    v9 v10  
    9494}}}
    9595
     96== Installation with HepMC3 output (future v2024) ==
    9697
     98If 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{{{
     102mkdir GiBUU; cd GiBUU
     103}}}
     104
     105 2. download and unpacking:
     106{{{
     107wget --content-disposition https://gibuu.hepforge.org/downloads?f=release2024.tar.gz
     108wget --content-disposition https://gibuu.hepforge.org/downloads?f=buuinput2024.tar.gz
     109wget --content-disposition https://gibuu.hepforge.org/downloads?f=libraries2024_HEPMC3.tar.gz
     110
     111tar -xzvf buuinput2024.tar.gz
     112tar -xzvf release2024.tar.gz
     113tar -xzvf libraries2024_HEPMC3.tar.gz
     114}}}
     115
     116 3. change into release directory:
     117{{{
     118cd release
     119}}}
     120
     121 4. a)  compile !HEPMC3event library:
     122{{{
     123make buildHEPMC3event
     124}}}
     125
     126 4. b) compile GiBUU:
     127{{{
     128make 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