Old Installation Guide V8.1
Contents
General Information about GATE
The GATE mailing list
You are encouraged to participate in the dialog and post your suggestion or even implementation on the Gate-users mailing list, the GATE mailing list for users. You can subscribe to the Gate-users mailing list, by registering to the GATE web site or directly using this link
If you have a question, it is very likely that it has been asked, answered, and stored in the archives.
These archives are public and are indexed by the usual search engines. By starting your Google search string with site:lists.opengatecollaboration.org
you'll get list of all matches of your search on the gate-users mailing list, e.g. site:lists.opengatecollaboration.org pencilbeam
.
The GATE project on GitHub
GATE project is now publicly available on GitHub. You can use this to:
- Check out the bleeding edge development version
- Report bugs by creating a new "issue"
- Contribute to Gate by changing the source code to fix bugs or implement new features:
- Get a (free) account on GitHub, if you do not have one already.
- Start by making a fork of the GATE public repository (click the "Fork" button in the upper right corner on the Gate main page on GitHub.
- Note that we use the
develop
branch to collect all the bleeding edge developments. In the future we may change this to <cdoe>master</code>, like in most other projects on GitHub. - Then clone your own fork:
git clone https://github.com/<YourAccountName>/Gate.git
to get the code on the computer that will use to develop and compile Gate. - Make a new branch, dedicated to the bugfix or new feature that want to implement in Gate. You can either create the branch first on GitHub and then
git pull
it to your clone, or create it directly in your clone andgit push
it later. Make sure to branch is based on thedevelop
branch. Note that after creating your branch you also need to check it out. - With
git branch -l
you can check which branches are available in your clone and which one is currently checked out. - Now: implement your bugfix or your new feature and commit your changes to your new branch. It's better to make many small commits than a single big one. Use
git push
to upload your commits to (your fork on) GitHub. This facilitates developing on multiple machines and also avoids loss of time and effort in the unfortunate event of a hardware failure. - Once you are convinced that your code is OK, make sure it's all pushed to your fork on GitHub. Then:
- Create a pull-request from the branch on your Gate repository to the official Gate repository
- Provide an example that tests your new feature
- If you implemented a new feature, have the associated documentation ready
- Inform these three people from the collaboration (S. Jan, D.Sarrut and D.J. Boersma) who will then get in touch with you to integrate your changes in the official repository.
- For your next bugfix or new feature you do not need to make a new fork, you can use the existing one. But before doing any new work you should make sure to synchronize the
develop
branch in your fork with the "upstream" (main)develop
branch:- Check your "remote repositories" with
git remote -v
- The "origin" repository should be your own fork on GitHub,
https://github.com/<YourAccountName>/Gate
. - The "upstream" repository should be the main Gate one, that is
https://github.com/OpenGATE/Gate
. - If your clone does not yet have an "upstream", then add it with
git remote add upstream https://github.com/OpenGATE/Gate
. - Run
git status
to make sure that you checked out thedevelop
branch, andgit pull
to make sure that it is in sync with your fork on GitHub and that there no uncommitted edits. - Then run
git fetch upstream
, followed bygit merge upstream/develop
. - Now you are ready to create new branches for new bugfixes and features.
- Check your "remote repositories" with
- For more detailed references, recipes, and tutorials on git: please check the web. When copypasting commands, remember that in Gate the "develop" branch currently plays the role of the "master" branch. Our "master" branch is used to track the releases. You will not find the latest bleeding edge code on it. We may change this policy in the near future, to be more conforming to the predominant conventions.
Installing GATE on Linux
This section describes the installation procedure of GATE. This includes three steps:
- Install Geant4
- Install ROOT
- Install GATE
This section starts with a brief overview of the recommended configurations, followed by a short introduction to the installation of Geant4, and then explains the installation of GATE itself on Linux.
It should be highlighted that features depending on external components (libraries or packages) may only be activated if the corresponding component is installed. It is the user's responsibility to check that these components are installed before activating a feature. Except for Geant4, which is closely related to GATE, the user should refer to the Installation Guide of the external components.
In addition, you should also install any Geant4 helper you wish to use, especially OpenGL if required, before installing Geant4 itself. You can either download the source codes and compile the libraries or download precompiled packages which are available for a number of platform-compiler. If you choose to or have to compile the packages, you will need:
- a C++ compiler (new enough to compile code with the C++11 standard)
- the GNU version of make
- CMAKE tool (3.3 or newer)
The ROOT data analysis package may also be needed for post-processing or for using the GATE online plotter (enabling the visualization of various simulation parameters and results in real time). ROOT is available for many platforms and a variety of precompiled packages can be found on the ROOT homepage.
The LMF and ecat7 packages are also provided on the GATE website. They offer the possibility to have different output formats for your simulations.
Package Requirements
Compiling software usually requires certain system libraries and compilation tools. Furthermore, GATE and Geant4 have various package requirements which have to be met BEFORE installing or compiling. Currently lists have been created for Ubuntu 10.04, Ubuntu 11.x, Fedora 14 and Scientifix Linux 6. Visit the Package Requirements page for detailed package lists.
Installing with MacPorts on OS X
GATE can be installed on Mac OS X by following the previous installation instruction on Linux. An alternative way is to install Gate via MacPorts (http://www.macports.org/) with
sudo port install gate
Apart from the `Gate` command this also installs a standalone app:
/Applications/MacPorts/Gate.app
(Thanks Mojca Miklavec for this contribution).
GATE compilation and installation
Recommended configuration
For the 8.1 release, the recommended configuration is the following:
- Geant4 10.4 (available in http://geant4.web.cern.ch/geant4/support/download.shtml).
Note that the 8.1 release remains backward compatible with Geant4 10.3 patch 03
- The CLHEP embedded from Geant4 is available (flag OFF by default). Users can also use the external CLHEP (version 2.3.4.3)
- gcc 4.8 to 7.3
- CMake minimal version: 3.3 (with SSL support)
- CUDA tools to use the GPU modules (available from the NVidia website). Note that the NVCC compiler in version 9.1 seems to have a bug that causes it to crash with a segfault on the current Gate code. According to a report on the gate-user mailing list, CUDA 9.0 works fine with Gate.
Compilation instructions
Validating Installation
If you are able to run Gate after installation by typing
Gate
it is an indication that your installation was successful.
However, before you do any research, it is highly recommended that you validate your installation.
See Validating Installation for benchmarks and further information.
Other Web Sites
G4 Agostinelli S et al 2003 GEANT4 - a simulation toolkit Institute Nucl. Instr. Meth. A506 250-303 GEANT4 website: http://geant4.web.cern.ch
CLHEP - A Class Library for High Energy Physics: http://proj-clhep.web.cern.ch
OGL OpenGL Homepage: http://www.opengl.org/
DAWN release: http://geant4.kek.jp/
ROOT Brun R, Rademakers F 1997 ROOT - An object oriented data analysis framework Institute Nucl. Instr. Meth. A389 81-86 ROOT website: http://root.cern.ch
libxml website: http://www.libxml.org