IAP GITLAB

Skip to content
Snippets Groups Projects
README.md 5.4 KiB
Newer Older
ralfulrich's avatar
ralfulrich committed
# CORSIKA 8 Framework for Particle Cascades in Astroparticle Physics 
Ralf Ulrich's avatar
Ralf Ulrich committed

ralfulrich's avatar
ralfulrich committed
The purpose of CORSIKA is to simulate any particle cascades in
astroparticle physics or astrophysical context. A lot of emphasis is
put on modularity, flexibility, completeness, validation and
correctness. To boost computational efficiency different techniques
are provided, like thinning or cascade equations. The aim is that
CORSIKA remains the most comprehensive framework for simulating
particle cascades with stochastic and continuous processes.
Ralf Ulrich's avatar
Ralf Ulrich committed

The software makes extensive use of static design patterns and
compiler optimization. Thus, the most fundamental configuration
decision of the user must be performed at compile time. At run time
only specific model parameters can still be changed.

ralfulrich's avatar
ralfulrich committed
CORSIKA 8 is by default released under the GPLv3 license. See [license
ralfulrich's avatar
ralfulrich committed
file](https://gitlab.ikp.kit.edu/AirShowerPhysics/corsika/blob/master/LICENSE)
which is part of every release and the source code.

If you use, or want to refer to, CORSIKA 8 please cite ["Towards a Next
ralfulrich's avatar
ralfulrich committed
Generation of CORSIKA: A Framework for the Simulation of Particle
Cascades in Astroparticle Physics", Comput.Softw.Big Sci. 3 (2019)
2](https://doi.org/10.1007/s41781-018-0013-0). We kindly ask (and
ralfulrich's avatar
ralfulrich committed
require) any relevant improvement or addition to be offered or
contributed to the main CORSIKA 8 repository for the benefit of the
ralfulrich's avatar
ralfulrich committed
whole community.

When you plan to contribute to CORSIKA 8 check the guidelines outlined here:
ralfulrich's avatar
ralfulrich committed
[coding
guidelines](https://gitlab.ikp.kit.edu/AirShowerPhysics/corsika/blob/master/CONTRIBUTING.md). Code
that fails the review by the CORSIKA author group must be improved
before it can be merged in the official code base. After your code has
been accepted and merged you become a contributor of the CORSIKA 8
ralfulrich's avatar
ralfulrich committed
project (code author). 
ralfulrich's avatar
ralfulrich committed

IMPORTANT: Before you contribute, you need to read and agree to the
[collaboration
agreement](https://gitlab.ikp.kit.edu/AirShowerPhysics/corsika/blob/master/COLLABORATION_AGREEMENT.md). The
agreement can be discussed, and eventually improved.

We also want to point you to the [MCnet
guidelines](https://gitlab.ikp.kit.edu/AirShowerPhysics/corsika/blob/master/MCNET_GUIDELINES),
which are very useful also for us.


## Get in contact
ralfulrich's avatar
ralfulrich committed
  * Connect to https://gitlab.ikp.kit.edu register yourself and join the "Air Shower Physics" group
ralfulrich's avatar
ralfulrich committed
  * Connect to corsika-devel@lists.kit.edu (self-register at
    https://www.lists.kit.edu/sympa/subscribe/corsika-devel) to get in
    touch with the project
Ralf Ulrich's avatar
Ralf Ulrich committed

## Installation (from source)

### Prerequisites
Ralf Ulrich's avatar
Ralf Ulrich committed

ralfulrich's avatar
ralfulrich committed
CORSIKA 8 is tested regularly via gitlab-CI using recent gcc and clang
versions.  Additional software prerequisites: cmake, g++, git.
Furthermore, eigen3, boost, catch2, spdlog are shipped in the
ThirdParty directory, so an installation on the system is optional.
Also Pythia 8, CONEX and PROPOSAL are distributed in the ThirdParty
folder. You may also install those packages on your system and use
those; we test with Pythia version 8.235.
Ralf Ulrich's avatar
Ralf Ulrich committed
```
Ralf Ulrich's avatar
Ralf Ulrich committed
sudo apt install binutils gfortran make python3 cmake gcc g++ git libz-dev libspdlog-dev libeigen3-dev libboost-iostreams-dev
Ralf Ulrich's avatar
Ralf Ulrich committed
```
Ralf Ulrich's avatar
Ralf Ulrich committed

Furthermore these packages are also reqommended:
add ```gcc ssh-client less rsync libboost-dev```
Ralf Ulrich's avatar
Ralf Ulrich committed

Ralf Ulrich's avatar
Ralf Ulrich committed
If you work with FreeBSD, run:
```
Ralf Ulrich's avatar
Ralf Ulrich committed
pkg install git cmake python3 flang eigen
Ralf Ulrich's avatar
Ralf Ulrich committed
```
Ralf Ulrich's avatar
Ralf Ulrich committed
or add ```boost-libs``` if you want to use the system versions. 
Ralf Ulrich's avatar
Ralf Ulrich committed

Ralf Ulrich's avatar
Ralf Ulrich committed
### Compiling
Ralf Ulrich's avatar
Ralf Ulrich committed

Ralf Ulrich's avatar
Ralf Ulrich committed
Follow these steps to download and install CORSIKA 8, master development version
Ralf Ulrich's avatar
Ralf Ulrich committed
```
ralfulrich's avatar
ralfulrich committed
git clone --recursive https://gitlab.ikp.kit.edu/AirShowerPhysics/corsika.git
Ralf Ulrich's avatar
Ralf Ulrich committed
cd corsika
mkdir ../corsika-build
cd ../corsika-build
cmake ../corsika -DCMAKE_INSTALL_PREFIX=../corsika-install
make -j8
make install
```
Ralf Ulrich's avatar
Ralf Ulrich committed

Type `make test` to run the unit test suite.

## Installation (using docker containers)

There are docker containers prepared that bring all the environment and packages you need to run CORSIKA. See [docker hub](https://hub.docker.com/repository/docker/corsika/devel) for a complete overview. 

### Prerequisites

You only need docker, e.g. on Ubunut: `sudo apt-get install docker` and of course root access.

## Compiling

Follow these steps to download and install CORSIKA 8, master development version
```
git clone --recursive https://gitlab.ikp.kit.edu/AirShowerPhysics/corsika.git
cd corsika
sudo docker run -v $PWD:/corsika -it corsika/devel:clang-8 /bin/bash
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=../install
make -j8
make install
```

Type `make test` to run the unit test suite.

## Running, Examples

There are various examples in the folder `Documentation/Examples`. 

If you want to see how the first simple hadron cascade develops, 
ralfulrich's avatar
ralfulrich committed
see `Documentation/Examples/cascade_example.cc` for a starting point. 

Run the cascade_example with: 
```
cd ../corsika-install
share/examples/cascade_example
```

Visualize output (needs gnuplot installed): 
```
bash share/tools/plot_tracks.sh tracks.dat 
firefox tracks.dat.gif 
```
Ralf Ulrich's avatar
Ralf Ulrich committed
Or also consider the `vertical_EAS` example in the same directory, which can 
ralfulrich's avatar
ralfulrich committed
be configured with command line options. 


Hans Dembinski's avatar
Hans Dembinski committed
### Generating doxygen documentation

Ralf Ulrich's avatar
Ralf Ulrich committed
To generate the documentation, you need doxygen and graphviz. If you work with the docker corsika/devel containers this is already included. 
Otherwise, e.g. on Ubuntu 18.04, do:
Hans Dembinski's avatar
Hans Dembinski committed
```
sudo apt-get install doxygen graphviz
```
Switch to the corsika build directory and do
```
make doxygen
Hans Dembinski's avatar
Hans Dembinski committed
```
browse with firefox:
```
firefox ../corsika-install/share/doc/html/index.html
```
ralfulrich's avatar
ralfulrich committed