@@ -21,7 +21,7 @@ The specific modules for Run 5 are enabled by passing their their IDs to the `-m
2121A list of the available DetIDs is reproted in the table below:
2222
2323| Detector ID | Detector description |
24- | ------------- | ---------------------------------- |
24+ | ----------- | -------------------------------- |
2525| ` A3IP ` | Beam pipe |
2626| ` TRK ` | Barrel Tracker |
2727| ` TF3 ` | Time Of Flight detectors |
@@ -49,7 +49,7 @@ export ALICE3_MAGFIELD_MACRO=../ALICE3Field.C
4949
5050An exampling macro for a custom magnetic field is stored in ` Detectors/Upgrades/macros/ALICE3Field.C ` .
5151
52- ### Run a simple simulation for run 5
52+ ### Run a simple simulation for ALICE 3
5353The simplest command to be run to test the simulation is working is:
5454
5555``` bash
@@ -61,6 +61,26 @@ To enable a specific set of modules, e.g. the beampipe and the TOFs one can spec
6161``` bash
6262o2-sim-run5 -n 10 -m A3IP TF3
6363```
64+
65+ #### Specific detector setups
66+
67+
68+
69+ Configurables for various sub-detectors are presented in the following Table:
70+
71+ | Subsystem | Available options | Comments |
72+ | ------------------ | ------------------------------------------------------- | ---------------------------------------------------------------- |
73+ | ` TRKBase.layoutVD ` | ` kIRIS4 ` (default), ` kIRISFullCyl ` , ` kIRIS5 ` , ` kIRIS4a ` | [ link to definitions] ( ./TRK/base/include/TRKBase/TRKBaseParam.h ) |
74+ | ` TRKBase.layoutML ` | ` kCylinder ` , ` kTurboStaves ` (default), ` kStaggered ` | |
75+ | ` TRKBase.layoutOT ` | ` kCylinder ` , ` kTurboStaves ` , ` kStaggered ` (default) | |
76+
77+ For example, a geometry with fully cylindrical tracker barrel (for all layers in VD, ML and OT) can be obtained by
78+ ``` bash
79+ o2-sim-serial-run5 -n 1 -g pythia8hi -m A3IP TRK FT3 TF3 \
80+ --configKeyValues " TRKBase.layoutVD=kIRISFullCyl;TRKBase.layoutML=kCylinder;TRKBase.layoutOL=kCylinder"
81+ ```
82+
83+
6484### Output of the simulation
6585The simulation will produce a ` o2sim_Hits<DetID>.root ` file with a tree with the hits related to that detector.
6686Currently, hits are produced for: ` TRK ` , ` FT3 ` , and ` TF3 ` .
0 commit comments