Project
Loading...
Searching...
No Matches
CalibdEdxTrackTopologyPol.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_TPC_CALIBDEDXTRACKTOPOLOGYPOL_H_
16#define ALICEO2_TPC_CALIBDEDXTRACKTOPOLOGYPOL_H_
17
18#include "GPUCommonRtypes.h"
20#include "GPUCommonDef.h"
21#include "FlatObject.h"
22#include "DataFormatsTPC/Defs.h"
23#ifndef GPUCA_ALIGPUCODE
24#include <string_view>
25#endif
26
27namespace o2::tpc
28{
29
30#if !defined(GPUCA_GPUCODE)
33
36
37 std::vector<gpu::NDPiecewisePolynomialContainer> mCalibPols{};
38 std::vector<float> mScalingFactorsqTot{};
39 std::vector<float> mScalingFactorsqMax{};
40
42};
43#endif
44
47{
48 public:
49#if !defined(GPUCA_GPUCODE) && !defined(GPUCA_STANDALONE)
53 CalibdEdxTrackTopologyPol(std::string_view fileName, std::string_view name = "CalibdEdxTrackTopologyPol") { loadFromFile(fileName.data(), name.data()); };
56
59#endif
60
65 GPUd() float getCorrection(const int32_t region, const ChargeType charge, float x[/*inpXdim*/]) const { return (charge == ChargeType::Tot) ? mCalibPolsqTot[region].eval(x) : mCalibPolsqMax[region].eval(x); }
66
77 GPUd() float getCorrection(const int32_t region, const ChargeType chargeT, const float tanTheta, const float sinPhi, const float z, const float relPad, const float relTime, const float threshold, const float charge) const
78 {
79 const float corr = (chargeT == ChargeType::Tot) ? getCorrectionqTot(region, tanTheta, sinPhi, z, threshold, charge) : getCorrectionqMax(region, tanTheta, sinPhi, z, relPad, relTime);
80 return corr;
81 }
82
90 GPUd() float getCorrectionqTot(const int32_t region, const float tanTheta, const float sinPhi, const float z, const float threshold, const float charge) const
91 {
92 float x[]{z, tanTheta, sinPhi, threshold, charge};
93 const float corr = mScalingFactorsqTot[region] * mCalibPolsqTot[region].eval(x);
94 return corr;
95 }
96
104 GPUd() float getCorrectionqMax(const int32_t region, const float tanTheta, const float sinPhi, const float z, const float relPad, const float relTime) const
105 {
106 float x[]{z, tanTheta, sinPhi, relPad, relTime};
107 const float corr = mScalingFactorsqMax[region] * mCalibPolsqMax[region].eval(x);
108 return corr;
109 }
110
113 GPUd() float getMinThreshold(const int32_t region = 0) const { return mCalibPolsqTot[region].getXMin(3); };
114
117 GPUd() float getMaxThreshold(const int32_t region = 0) const { return mCalibPolsqTot[region].getXMax(3); };
118
121 GPUd() float getScalingFactorqTot(const int32_t region) const { return mScalingFactorsqTot[region]; };
122
125 GPUd() float getScalingFactorqMax(const int32_t region) const { return mScalingFactorsqMax[region]; };
126
127#if !defined(GPUCA_GPUCODE)
130 const auto& getPolyqTot(const int32_t region) const { return mCalibPolsqTot[region]; }
131
134 const auto& getPolyqMax(const int32_t region) const { return mCalibPolsqMax[region]; }
135
136#ifndef GPUCA_STANDALONE
140 void setScalingFactorqTot(const float factor, const int32_t region) { mScalingFactorsqTot[region] = factor; };
141
145 void setScalingFactorqMax(const float factor, const int32_t region) { mScalingFactorsqMax[region] = factor; };
146
150 void writeToFile(TFile& outf, const char* name = "CalibdEdxTrackTopologyPol") const;
151
155
159 void loadFromFile(const char* fileName, const char* name);
160
164 void dumpToTree(const uint32_t nSamplingPoints[/* Dim */], const char* outName = "track_topology_corr_debug.root") const;
165
168 void setPolynomialsFromFile(TFile& inpf);
169
172#endif
173
177 static std::string getPolyName(const int32_t region, const ChargeType charge);
178#endif
179
181#if !defined(GPUCA_GPUCODE)
183 void cloneFromObject(const CalibdEdxTrackTopologyPol& obj, char* newFlatBufferPtr);
184
187 void moveBufferTo(char* newBufferPtr);
188#endif
189
191 void destroy();
192
194 void setActualBufferAddress(char* actualFlatBufferPtr);
195
197 void setFutureBufferAddress(char* futureFlatBufferPtr);
199
200 private:
201 constexpr static int32_t FFits{10};
202 constexpr static int32_t FDim{5};
203 constexpr static int32_t FDegree{3};
206 float mScalingFactorsqTot[FFits]{1, 1, 1, 1, 1, 1, 1, 1, 1, 1};
207 float mScalingFactorsqMax[FFits]{1, 1, 1, 1, 1, 1, 1, 1, 1, 1};
208
209#if !defined(GPUCA_GPUCODE)
210 void construct();
211#endif
212
213 ClassDefNV(CalibdEdxTrackTopologyPol, 1);
214};
215
216} // namespace o2::tpc
217
218#endif
Definition of FlatObject class.
GPUCA_GPUCODE.
Definition FlatObject.h:176
calibration class for the track topology correction of the dE/dx using multvariate polynomials
CalibdEdxTrackTopologyPol()=default
Default constructor: creates an empty uninitialized object.
CalibdEdxTrackTopologyPol(std::string_view fileName, std::string_view name="CalibdEdxTrackTopologyPol")
void loadFromFile(const char *fileName, const char *name)
static std::string getPolyName(const int32_t region, const ChargeType charge)
void dumpToTree(const uint32_t nSamplingPoints[], const char *outName="track_topology_corr_debug.root") const
GPUd() float getScalingFactorqMax(const int32_t region) const
const ChargeType const float const float const float const float const float relTime
void setDefaultPolynomials()
setting a default topology correction which just returns 1
void setScalingFactorqMax(const float factor, const int32_t region)
const ChargeType const float const float const float z
GPUd() float getScalingFactorqTot(const int32_t region) const
GPUd() float getMaxThreshold(const int32_t region=0) const
const auto & getPolyqMax(const int32_t region) const
const ChargeType const float const float const float const float const float const float threshold
void setFutureBufferAddress(char *futureFlatBufferPtr)
set future location of the flat buffer
void writeToFile(TFile &outf, const char *name="CalibdEdxTrackTopologyPol") const
~CalibdEdxTrackTopologyPol()=default
destructor
GPUd() float getCorrection(const int32_t region
void setScalingFactorqTot(const float factor, const int32_t region)
const ChargeType const float const float sinPhi
void setFromContainer(const CalibdEdxTrackTopologyPolContainer &container)
void setActualBufferAddress(char *actualFlatBufferPtr)
set location of external flat buffer
const auto & getPolyqTot(const int32_t region) const
void cloneFromObject(const CalibdEdxTrackTopologyPol &obj, char *newFlatBufferPtr)
========== FlatObject functionality, see FlatObject class for description =================
GPUd() float getMinThreshold(const int32_t region=0) const
void destroy()
destroy the object (release internal flat buffer)
const ChargeType const float const float const float const float relPad
GLint GLenum GLint x
Definition glcorearb.h:403
GLuint const GLchar * name
Definition glcorearb.h:781
GLdouble GLdouble GLdouble z
Definition glcorearb.h:843
Global TPC definitions and constants.
Definition SimTraits.h:167
ChargeType
Definition Defs.h:70
@ Tot
Definition Defs.h:72
simple struct to enable writing the MultivariatePolynomialCT to file
ClassDefNV(CalibdEdxTrackTopologyPolContainer, 2)
std::vector< float > mScalingFactorsqMax
value which is used to scale the result of the polynomial for qMax (can be used for normalization)
std::vector< float > mScalingFactorsqTot
value which is used to scale the result of the polynomial for qTot (can be used for normalization)
CalibdEdxTrackTopologyPolContainer()=default
default constructor
std::vector< gpu::NDPiecewisePolynomialContainer > mCalibPols
parameters of the polynomial