Juggler
Juggling algorithms and event processing using gaudi framework
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
Jug::Trajectories Struct Referencefinal

#include <Trajectories.hpp>

Public Types

using MultiTrajectory = ::Acts::MultiTrajectory
 (Reconstructed) trajectory with multiple states. More...
 
using IndexedParameters = std::unordered_map< size_t, TrackParameters >
 Fitted parameters identified by indices in the multi trajectory. More...
 

Public Member Functions

 Trajectories ()=default
 
 Trajectories (const MultiTrajectory &multiTraj, const std::vector< size_t > &tTips, const IndexedParameters &parameters)
 
bool empty () const
 Return true if there exists no valid trajectory. More...
 
const MultiTrajectorymultiTrajectory () const
 Access the underlying multi trajectory. More...
 
const std::vector< size_t > & tips () const
 Access the tip indices that identify valid trajectories. More...
 
bool hasTrajectory (size_t entryIndex) const
 
bool hasTrackParameters (size_t entryIndex) const
 
const TrackParameterstrackParameters (size_t entryIndex) const
 

Detailed Description

Store reconstructed trajectories from track finding/fitting.

It contains a MultiTrajectory with a vector of entry indices for individual trajectories, and a map of fitted parameters indexed by the entry index. In case of track fitting, there is at most one trajectory in the MultiTrajectory; In case of track finding, there could be multiple trajectories in the MultiTrajectory.

Member Typedef Documentation

◆ IndexedParameters

using Jug::Trajectories::IndexedParameters = std::unordered_map<size_t, TrackParameters>

Fitted parameters identified by indices in the multi trajectory.

◆ MultiTrajectory

using Jug::Trajectories::MultiTrajectory = ::Acts::MultiTrajectory

(Reconstructed) trajectory with multiple states.

Constructor & Destructor Documentation

◆ Trajectories() [1/2]

Jug::Trajectories::Trajectories ( )
default

Default construct an empty object. Required for container compatibility and to signal an error.

◆ Trajectories() [2/2]

Jug::Trajectories::Trajectories ( const MultiTrajectory multiTraj,
const std::vector< size_t > &  tTips,
const IndexedParameters parameters 
)
inline

Construct from fitted multi trajectory and parameters.

Parameters
multiTrajThe multi trajectory
tTipsTip indices that identify valid trajectories
parametersFitted track parameters indexed by trajectory index

Member Function Documentation

◆ empty()

bool Jug::Trajectories::empty ( ) const
inline

Return true if there exists no valid trajectory.

◆ hasTrackParameters()

bool Jug::Trajectories::hasTrackParameters ( size_t  entryIndex) const
inline

Check if fitted track parameters exists for the given index.

Parameters
entryIndexThe trajectory entry index
Returns
Whether having fitted track parameters or not

◆ hasTrajectory()

bool Jug::Trajectories::hasTrajectory ( size_t  entryIndex) const
inline

Check if a trajectory exists for the given index.

Parameters
entryIndexThe trajectory entry index
Returns
Whether there is trajectory with provided entry index

◆ multiTrajectory()

const MultiTrajectory& Jug::Trajectories::multiTrajectory ( ) const
inline

Access the underlying multi trajectory.

◆ tips()

const std::vector<size_t>& Jug::Trajectories::tips ( ) const
inline

Access the tip indices that identify valid trajectories.

◆ trackParameters()

const TrackParameters& Jug::Trajectories::trackParameters ( size_t  entryIndex) const
inline

Access the fitted track parameters for the given index.

Parameters
entryIndexThe trajectory entry index
Returns
The fitted track parameters of the trajectory

The documentation for this struct was generated from the following file: