Belle II Software development
PlaneTriggerTrackTimeEstimatorModule.h
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8#pragma once
9
10#include <tracking/modules/fitter/timeEstimator/BaseTrackTimeEstimatorModule.h>
11
12namespace Belle2 {
21
22 public:
25
26 private:
28 std::vector<double> m_param_triggerPlanePosition = {0, 0, 0};
30 std::vector<double> m_param_triggerPlaneNormalDirection = {1, 0, 0};
31
33 double estimateFlightLengthUsingFittedInformation(genfit::MeasuredStateOnPlane& measuredStateOnPlane) const override;
35 double estimateFlightLengthUsingSeedInformation(const RecoTrack& recoTrack) const override;
36 };
38}
Base Module estimating the track time of RecoTracks - before or after the fit.
Module estimating the track time of RecoTracks - before or after the fit.
double estimateFlightLengthUsingSeedInformation(const RecoTrack &recoTrack) const override
Estimate the flight length using only the tracking seeds.
double estimateFlightLengthUsingFittedInformation(genfit::MeasuredStateOnPlane &measuredStateOnPlane) const override
Estimate the flight length to the given plane using the extrapolation of the fit.
std::vector< double > m_param_triggerPlaneNormalDirection
3-Normal direction of the plane of the trigger.
std::vector< double > m_param_triggerPlanePosition
3-Position of the plane of the trigger.
PlaneTriggerTrackTimeEstimatorModule()
Initilialize the module parameters.
This is the Reconstruction Event-Data Model Track.
Definition: RecoTrack.h:79
Abstract base class for different kinds of events.