Project
Loading...
Searching...
No Matches
GeometryManager.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_BASE_GEOMETRYMANAGER_H_
16#define ALICEO2_BASE_GEOMETRYMANAGER_H_
17
18#include <TGeoManager.h> // for TGeoManager
19#include <TGeoMaterial.h>
20#include <TGeoPhysicalNode.h> // for TGeoPNEntry
21#include <TGeoShape.h>
22#include <TMath.h>
23#include <TObject.h> // for TObject
24#include <string_view>
26#include "GPUCommonLogger.h" // for LOG
27#include "MathUtils/Cartesian.h"
29#include <mutex>
30class TGeoHMatrix; // lines 11-11
31class TGeoManager; // lines 9-9
32
33namespace o2
34{
35namespace detectors
36{
37class AlignParam;
38}
39
40namespace base
41{
49{
50 public:
54 static void loadGeometry(std::string_view geomFilePath = "", bool applyMisalignment = false, bool preferAlignedFile = true);
55 static bool isGeometryLoaded() { return gGeoManager != nullptr; }
56 static void applyMisalignent(bool applyMisalignment = true);
57
62 static Bool_t getOriginalMatrix(o2::detectors::DetID detid, int sensid, TGeoHMatrix& m);
63 static Bool_t getOriginalMatrix(const char* symname, TGeoHMatrix& m);
64 static TGeoHMatrix* getMatrix(const char* symname);
65 static const char* getSymbolicName(o2::detectors::DetID detid, int sensid);
66 static TGeoPNEntry* getPNEntry(o2::detectors::DetID detid, Int_t sensid);
67 static TGeoHMatrix* getMatrix(o2::detectors::DetID detid, Int_t sensid);
68
69 static int getSensID(o2::detectors::DetID detid, int sensid)
70 {
72 return (detid << sDetOffset) | (sensid & sSensorMask);
73 }
74
76 ~GeometryManager() override = default;
77
79 static bool applyAlignment(const std::vector<o2::detectors::AlignParam>& algPars);
80 static bool applyAlignment(const std::vector<const std::vector<o2::detectors::AlignParam>*> algPars);
81
82 struct MatBudgetExt {
83 double meanRho = 0.; // mean density: sum(x_i*rho_i)/sum(x_i) [g/cm3]
84 double meanX2X0 = 0.; // equivalent rad length fraction: sum(x_i/X0_i) [adimensional]
85 double meanA = 0.; // mean A: sum(x_i*A_i)/sum(x_i) [adimensional]
86 double meanZ = 0.; // mean Z: sum(x_i*Z_i)/sum(x_i) [adimensional]
87 double meanZ2A = 0.; // Z/A mean: sum(x_i*Z_i/A_i)/sum(x_i) [adimensional]
88 double length = -1.; // length: sum(x_i) [cm]
89 int nCross = 0; // number of boundary crosses
90
91 MatBudgetExt() = default;
92 ~MatBudgetExt() = default;
93 MatBudgetExt(const MatBudgetExt& src) = default;
95 void normalize(double nrm);
97 };
98
99 static o2::base::MatBudget meanMaterialBudget(float x0, float y0, float z0, float x1, float y1, float z1);
108
109 static MatBudgetExt meanMaterialBudgetExt(float x0, float y0, float z0, float x1, float y1, float z1);
118
119 private:
121 GeometryManager() = default;
122 static TGeoHMatrix* getMatrix(TGeoPNEntry* pne);
123 static void accountMaterial(const TGeoMaterial* material, MatBudgetExt& bd);
124 static void accountMaterial(const TGeoMaterial* material, o2::base::MatBudget& bd)
125 {
126 bd.meanRho = material->GetDensity();
127 bd.meanX2X0 = material->GetRadLen();
128 }
129
133 static Bool_t getOriginalMatrixFromPath(const char* path, TGeoHMatrix& m);
134
135 private:
137 static constexpr UInt_t sDetOffset = 15;
138 static constexpr UInt_t sSensorMask =
139 (0x1 << sDetOffset) - 1;
140 static std::mutex sTGMutex;
141
142 ClassDefOverride(GeometryManager, 0); // Manager of geometry information for alignment
143};
144} // namespace base
145} // namespace o2
146
147#endif
Declarations for material properties of the cell (voxel)
static o2::base::MatBudget meanMaterialBudget(const math_utils::Point3D< double > &start, const math_utils::Point3D< double > &end)
~GeometryManager() override=default
Default destructor.
static const char * getSymbolicName(o2::detectors::DetID detid, int sensid)
static TGeoHMatrix * getMatrix(o2::detectors::DetID detid, Int_t sensid)
static o2::base::MatBudget meanMaterialBudget(float x0, float y0, float z0, float x1, float y1, float z1)
static Bool_t getOriginalMatrix(o2::detectors::DetID detid, int sensid, TGeoHMatrix &m)
static void loadGeometry(std::string_view geomFilePath="", bool applyMisalignment=false, bool preferAlignedFile=true)
static MatBudgetExt meanMaterialBudgetExt(const math_utils::Point3D< float > &start, const math_utils::Point3D< float > &end)
static o2::base::MatBudget meanMaterialBudget(const math_utils::Point3D< float > &start, const math_utils::Point3D< float > &end)
static bool applyAlignment(const std::vector< o2::detectors::AlignParam > &algPars)
misalign geometry with alignment objects from the array, optionaly check overlaps
static MatBudgetExt meanMaterialBudgetExt(float x0, float y0, float z0, float x1, float y1, float z1)
static int getSensID(o2::detectors::DetID detid, int sensid)
static TGeoHMatrix * getMatrix(const char *symname)
static MatBudgetExt meanMaterialBudgetExt(const math_utils::Point3D< double > &start, const math_utils::Point3D< double > &end)
static TGeoPNEntry * getPNEntry(o2::detectors::DetID detid, Int_t sensid)
static void applyMisalignent(bool applyMisalignment=true)
Static class with identifiers, bitmasks and names for ALICE detectors.
Definition DetID.h:58
const GLfloat * m
Definition glcorearb.h:4066
GLenum src
Definition glcorearb.h:1767
GLuint GLfloat GLfloat GLfloat GLfloat y1
Definition glcorearb.h:5034
GLuint GLuint end
Definition glcorearb.h:469
GLuint GLfloat GLfloat GLfloat x1
Definition glcorearb.h:5034
GLuint GLsizei GLsizei * length
Definition glcorearb.h:790
GLuint GLfloat x0
Definition glcorearb.h:5034
GLsizei const GLchar *const * path
Definition glcorearb.h:3591
GLuint start
Definition glcorearb.h:469
GLuint GLfloat GLfloat y0
Definition glcorearb.h:5034
std::string detectors(const std::vector< std::string > &det, unsigned mask)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
MatBudgetExt(const MatBudgetExt &src)=default
MatBudgetExt & operator=(const MatBudgetExt &src)=default
float meanRho
mean density, g/cm^3
Definition MatCell.h:30
float meanX2X0
fraction of radiaton lenght
Definition MatCell.h:31