Belle II Software  release-08-01-10
FullGridChi2TrackTimeExtractor.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/Chi2BasedEventTimeExtractor.h>
13 #include <tracking/eventTimeExtraction/findlets/IterativeChi2BasedEventTimeExtractor.h>
14 
15 namespace Belle2 {
20  class RecoTrack;
21 
22  // Guard to prevent repeated instantiations
23  extern template class GridEventTimeExtractor<Chi2BasedEventTimeExtractor>;
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  };
48 }
Class to extract the event t0 using the chi-squared approach.
IterativeChi2BasedEventTimeExtractor m_finalExtractor
Refining extractor in the end.
GridEventTimeExtractor< Chi2BasedEventTimeExtractor > 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.
Abstract base class for different kinds of events.