User Tools

Site Tools


software:install

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
software:install [2020/05/12 13:02] himusersoftware:install [2023/02/10 15:56] (current) himuser
Line 12: Line 12:
   libglu1-mesa-dev libgl1-mesa-dev \   libglu1-mesa-dev libgl1-mesa-dev \
   libncurses5-dev curl libcurl4-openssl-dev bzip2 libbz2-dev gzip unzip tar \   libncurses5-dev curl libcurl4-openssl-dev bzip2 libbz2-dev gzip unzip tar \
-  subversion git xutils-dev flex bison lsb-release python-dev \+  subversion git xutils-dev flex bison lsb-release python3-dev \
   libc6-dev-i386 libxml2-dev wget libssl-dev libkrb5-dev \   libc6-dev-i386 libxml2-dev wget libssl-dev libkrb5-dev \
   automake autoconf libtool   automake autoconf libtool
 +</code>
 +<code>
 +sudo apt-get install libxi-dev
 </code> </code>
  
Line 28: Line 31:
 Checking connectivity... done. Checking connectivity... done.
  
 +</code>
 +
 +== Switch to the May18p1 tag: ==
 +<code>
 $ cd fairsoft_may18 $ cd fairsoft_may18
 +$ git checkout tags/may18p1
 </code> </code>
  
  
-**Launch the ./configure.sh script**\\+**Launch the ./configure.sh script((If using fairsoft may18p1, since 2021 in the package_versions.sh script two URLs need to be changed, line 25 and line 34. 
 + 
 +<code> 
 +#export PYTHIA8_LOCATION="http://home.thep.lu.se/~torbjorn/pythia8/" 
 +export PYTHIA8_LOCATION="https://pythia.org/download/pythia82/" 
 + 
 +#export GEANT4_LOCATION="http://geant4.cern.ch/support/source/" 
 +export GEANT4_LOCATION="http://cern.ch/geant4-data/releases/" 
 +</code> 
 +))**\\
 and answer to the questions as the following: and answer to the questions as the following:
   - GCC (Linux)   - GCC (Linux)
Line 39: Line 56:
   - Would you like to install Simulation engines and event generators? - Yes   - Would you like to install Simulation engines and event generators? - Yes
   - Would you like to install the additionally available data files the GEANT4 package? - Internet   - Would you like to install the additionally available data files the GEANT4 package? - Internet
-  - Would you like to install the python bindings for Geant4 and Root? - No+  - Would you like to install the python bindings for Geant4 and Root? - Yes
   - Please define a directory for the installation of the external packages. - ''/home/username/fairsoft_may18/build''   - Please define a directory for the installation of the external packages. - ''/home/username/fairsoft_may18/build''
   - Is /home/username/fairsoft_may18/build the correct path? -Yes   - Is /home/username/fairsoft_may18/build the correct path? -Yes
Line 87: Line 104:
  
  
 +=== Execute geant4 simulation ===
  
 +<code>
 +geant4$ primag4sim primag4sim.conf
 +</code>
 +
 +
 +
 +
 +=== Rootmacros ===
 +In order to execute rootmacros, the include paths need to be set.\\
 +This can be done automatically with a ''rootlogon.C'' file.\\
 +Create the rootlogon.C file:
 +<code>
 +$ cd ~/
 +$ mkdir .rootlogon
 +$ geany .rootlogon/rootlogon.C
 +</code>
 +
 +Enter the following lines to your rootlogon.C file:
 +<code>
 +// This is the file rootlogon.C                                                 
 +{
 +  printf("\n Beginning new ROOT session\n");
 +
 +  gROOT->ProcessLine(".include your_path/primasoft/geant4");
 +  gSystem->Load("<geant4_workdir>/tmp/Linux-g++/primag4sim/libprimadict.so");                              
 +}
 +</code>
 +
 +Here, ''your_path'' is the path to the primasoft git repository and the ''<geant4_workdir>'' can be found out by ''$ echo $G4WORKDIR''.\\
 +
 +Now root needs to know where to find the rootlogon.C file. Therefore in ''$FAIRSOFT_BUILD_DIR'/share/root/etc/system.rootrc' change the line:
 +
 +<code>
 +Rint.Logon:    rootlogon.C
 +</code>
 +
 +to:
 +
 +<code>
 +Rint.Logon:    ~/.rootlogon/rootlogon.C
 +</code>
 +
 +
 +Now you can execute the rootmacro:
 +<code>
 +/geant4$ root -l rootmacros/test.C+
 +</code>
software/install.1589288532.txt.gz · Last modified: 2022/01/14 18:44 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki