Belle II Software development
StereoHitFinderModule.cc
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#include <tracking/modules/trackFinderCDC/StereoHitFinderModule.h>
9
10using namespace Belle2;
11using namespace TrackFindingCDC;
12using namespace TrackingUtilities;
13
14REG_MODULE(TFCDC_StereoHitFinder);
15REG_MODULE(TFCDC_MonopoleStereoHitFinder);
16REG_MODULE(TFCDC_MonopoleStereoHitFinderQuadratic);
17
19 : Super({"CDCWireHitVector", "CDCTrackVector"})
20{
21}
22
27
29 : Super({"CDCWireHitVector", "CDCMonopoleTrackVector"})
30{
31}
TrackingUtilities::FindletModule< MonopoleStereoHitFinder > Super
The base class.
TFCDC_MonopoleStereoHitFinderModule()
Tries to add CDC stereo hits to the found CDC tracks by applying a histogramming method with a quad t...
TFCDC_MonopoleStereoHitFinderQuadraticModule()
Tries to add CDC stereo hits to the found CDC tracks by applying a histogramming method with a quad t...
TrackingUtilities::FindletModule< MonopoleStereoHitFinderQuadratic > Super
The base class.
TFCDC_StereoHitFinderModule()
Tries to add CDC stereo hits to the found CDC tracks by applying a histogramming method with a 2D hou...
TrackingUtilities::FindletModule< StereoHitFinder > Super
The base class.
#define REG_MODULE(moduleName)
Register the given module (without 'Module' suffix) with the framework.
Definition Module.h:649
Abstract base class for different kinds of events.