Project
Loading...
Searching...
No Matches
Detector.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 ALICEO2_TRK_DETECTOR_H
13#define ALICEO2_TRK_DETECTOR_H
14
17
22
23#include <TLorentzVector.h>
24#include <TString.h>
25
26namespace o2
27{
28namespace trk
29{
30
31class Detector : public o2::base::DetImpl<Detector>
32{
33 public:
34 Detector(bool active);
37
38 // Factory method
40 {
41 return new Detector(active);
42 }
43
44 void ConstructGeometry() override;
45
46 o2::itsmft::Hit* addHit(int trackID, int detID, const TVector3& startPos, const TVector3& endPos,
47 const TVector3& startMom, double startE, double endTime, double eLoss,
48 unsigned char startStatus, unsigned char endStatus);
49
50 // Mandatory overrides
51 void BeginPrimary() override { ; }
52 void FinishPrimary() override { ; }
53 void InitializeO2Detector() override;
54 void PostTrack() override { ; }
55 void PreTrack() override { ; }
56 bool ProcessHits(FairVolume* v = nullptr) override;
57 void EndOfEvent() override;
58 void Register() override;
59 void Reset() override;
60
61 // Custom memer functions
62 std::vector<o2::itsmft::Hit>* getHits(int iColl) const
63 {
64 if (!iColl) {
65 return mHits;
66 }
67 return nullptr;
68 }
69
70 void configDefault();
71 void buildTRKNewVacuumVessel();
72 void configFromFile(std::string fileName = "alice3_TRK_layout.txt");
73 void configToFile(std::string fileName = "alice3_TRK_layout.txt");
74
75 void configServices(); // To get special conf from CLI options
77 void createGeometry();
78
79 private:
80 // Transient data about track passing the sensor
81 struct TrackData {
82 bool mHitStarted; // hit creation started
83 unsigned char mTrkStatusStart; // track status flag
84 TLorentzVector mPositionStart; // position at entrance
85 TLorentzVector mMomentumStart; // momentum
86 double mEnergyLoss; // energy loss
87 } mTrackData;
88 GeometryTGeo* mGeometryTGeo;
89 std::vector<o2::itsmft::Hit>* mHits; // ITSMFT ones for the moment
90 std::vector<TRKLayer> mLayers;
91 TRKServices mServices; // Houses the services of the TRK, but not the Iris tracker
92 std::vector<TRKPetalCase> mPetalCases; // Houses the Iris tracker and its services. Created fully in the beam pipe
93
94 std::vector<std::string> mFirstOrLastLayers; // Names of the first or last layers
95 bool InsideFirstOrLastLayer(std::string layerName);
96
97 void defineSensitiveVolumes();
98
99 template <typename Det>
100 friend class o2::base::DetImpl;
101 ClassDefOverride(Detector, 1);
102};
103} // namespace trk
104} // namespace o2
105
106#ifdef USESHM
107namespace o2
108{
109namespace base
110{
111template <>
112struct UseShm<o2::trk::Detector> {
113 static constexpr bool value = true;
114};
115} // namespace base
116} // namespace o2
117#endif
118#endif
Definition of the Detector class.
Definition of the ITSMFT Hit class.
Detector()
Default Constructor.
Definition Detector.cxx:36
void Reset() override
void Register() override
void ConstructGeometry() override
void BeginPrimary() override
Definition Detector.h:51
o2::itsmft::Hit * addHit(int trackID, int detID, const TVector3 &startPos, const TVector3 &endPos, const TVector3 &startMom, double startE, double endTime, double eLoss, unsigned char startStatus, unsigned char endStatus)
Definition Detector.cxx:420
void InitializeO2Detector() override
void FinishPrimary() override
Definition Detector.h:52
void PostTrack() override
Definition Detector.h:54
std::vector< o2::itsmft::Hit > * getHits(int iColl) const
Definition Detector.h:62
void EndOfEvent() override
static o2::base::Detector * create(bool active)
Definition Detector.h:39
void PreTrack() override
Definition Detector.h:55
bool ProcessHits(FairVolume *v=nullptr) override
const GLdouble * v
Definition glcorearb.h:832
GLsizei const GLfloat * value
Definition glcorearb.h:819
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...