Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions Detectors/Upgrades/ALICE3/FT3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,25 @@

This is top page for the FT3 detector documentation.

## Specific detector setup


Configuration of the endcap disks can be done by setting values for the `FT3Base.layoutFT3` configurable,
the available options are presented in the following Table:

| Option | Comments |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------- |
| `kSegmented` (default) | Currently, only OT disks have realistic implementation, for ML - simple trapezoids |
| `kTrapezoidal` | Simple trapezoisal disks (in both ML and OT), with `FT3Base.nTrapezoidalSegments=32` |
| `kCylindrical` | Simplest possible disks as TGeoTubes (ML and OT), bad for ACTS (wrong digi due to polar coorinates on disk sides) |

[ [Link to definitions](./base/include/FT3Base/FT3BaseParam.h) ]

For example, a geometry with the endcaps-only can be obtained by
```bash
o2-sim-serial-run5 -n 1 -g pythia8hi -m FT3 \
--configKeyValues "FT3Base.layoutFT3=kTrapezoidal"
```

<!-- doxy
/doxy -->
15 changes: 15 additions & 0 deletions Detectors/Upgrades/ALICE3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,23 @@ Configurables for various sub-detectors are presented in the following Table:
| Available options | Link to options |
| ----------------- | ---------------------------------------------------------------- |
| TRK | [Link to TRK options](./TRK/README.md#specific-detector-setup) |
| FT3 | [Link to FT3 options](./FT3/README.md#specific-detector-setup) |
| TOF | [Link to TOF options](./IOTOF/README.md#specific-detector-setup) |

Example O2 command to create a geometry with **segmented layers for TRK (expect for VD), FT3 and TOF:**

```bash
o2-sim-serial-run5 -n 1 -g pythia8hi -m A3IP TRK FT3 TF3 \
--configKeyValues "TRKBase.layoutVD=kIRISFullCyl;TRKBase.layoutMLOT=kSegmented;FT3Base.layoutFT3=kSegmented;IOTOFBase.segmentedInnerTOF=true;IOTOFBase.segmentedOuterTOF=true"
```

Example O2 command to create a geometry with **simple (non-segmented) layers for TRK, FT3 and TOF**:

```bash
o2-sim-serial-run5 -n 1 -g pythia8hi -m A3IP TRK FT3 TF3 \
--configKeyValues "TRKBase.layoutVD=kIRISFullCyl;TRKBase.layoutMLOT=kCylindrical;FT3Base.layoutFT3=kTrapezoidal;IOTOFBase.segmentedInnerTOF=false;IOTOFBase.segmentedOuterTOF=false"
```

### Output of the simulation
The simulation will produce a `o2sim_Hits<DetID>.root` file with a tree with the hits related to that detector.

Expand Down
Loading