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
19#ifndef GPUCA_GPUCODE_DEVICE
20#include <climits>
21#include <vector>
22#endif
23
26
27#include "GPUCommonMath.h"
28#include "GPUCommonDef.h"
29#include "GPUCommonArray.h"
30
31namespace o2
32{
33namespace its
34{
35
36namespace constants
37{
38constexpr float MB = 1024.f * 1024.f;
39constexpr float GB = 1024.f * 1024.f * 1024.f;
40constexpr bool DoTimeBenchmarks = true;
41constexpr bool SaveTimeBenchmarks = false;
42
43namespace math
44{
45constexpr float Pi{3.14159265359f};
46constexpr float TwoPi{2.0f * Pi};
47constexpr float FloatMinThreshold{1e-20f};
48} // namespace math
49
50namespace its
51{
52constexpr int LayersNumberVertexer{3};
53constexpr int ClustersPerCell{3};
54constexpr int UnusedIndex{-1};
55constexpr float Resolution{0.0005f};
56
57GPUhdi() constexpr o2::gpu::gpustd::array<float, 3> VertexerHistogramVolume()
58{
59 return o2::gpu::gpustd::array<float, 3>{{1.98, 1.98, 40.f}};
60}
61} // namespace its
62
63namespace its2
64{
65constexpr int LayersNumber{7};
66constexpr int TrackletsPerRoad{LayersNumber - 1};
67constexpr int CellsPerRoad{LayersNumber - 2};
68
69GPUhdi() constexpr o2::gpu::gpustd::array<float, LayersNumber> LayersZCoordinate()
70{
71 constexpr double s = 1.; // safety margin
72 return o2::gpu::gpustd::array<float, LayersNumber>{16.333f + s, 16.333f + s, 16.333f + s, 42.140f + s, 42.140f + s, 73.745f + s, 73.745f + s};
73}
74
75GPUhdi() constexpr o2::gpu::gpustd::array<float, LayersNumber> LayersRCoordinate()
76{
77 return o2::gpu::gpustd::array<float, LayersNumber>{{2.33959f, 3.14076f, 3.91924f, 19.6213f, 24.5597f, 34.388f, 39.3329f}};
78}
79
80constexpr int ZBins{256};
81constexpr int PhiBins{128};
83GPUhdi() constexpr o2::gpu::gpustd::array<float, LayersNumber> InverseZBinSize()
84{
85 constexpr auto zSize = LayersZCoordinate();
86 return o2::gpu::gpustd::array<float, LayersNumber>{0.5f * ZBins / (zSize[0]), 0.5f * ZBins / (zSize[1]), 0.5f * ZBins / (zSize[2]),
87 0.5f * ZBins / (zSize[3]), 0.5f * ZBins / (zSize[4]), 0.5f * ZBins / (zSize[5]),
88 0.5f * ZBins / (zSize[6])};
89}
90
91GPUhdi() constexpr float getInverseZCoordinate(const int layerIndex)
92{
93 return 0.5f * ZBins / LayersZCoordinate()[layerIndex];
94}
95
96GPUhdi() int getZBinIndex(const int layerIndex, const float zCoordinate)
97{
98 return (zCoordinate + LayersZCoordinate()[layerIndex]) *
99 InverseZBinSize()[layerIndex];
100}
101
102GPUhdi() int getPhiBinIndex(const float currentPhi)
103{
104 return (currentPhi * InversePhiBinSize);
105}
106
107GPUhdi() int getBinIndex(const int zIndex, const int phiIndex)
108{
109 return o2::gpu::GPUCommonMath::Min(phiIndex * ZBins + zIndex,
110 ZBins * PhiBins - 1);
111}
112
113GPUhdi() constexpr int4 getEmptyBinsRect() { return int4{0, 0, 0, 0}; }
114
115} // namespace its2
116
117namespace pdgcodes
118{
119constexpr int PionCode{211};
120}
121} // namespace constants
122#ifndef GPUCA_GPUCODE_DEVICE
123typedef std::vector<std::vector<int>> index_table_t;
124#endif
125} // namespace its
126} // namespace o2
127
128#endif /* TRACKINGITSU_INCLUDE_CONSTANTS_H_ */
useful math constants
GLenum array
Definition glcorearb.h:4274
std::array< T, N > array
const float zCoordinate
Definition Constants.h:97
constexpr int PhiBins
Definition Constants.h:81
constexpr float InversePhiBinSize
Definition Constants.h:82
constexpr int TrackletsPerRoad
Definition Constants.h:66
constexpr int ZBins
Definition Constants.h:80
constexpr int CellsPerRoad
Definition Constants.h:67
GPUhdi() const expr o2
Definition Constants.h:69
constexpr int LayersNumber
Definition Constants.h:65
constexpr int LayersNumberVertexer
Definition Constants.h:52
constexpr int ClustersPerCell
Definition Constants.h:53
constexpr int UnusedIndex
Definition Constants.h:54
GPUhdi() const expr o2
Definition Constants.h:57
constexpr float Resolution
Definition Constants.h:55
constexpr float Pi
Definition Constants.h:45
constexpr float TwoPi
Definition Constants.h:46
constexpr float FloatMinThreshold
Definition Constants.h:47
constexpr float GB
Definition Constants.h:39
constexpr float MB
Definition Constants.h:38
constexpr bool DoTimeBenchmarks
Definition Constants.h:40
constexpr bool SaveTimeBenchmarks
Definition Constants.h:41
std::vector< std::vector< int > > index_table_t
Definition Constants.h:123
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...