Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ActsTransformations.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file ActsTransformations.h
1 #ifndef TRACKRECO_ACTSTRANSFORMATIONS_H
2 #define TRACKRECO_ACTSTRANSFORMATIONS_H
3 
4 #include <trackbase/TrkrDefs.h>
7 
13 
14 #include "SvtxTrack.h"
15 
17 #include <cmath>
18 #include <iostream>
19 #include <memory>
20 #include <utility>
21 
22 // forward declarations
23 class SvtxTrack;
24 class SvtxTrackState;
25 class TrkrCluster;
26 
35 {
36  public:
37  ActsTransformations() = default;
38 
44 
50 
54 
56 
57  void printMatrix(const std::string &message, const Acts::BoundSquareMatrix& matrix) const;
58 
64  Acts::GeometryContext& geoCtxt,
65  float &dca3Dxy,
66  float &dca3Dz,
67  float &dca3DxyCov,
68  float &dca3DzCov) const;
69 
71  const size_t& trackTip,
72  SvtxTrack *svtxTrack,
74 
75  private:
76  int m_verbosity = 0;
77 
78 
79 };
80 
81 
82 #endif