#include <DummySeedFinder.h>
|
| | DummySeedFinder (const std::string &t, const std::string &n, const IInterface *p) |
| virtual | ~DummySeedFinder () |
| virtual StatusCode | initialize () override |
| virtual StatusCode | finalize () override |
| virtual Amg::Vector3D | findSeed (const std::vector< const Trk::Track * > &vectorTrk, const xAOD::Vertex *constraint=0) const override final |
| virtual Amg::Vector3D | findSeed (const std::vector< const Trk::TrackParameters * > &perigeeList, const xAOD::Vertex *constraint=0) const override final |
| | Interface for MeasuredPerigee with starting point.
|
| virtual std::vector< Amg::Vector3D > | findMultiSeeds (const std::vector< const Trk::Track * > &vectorTrk, const xAOD::Vertex *constraint=0) const override final |
| virtual std::vector< Amg::Vector3D > | findMultiSeeds (const std::vector< const Trk::TrackParameters * > &perigeeList, const xAOD::Vertex *constraint=0) const override final |
| virtual Amg::Vector3D | findSeed (const double, const double, const std::vector< const Trk::TrackParameters * > &perigeeList, const xAOD::Vertex *constraint=0) const |
| | Finds a linearization point out of a vector of TrackParameters and returns it as an Amg::Vector3D object.
|
| virtual Amg::Vector3D | findSeed (const double, const double, std::unique_ptr< Trk::IMode3dInfo > &, const std::vector< const Trk::TrackParameters * > &perigeeList, const xAOD::Vertex *constraint=0) const |
| | Finds a linearization point out of a vector of TrackParameters and returns it as an Amg::Vector3D object.
|
Definition at line 28 of file DummySeedFinder.h.
◆ DummySeedFinder()
| Trk::DummySeedFinder::DummySeedFinder |
( |
const std::string & | t, |
|
|
const std::string & | n, |
|
|
const IInterface * | p ) |
◆ ~DummySeedFinder()
| Trk::DummySeedFinder::~DummySeedFinder |
( |
| ) |
|
|
virtualdefault |
◆ finalize()
| StatusCode Trk::DummySeedFinder::finalize |
( |
| ) |
|
|
overridevirtual |
◆ findMultiSeeds() [1/2]
Definition at line 60 of file DummySeedFinder.cxx.
62 {
63 std::vector<Amg::Vector3D> retvec;
64 retvec.emplace_back(0.,0.,0. );
65 return retvec;
66 }
◆ findMultiSeeds() [2/2]
Definition at line 70 of file DummySeedFinder.cxx.
72 {
73 std::vector<Amg::Vector3D> retvec;
74 retvec.emplace_back(0.,0.,0. );
75 return retvec;
76 }
◆ findSeed() [1/4]
Finds a linearization point out of a vector of TrackParameters and returns it as an Amg::Vector3D object.
If you want an additional constraint can be taken into account. Must specify the primary vertex position.
Definition at line 79 of file IVertexSeedFinder.h.
83 {
84 return findSeed (perigeeList, constraint);
85 }
virtual Amg::Vector3D findSeed(const std::vector< const Trk::Track * > &vectorTrk, const xAOD::Vertex *constraint=0) const override final
◆ findSeed() [2/4]
Finds a linearization point out of a vector of TrackParameters and returns it as an Amg::Vector3D object.
If you want an additional constraint can be taken into account. Must specify the primary vertex position. Allows returning additional diagnostic information.
Definition at line 96 of file IVertexSeedFinder.h.
101 {
102 return findSeed (perigeeList, constraint);
103 }
◆ findSeed() [3/4]
◆ findSeed() [4/4]
◆ initialize()
| StatusCode Trk::DummySeedFinder::initialize |
( |
| ) |
|
|
overridevirtual |
The documentation for this class was generated from the following files: