ATLAS Offline Software
BoundaryCylinderSurface.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 // BoundaryCylinderSurface.h, (c) ATLAS Detector software
8 
9 #ifndef TRKVOLUMES_BOUNDARYCYLIMDERSURFACE_H
10 #define TRKVOLUMES_BOUNDARYCYLIMDERSURFACE_H
11 
12 // Trk
13 #include "GaudiKernel/SystemOfUnits.h"
18 
19 namespace Trk {
20 
21 // class TrackParameters;
22 class Volume;
23 
35 template <class Tvol>
36 class BoundaryCylinderSurface final : virtual public BoundarySurface<Tvol>,
37  public CylinderSurface {
40 
41  public:
49  virtual ~BoundaryCylinderSurface() = default;
50 
52  BoundaryCylinderSurface(const Tvol* inside, const Tvol* outside,
53  const CylinderSurface& csf)
55 
58  SharedObject<VolumeArray> outsideArray,
59  const CylinderSurface& csf)
60  : BoundarySurface<Tvol>(insideArray, outsideArray),
61  CylinderSurface(csf) {}
62 
64  BoundaryCylinderSurface(const Tvol* inside, const Tvol* outside,
65  const CylinderSurface& csf,
66  const Amg::Transform3D& tr)
67  : BoundarySurface<Tvol>(inside, outside), CylinderSurface(csf, tr) {}
68 
75  virtual const Tvol* attachedVolume(const TrackParameters& parms,
76  PropDirection dir) const override final;
77 
80  virtual const Tvol* attachedVolume(const Amg::Vector3D& pos,
81  const Amg::Vector3D& mom,
82  PropDirection dir) const override final;
83 
85  virtual const Surface& surfaceRepresentation() const override final;
86  virtual Surface& surfaceRepresentation() override final;
87 };
88 
89 // Hash include the inline functions
90 #include "TrkVolumes/BoundaryCylinderSurface.icc"
91 
92 } // end of namespace Trk
93 
94 #endif // TRKVOLUMES_BOUNDARYCYLIMDERSURFACE_H
95 
Trk::BoundarySurface
Definition: BoundarySurface.h:50
Trk::BoundaryCylinderSurface::BoundaryCylinderSurface
BoundaryCylinderSurface(const Tvol *inside, const Tvol *outside, const CylinderSurface &csf)
Constructor for a Boundary with exact two Volumes attached to it.
Definition: BoundaryCylinderSurface.h:52
TrackParameters.h
Trk::BoundaryCylinderSurface::attachedVolume
virtual const Tvol * attachedVolume(const Amg::Vector3D &pos, const Amg::Vector3D &mom, PropDirection dir) const override final
Get the next Volume depending on position, momentum, dir on the TrackParameters and the requested dir...
PropDirection.h
const
bool const RAWDATA *ch2 const
Definition: LArRodBlockPhysicsV0.cxx:562
Trk::BoundaryCylinderSurface::BoundaryCylinderSurface
BoundaryCylinderSurface(SharedObject< VolumeArray > insideArray, SharedObject< VolumeArray > outsideArray, const CylinderSurface &csf)
Constructor for a Boundary with two VolumeArrays attached to it.
Definition: BoundaryCylinderSurface.h:57
Trk::BoundaryCylinderSurface::BoundaryCylinderSurface
BoundaryCylinderSurface(const BoundaryCylinderSurface< Tvol > &bcs)=default
Copy constructor.
Trk::PropDirection
PropDirection
Definition: PropDirection.h:19
ParticleGun_EoverP_Config.mom
mom
Definition: ParticleGun_EoverP_Config.py:63
Trk::CylinderSurface
Definition: CylinderSurface.h:55
Amg::Transform3D
Eigen::Affine3d Transform3D
Definition: GeoPrimitives.h:46
CylinderSurface.h
Trk::BoundaryCylinderSurface::VolumeArray
BinnedArray< Tvol > VolumeArray
typedef the BinnedArray
Definition: BoundaryCylinderSurface.h:39
Trk::BoundaryCylinderSurface::BoundaryCylinderSurface
BoundaryCylinderSurface()=default
Default Constructor - needed for pool and inherited classes.
Trk::ParametersBase
Definition: ParametersBase.h:55
beamspotman.dir
string dir
Definition: beamspotman.py:623
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition: FakeTrackBuilder.h:9
Trk::BoundaryCylinderSurface::surfaceRepresentation
virtual const Surface & surfaceRepresentation() const override final
The Surface Representation of this.
Amg::Vector3D
Eigen::Matrix< double, 3, 1 > Vector3D
Definition: GeoPrimitives.h:47
python.LumiBlobConversion.pos
pos
Definition: LumiBlobConversion.py:18
Trk::BoundaryCylinderSurface::attachedVolume
virtual const Tvol * attachedVolume(const TrackParameters &parms, PropDirection dir) const override final
Get the next Volume depending on the TrackParameters and the requested direction, gives back 0 if the...
BoundarySurface.h
Trk::BoundaryCylinderSurface
Definition: BoundaryCylinderSurface.h:37
Trk::BoundaryCylinderSurface::BoundaryCylinderSurface
BoundaryCylinderSurface(const Tvol *inside, const Tvol *outside, const CylinderSurface &csf, const Amg::Transform3D &tr)
Copy constructor with a shift.
Definition: BoundaryCylinderSurface.h:64
Trk::inside
@ inside
Definition: PropDirection.h:29
Trk::SharedObject
std::shared_ptr< T > SharedObject
Definition: SharedObject.h:24
Trk::BoundaryCylinderSurface::~BoundaryCylinderSurface
virtual ~BoundaryCylinderSurface()=default
Virtual Destructor.
Trk::outside
@ outside
Definition: PropDirection.h:29
Trk::BinnedArray
Definition: BinnedArray.h:38
Trk::Surface
Definition: Tracking/TrkDetDescr/TrkSurfaces/TrkSurfaces/Surface.h:75
Trk::BoundaryCylinderSurface::operator=
BoundaryCylinderSurface & operator=(const BoundaryCylinderSurface &vol)=default
Assignment operator.