Project
Loading...
Searching...
No Matches
RICHBaseParam.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
12#ifndef O2_RICH_BASEPARAM_H
13#define O2_RICH_BASEPARAM_H
14
17
18namespace o2
19{
20namespace rich
21{
22struct RICHBaseParam : public o2::conf::ConfigurableParamHelper<RICHBaseParam> {
23 float zBaseSize = 18.6; // cm (18.4 in v3)
24 float rMax = 131.0; // cm (117.0 in v3)
25 float rMin = 104.0; // cm (90.0 in v3)
26 float radiatorThickness = 2.0; // cm
27 float detectorThickness = 0.2; // cm
28 float zRichLength = 700.0; // cm
29 int nRings = 11; // (25 in v3)
30 int nTiles = 44; // (36 in v3)
31 bool oddGeom = true; // (false in v3)
32
33 // FWD and BWD RICH
34 bool enableFWDRich = false;
35 bool enableBWDRich = false;
36
37 float rFWDMin = 13.7413f;
38 float rFWDMax = 103.947f;
39
40 // Aerogel:
41 float zAerogelMin = 375.f;
42 float zAerogelMax = 377.f;
43
44 // Argon:
45 float zArgonMin = 377.f;
46 float zArgonMax = 407.f;
47
48 // Detector:
49 float zSiliconMin = 407.f;
50 float zSiliconMax = 407.2f;
51
53};
54
55} // namespace rich
56} // end namespace o2
57
58#endif
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
O2ParamDef(RICHBaseParam, "RICHBase")