ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ITrackingVolumeBuilder.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file ITrackingVolumeBuilder.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2016-2018 CERN for the benefit of the Acts project
4 //
5 // This Source Code Form is subject to the terms of the Mozilla Public
6 // License, v. 2.0. If a copy of the MPL was not distributed with this
7 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 
10 // ITrackingVolumeBuilder.h, Acts project
12 
13 #pragma once
14 #include <memory>
15 #include <tuple>
16 #include <vector>
18 
19 namespace Acts {
20 
21 class VolumeBounds;
22 class TrackingVolume;
23 class Layer;
24 class Volume;
25 using TrackingVolumePtr = std::shared_ptr<const TrackingVolume>;
26 using MutableTrackingVolumePtr = std::shared_ptr<TrackingVolume>;
27 using VolumeBoundsPtr = std::shared_ptr<const VolumeBounds>;
28 using LayerPtr = std::shared_ptr<const Layer>;
29 using LayerVector = std::vector<LayerPtr>;
41 
43  public:
45  virtual ~ITrackingVolumeBuilder() = default;
46 
56  VolumeBoundsPtr outsideBounds = nullptr) const = 0;
57 };
58 
59 } // namespace Acts