Belle II Software development
TrackToolsModules.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/TrackToolsModules.h>
9
10#include <tracking/trackFindingCDC/eventdata/tracks/CDCTrack.h>
11
12using namespace Belle2;
13using namespace TrackFindingCDC;
14
15REG_MODULE(TFCDC_TrackRejecter);
16REG_MODULE(TFCDC_TrackQualityAsserter);
17REG_MODULE(TFCDC_TrackOrienter);
18REG_MODULE(TFCDC_TrackFlightTimeAdjuster);
19REG_MODULE(TFCDC_TrackExporter);
20
22 : Super({"CDCTrackVector"})
23{
24}
25
27 : Super({"CDCTrackVector"})
28{
29}
30
32 : Super({"CDCTrackVector"})
33{
34}
35
37 : Super({"CDCTrackVector"})
38{
39}
40
42 : Super({"CDCTrackVector"})
43{
44}
TFCDC_TrackExporterModule()
Constructor setting the default store vector names.
TFCDC_TrackFlightTimeAdjusterModule()
Constructor setting the default store vector names.
TFCDC_TrackOrienterModule()
Constructor setting the default store vector names.
TFCDC_TrackQualityAsserterModule()
Constructor setting the default store vector names.
TFCDC_TrackRejecterModule()
Constructor setting the default store vector names.
#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.