Belle II Software release-09-00-00
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 {
24
25 public:
28
29 private:
31 std::vector<double> m_param_triggerPlanePosition = {0, 0, 0};
33 std::vector<double> m_param_triggerPlaneNormalDirection = {1, 0, 0};
34
36 double estimateFlightLengthUsingFittedInformation(genfit::MeasuredStateOnPlane& measuredStateOnPlane) const override;
38 double estimateFlightLengthUsingSeedInformation(const RecoTrack& recoTrack) const override;
39 };
41}
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.