Project
Loading...
Searching...
No Matches
GPUParam.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
14
15#ifndef GPUPARAM_H
16#define GPUPARAM_H
17
18#include "GPUCommonDef.h"
19#include "GPUCommonMath.h"
20#include "GPUDef.h"
21#include "GPUSettings.h"
23
24#if !defined(GPUCA_GPUCODE)
25namespace o2::base
26{
27template <typename>
28class PropagatorImpl;
29using Propagator = PropagatorImpl<float>;
30} // namespace o2::base
31#endif
32
33namespace o2::gpu
34{
35struct GPUSettingsRec;
36struct GPUSettingsGTP;
37struct GPURecoStepConfiguration;
38
40 float Alpha; // sector angle
41 float CosAlpha, SinAlpha; // sign and cosine of the sector angle
42 float AngleMin, AngleMax; // minimal and maximal angle
43 float ZMin, ZMax; // sector Z range
44};
45
46namespace internal
47{
48template <class T, class S>
49struct GPUParam_t {
50 T rec;
52
53 float bzkG;
54 float bzCLight;
56
60
61 GPUTPCGMPolynomialField polynomialField; // Polynomial approx. of magnetic field for TPC GM
62 const uint32_t* occupancyMap; // Ptr to TPC occupancy map
63 uint32_t occupancyTotal; // Total occupancy in the TPC (nCl / nHbf)
64
66
67 protected:
68#ifdef GPUCA_TPC_GEOMETRY_O2
69 float ParamErrors[2][4][4]; // cluster error parameterization used during seeding and fit
70#else
71 float ParamErrorsSeeding0[2][3][4]; // cluster error parameterization used during seeding
72 float ParamS0Par[2][3][6]; // cluster error parameterization used during track fit
73#endif
74};
75} // namespace internal
76
77struct GPUParam : public internal::GPUParam_t<GPUSettingsRec, GPUSettingsParam> {
78
79#ifndef GPUCA_GPUCODE
80 void SetDefaults(float solenoidBz);
81 void SetDefaults(const GPUSettingsGRP* g, const GPUSettingsRec* r = nullptr, const GPUSettingsProcessing* p = nullptr, const GPURecoStepConfiguration* w = nullptr);
82 void UpdateSettings(const GPUSettingsGRP* g, const GPUSettingsProcessing* p = nullptr, const GPURecoStepConfiguration* w = nullptr, const GPUSettingsRecDynamic* d = nullptr);
83 void UpdateBzOnly(float newSolenoidBz);
84 void UpdateRun3ClusterErrors(const float* yErrorParam, const float* zErrorParam);
85#endif
86
87 GPUd() float Alpha(int32_t iSector) const
88 {
89 if (iSector >= GPUCA_NSECTORS / 2) {
90 iSector -= GPUCA_NSECTORS / 2;
91 }
92 if (iSector >= GPUCA_NSECTORS / 4) {
93 iSector -= GPUCA_NSECTORS / 2;
94 }
95 return 0.174533f + par.dAlpha * iSector;
96 }
97 GPUd() float GetClusterErrorSeeding(int32_t yz, int32_t type, float zDiff, float angle2, float unscaledMult) const;
98 GPUd() void GetClusterErrorsSeeding2(uint8_t sector, int32_t row, float z, float sinPhi, float DzDs, float time, float& ErrY2, float& ErrZ2) const;
99 GPUd() float GetSystematicClusterErrorIFC2(float trackX, float trackY, float z, bool sideC) const;
100 GPUd() float GetSystematicClusterErrorC122(float trackX, float trackY, uint8_t sector) const;
101
102 GPUd() float GetClusterError2(int32_t yz, int32_t type, float zDiff, float angle2, float unscaledMult, float scaledAvgInvCharge, float scaledInvCharge) const;
103 GPUd() void GetClusterErrors2(uint8_t sector, int32_t row, float z, float sinPhi, float DzDs, float time, float avgInvCharge, float invCharge, float& ErrY2, float& ErrZ2) const;
104 GPUd() void UpdateClusterError2ByState(int16_t clusterState, float& ErrY2, float& ErrZ2) const;
105 GPUd() float GetUnscaledMult(float time) const;
106
107 GPUd() void Sector2Global(int32_t iSector, float x, float y, float z, float* X, float* Y, float* Z) const;
108 GPUd() void Global2Sector(int32_t iSector, float x, float y, float z, float* X, float* Y, float* Z) const;
109
110 GPUd() bool rejectEdgeClusterByY(float uncorrectedY, int32_t iRow, float trackSigmaY) const;
111};
112
113} // namespace o2::gpu
114
115#endif
#define GPUCA_NSECTORS
GLint GLenum GLint x
Definition glcorearb.h:403
GLint GLint GLsizei GLint GLenum GLenum type
Definition glcorearb.h:275
GLboolean GLboolean g
Definition glcorearb.h:1233
GLboolean r
Definition glcorearb.h:1233
GLubyte GLubyte GLubyte GLubyte w
Definition glcorearb.h:852
GLdouble GLdouble GLdouble z
Definition glcorearb.h:843
PropagatorF Propagator
Definition Propagator.h:182
int32_t float float sinPhi
Definition GPUParam.h:98
int32_t float float float unscaledMult
Definition GPUParam.h:102
int32_t float float float unscaledMult const
Definition GPUParam.h:97
GPUd() float Alpha(int32_t iSector) const
Definition GPUParam.h:87
int32_t float float float float scaledAvgInvCharge
Definition GPUParam.h:102
float float float float float * Y
Definition GPUParam.h:107
void SetDefaults(float solenoidBz)
Definition GPUParam.cxx:33
int32_t float float angle2
Definition GPUParam.h:97
int32_t float float float float float avgInvCharge
Definition GPUParam.h:103
int32_t float float float float float & ErrY2
Definition GPUParam.h:98
int32_t float zDiff
Definition GPUParam.h:97
void UpdateRun3ClusterErrors(const float *yErrorParam, const float *zErrorParam)
Definition GPUParam.cxx:173
void UpdateSettings(const GPUSettingsGRP *g, const GPUSettingsProcessing *p=nullptr, const GPURecoStepConfiguration *w=nullptr, const GPUSettingsRecDynamic *d=nullptr)
Definition GPUParam.cxx:121
int32_t float float float float float float invCharge
Definition GPUParam.h:103
float float float float * X
Definition GPUParam.h:107
int32_t float float float float time
Definition GPUParam.h:98
int32_t float float float DzDs
Definition GPUParam.h:98
void UpdateBzOnly(float newSolenoidBz)
Definition GPUParam.cxx:148
GPUParamSector SectorParam[GPUCA_NSECTORS]
Definition GPUParam.h:65
const uint32_t * occupancyMap
Definition GPUParam.h:62
float ParamS0Par[2][3][6]
Definition GPUParam.h:72
GPUTPCGMPolynomialField polynomialField
Definition GPUParam.h:61
float ParamErrorsSeeding0[2][3][4]
Definition GPUParam.h:71