Project
Loading...
Searching...
No Matches
MatLayerCylSet.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 ALICEO2_MATLAYERCYLSET_H
16#define ALICEO2_MATLAYERCYLSET_H
17
18#include "GPUCommonDef.h"
20#include "DetectorsBase/Ray.h"
21#include "FlatObject.h"
22
23#ifndef GPUCA_ALIGPUCODE // this part is unvisible on GPU version
24#include "MathUtils/Cartesian.h"
25#endif // !GPUCA_ALIGPUCODE
26
27/**********************************************************************
28 * *
29 * Set of cylindrical material layer *
30 * *
31 **********************************************************************/
32namespace o2
33{
34namespace base
35{
36
38 float mRMin;
39 float mRMax;
40 float mZMax;
41 float mRMin2;
42 float mRMax2;
45 MatLayerCyl* mLayers; //[mNLayers] set of cylinrical layers
46 float* mR2Intervals; //[mNRIntervals+1] limits of layers
47 int* mInterval2LrID; //[mNRIntervals] mapping from r2 interval to layer ID
48};
49
51{
52
53 public:
54#ifndef GPUCA_GPUCODE
55 MatLayerCylSet() = default;
56 ~MatLayerCylSet() = default;
58#endif
59
60 GPUd() const MatLayerCylSetLayout* get() const { return reinterpret_cast<const MatLayerCylSetLayout*>(mFlatBufferPtr); }
61 GPUd() MatLayerCylSetLayout* get() { return reinterpret_cast<MatLayerCylSetLayout*>(mFlatBufferPtr); }
62
63 GPUd() int getNLayers() const { return get() ? get()->mNLayers : 0; }
64 GPUd() const MatLayerCyl& getLayer(int i) const { return get()->mLayers[i]; }
65
66 GPUd() bool getLayersRange(const Ray& ray, short& lmin, short& lmax) const;
67 GPUd() float getRMin() const { return get()->mRMin; }
68 GPUd() float getRMax() const { return get()->mRMax; }
69 GPUd() float getZMax() const { return get()->mZMax; }
70 GPUd() float getRMin2() const { return get()->mRMin2; }
71 GPUd() float getRMax2() const { return get()->mRMax2; }
72
73#ifndef GPUCA_ALIGPUCODE // this part is unvisible on GPU version
74 void print(bool data = false) const;
75 void addLayer(float rmin, float rmax, float zmax, float dz, float drphi);
76 void populateFromTGeo(int ntrPerCel = 10);
77 void optimizePhiSlices(float maxRelDiff = 0.05);
78
79 void dumpToTree(const std::string& outName = "matbudTree.root") const;
80 void writeToFile(const std::string& outFName = "matbud.root");
81 static MatLayerCylSet* loadFromFile(const std::string& inpFName = "matbud.root");
83
84 // initializes internal voxel lookup
85 void initLayerVoxelLU();
86
87 void flatten();
88
89 MatLayerCyl& getLayer(int i) { return get()->mLayers[i]; }
90 MatLayerCylSet* extractCopy(float rmin, float rmax, float tol = 1e-3) const;
91 void finalizeStructures();
92
93#endif // !GPUCA_ALIGPUCODE
94
95#ifndef GPUCA_ALIGPUCODE // this part is unvisible on GPU version
97 {
98 // get material budget traversed on the line between point0 and point1
99 return getMatBudget(point0.X(), point0.Y(), point0.Z(), point1.X(), point1.Y(), point1.Z());
100 }
101#endif // !GPUCA_ALIGPUCODE
102 GPUd() MatBudget getMatBudget(float x0, float y0, float z0, float x1, float y1, float z1) const;
103
104 GPUd() int searchSegment(float val, int low = -1, int high = -1) const;
105
107 GPUd() int searchLayerFast(float r2, int low = -1, int high = -1) const;
108
109#ifndef GPUCA_GPUCODE
110 //-----------------------------------------------------------
111 std::size_t estimateFlatBufferSize() const;
112 void moveBufferTo(char* newFlatBufferPtr);
113
114 void setActualBufferAddress(char* actualFlatBufferPtr);
115 void setFutureBufferAddress(char* futureFlatBufferPtr);
116 void cloneFromObject(const MatLayerCylSet& obj, char* newFlatBufferPtr);
119
120 void fixPointers(char* newPtr = nullptr);
121 void fixPointers(char* oldPtr, char* newPtr, bool newPtrValid = true);
122
124 static constexpr size_t getClassAlignmentBytes() { return 8; }
126 static constexpr size_t getBufferAlignmentBytes() { return 8; }
127#endif // !GPUCA_GPUCODE
128
129 static constexpr float LayerRMax = 500; // maximum value of R lookup (corresponds to last layer of MatLUT)
130 static constexpr float VoxelRDelta = 0.05; // voxel spacing for layer lookup; seems a natural choice - corresponding ~ to smallest spacing
131 static constexpr float InvVoxelRDelta = 1.f / VoxelRDelta;
132 static constexpr int NumVoxels = int(LayerRMax / VoxelRDelta);
133
134 uint16_t mLayerVoxelLU[2 * NumVoxels];
136
138};
139
140} // namespace base
141} // namespace o2
142
143#endif
void print() const
Definition of FlatObject class.
int32_t i
Declarations for single cylindrical material layer class.
TBranch * ptr
void setActualBufferAddress(char *actualFlatBufferPtr)
static constexpr size_t getBufferAlignmentBytes()
Gives minimal alignment in bytes required for the flat buffer.
GPUd() float getZMax() const
short short &lmax const
void addLayer(float rmin, float rmax, float zmax, float dz, float drphi)
GPUd() float getRMax() const
void optimizePhiSlices(float maxRelDiff=0.05)
void cloneFromObject(const MatLayerCylSet &obj, char *newFlatBufferPtr)
MatLayerCyl & getLayer(int i)
MatLayerCylSet(const MatLayerCylSet &src)=delete
MatBudget getMatBudget(const math_utils::Point3D< float > &point0, const math_utils::Point3D< float > &point1) const
static MatLayerCylSet * loadFromFile(const std::string &inpFName="matbud.root")
static constexpr float VoxelRDelta
uint16_t mLayerVoxelLU[2 *NumVoxels]
static constexpr int NumVoxels
GPUd() const MatLayerCylSetLayout *get() const
void populateFromTGeo(int ntrPerCel=10)
bool mInitializedLayerVoxelLU
helper structure to lookup a layer based on known radius (static dimension for easy copy to GPU)
static constexpr size_t getClassAlignmentBytes()
Gives minimal alignment in bytes required for the class object.
void moveBufferTo(char *newFlatBufferPtr)
MatLayerCylSet * extractCopy(float rmin, float rmax, float tol=1e-3) const
GPUd() float getRMin2() const
std::size_t estimateFlatBufferSize() const
GPUCA_ALIGPUCODE.
ClassDefNV(MatLayerCylSet, 1)
if the voxels have been initialized
static constexpr float InvVoxelRDelta
void dumpToTree(const std::string &outName="matbudTree.root") const
GPUd() MatLayerCylSetLayout *get()
static MatLayerCylSet * rectifyPtrFromFile(MatLayerCylSet *ptr)
GPUd() const MatLayerCyl &getLayer(int i) const
void setFutureBufferAddress(char *futureFlatBufferPtr)
static constexpr float LayerRMax
GPUd() float getRMax2() const
void fixPointers(char *newPtr=nullptr)
void writeToFile(const std::string &outFName="matbud.root")
GPUd() int getNLayers() const
GPUCA_GPUCODE.
Definition FlatObject.h:176
char * releaseInternalBuffer()
_____________ Methods for making the data buffer external __________________________
Definition FlatObject.h:526
void adoptInternalBuffer(char *buf)
Definition FlatObject.h:534
GLenum src
Definition glcorearb.h:1767
GLuint GLfloat GLfloat GLfloat GLfloat y1
Definition glcorearb.h:5034
GLuint GLfloat GLfloat GLfloat x1
Definition glcorearb.h:5034
GLboolean * data
Definition glcorearb.h:298
GLuint GLfloat x0
Definition glcorearb.h:5034
GLuint GLfloat * val
Definition glcorearb.h:1582
GLuint GLfloat GLfloat y0
Definition glcorearb.h:5034
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
int mNRIntervals
number of R interval boundaries (gaps are possible)
float mRMax2
precalculater rmax^2
float mRMin2
precalculater rmin^2