EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ActsTrackingGeometry.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file ActsTrackingGeometry.h
1 #ifndef TRACKRECO_ACTSTRACKINGGEOMETRY_H
2 #define TRACKRECO_ACTSTRACKINGGEOMETRY_H
3 
4 #include <memory>
8 
12 
14 
21  ActsTrackingGeometry(std::shared_ptr<const Acts::TrackingGeometry> tGeo,
24  Acts::GeometryContext geoCtxt,
25  Acts::MagneticFieldContext magFieldCtxt)
26  : tGeometry(tGeo)
27  , magField(mag)
28  , calibContext(calib)
29  , geoContext(geoCtxt)
30  , magFieldContext(magFieldCtxt)
31  {}
32 
34  std::shared_ptr<const Acts::TrackingGeometry> tGeometry;
35 
37 
43  double tpcSurfStepZ;
44  double mmSurfStepPhi;
45  double mmSurfStepZ;
46 };
47 
48 
49 #endif