Project
Loading...
Searching...
No Matches
DiffAndTimeStructEstimator.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
12#ifndef O2_TRD_DIFFANDTIMESTRUCTESTIMATOR_H
13#define O2_TRD_DIFFANDTIMESTRUCTESTIMATOR_H
14
15#include <array>
19
20namespace o2
21{
22namespace trd
23{
24
28{
29 public:
30 DiffusionAndTimeStructEstimator() = delete; // upon creation gas mixture and B-field must be provided
31 DiffusionAndTimeStructEstimator(SimParam::GasMixture gas, float bz) : mGasMixture(gas), mBz(bz) {}
32
34 bool getDiffCoeff(float& dl, float& dt, float vdrift);
35
37 float timeStruct(float vdrift, float xd, float z, bool* errFlag = nullptr);
38
39 private:
40 bool sampleTimeStruct(float vdrift);
41
42 std::array<float, garfield::TIMEBINSGARFIELD * garfield::ZBINSGARFIELD> mTimeStruct1;
43 std::array<float, garfield::TIMEBINSGARFIELD * garfield::ZBINSGARFIELD> mTimeStruct2;
44 float mVDlo;
45 float mVDhi;
46 float mInvBinWidth;
47 float mTimeLastVdrift = -1.f;
48
49 // for the diffusion part
50 float mDiffLastVdrift = -1.f;
51 float mDiffusionL = -1.f;
52 float mDiffusionT = -1.f;
53
54 SimParam::GasMixture mGasMixture;
55 float mBz;
56};
57
58} // namespace trd
59} // namespace o2
60
61#endif // O2_TRD_DIFFANDTIMESTRUCTESTIMATOR_H
Global TRD definitions and constants.
bool getDiffCoeff(float &dl, float &dt, float vdrift)
determines the diffusion coefficients as a function of drift velocity
float timeStruct(float vdrift, float xd, float z, bool *errFlag=nullptr)
determines drift time as function of drift velocity and coordinates
DiffusionAndTimeStructEstimator(SimParam::GasMixture gas, float bz)
GLdouble GLdouble GLdouble z
Definition glcorearb.h:843
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...