Belle II Software development
FullGridDriftLengthTrackTimeExtractor.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/eventTimeExtraction/findlets/BaseEventTimeExtractor.dcl.h>
11#include <tracking/eventTimeExtraction/findlets/GridEventTimeExtractor.dcl.h>
12#include <tracking/eventTimeExtraction/findlets/DriftLengthBasedEventTimeExtractor.h>
13#include <tracking/eventTimeExtraction/findlets/IterativeChi2BasedEventTimeExtractor.h>
14
15namespace Belle2 {
20 class RecoTrack;
21
22 // Guard to prevent repeated instantiations
24
27 private:
30
31 public:
34
36 void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) override final;
37
39 void apply(std::vector<RecoTrack*>&) override final;
40
41 private:
46 };
47
48}
Class to extract the event t0.
IterativeChi2BasedEventTimeExtractor m_finalExtractor
Refining extractor in the end.
BaseEventTimeExtractor< RecoTrack * > Super
Type of the base class.
void apply(std::vector< RecoTrack * > &) override final
Timing extraction for this findlet.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) override final
Copy the parameters.
GridEventTimeExtractor< DriftLengthBasedEventTimeExtractor > m_gridExtractor
Slow grid based extractor.
Generic findlet applying a certain time extractor multiple times.
Class to iteratively extract the event t0 using the chi-squared approach.
The Module parameter list class.
This is the Reconstruction Event-Data Model Track.
Definition RecoTrack.h:79
Abstract base class for different kinds of events.