-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathREADME
More file actions
32 lines (26 loc) · 1.07 KB
/
Copy pathREADME
File metadata and controls
32 lines (26 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
The package at a glance
-----------------------
Pluto is a simulation framework for heavy ion and hadronic-physics
reactions. It provides a library of C++ classes such as particles,
reactions but also interface classes. The reactions can be set up with
a few lines of ROOT macro code without detailed knowledge of
programming. Different physics models can be selected via a manager
class, while experts can use various template classes (see ./macros)
for defining and attaching their own models. A build-in scripting
language (see ./doc/script_manual.pdf) which was in particular designed
for this purpose can handle in-line histogram filling, event filtering
and particle modifications. The input and output file format can be
adjusted which allows for a smooth inclusion in 3rd party code.
Installation
____________
Out-of-source installation
--------------------------
export PLUTO_DIR=/path/to/pluto_installation
mkdir builddir && cd builddir
cmake .. -DCMAKE_INSTALL_PREFIX=$PLUTO_DIR
make install
In-source installation
----------------------
mkdir builddir && cd builddir
cmake ..
make