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;
12
13REG_MODULE(TFCDC_StereoHitFinder);
14REG_MODULE(TFCDC_MonopoleStereoHitFinder);
15REG_MODULE(TFCDC_MonopoleStereoHitFinderQuadratic);
16
18 : Super({"CDCWireHitVector", "CDCTrackVector"})
19{
20}
21
23 : Super({"CDCWireHitVector", "CDCMonopoleTrackVector"})
24{
25}
26
28 : Super({"CDCWireHitVector", "CDCMonopoleTrackVector"})
29{
30}
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...
TFCDC_StereoHitFinderModule()
Tries to add CDC stereo hits to the found CDC tracks by applying a histogramming method with a 2D hou...
#define REG_MODULE(moduleName)
Register the given module (without 'Module' suffix) with the framework.
Definition: Module.h:650
Abstract base class for different kinds of events.