Project
Loading...
Searching...
No Matches
Constants.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.
15
16#ifndef TRACKINGITSU_INCLUDE_CONSTANTS_H_
17#define TRACKINGITSU_INCLUDE_CONSTANTS_H_
18
20
22{
23constexpr float MB = 1024.f * 1024.f;
24constexpr float GB = 1024.f * 1024.f * 1024.f;
25constexpr bool DoTimeBenchmarks = true;
26constexpr bool SaveTimeBenchmarks = false;
27
28constexpr float Tolerance{1e-12}; // numerical tolerance
29constexpr int ClustersPerCell{3};
30constexpr int UnusedIndex{-1};
31constexpr float Resolution{0.0005f};
32constexpr float Radl = 9.36f; // Radiation length of Si [cm]
33constexpr float Rho = 2.33f; // Density of Si [g/cm^3]
34} // namespace o2::its::constants
35
36#endif /* TRACKINGITSU_INCLUDE_CONSTANTS_H_ */
constexpr int UnusedIndex
Definition Constants.h:30
constexpr float Radl
Definition Constants.h:32
constexpr int ClustersPerCell
Definition Constants.h:29
constexpr float Resolution
Definition Constants.h:31
constexpr float Tolerance
Definition Constants.h:28
constexpr float GB
Definition Constants.h:24
constexpr float Rho
Definition Constants.h:33
constexpr float MB
Definition Constants.h:23
constexpr bool DoTimeBenchmarks
Definition Constants.h:25
constexpr bool SaveTimeBenchmarks
Definition Constants.h:26