Belle II Software development
CollectorTestModule.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/trackFinderVXDTests/CollectorTestModule.h>
9
10#include <iostream>
11
12using namespace Belle2;
13
14
15REG_MODULE(CollectorTest);
16
18{
19 setDescription("CollectorTest.");
20}
21
23{
24
25}
26
28{
29
30}
31
33{
34 std::cerr << "\n";
35}
36
void initialize() override
Init the module.
void event() override
Show progress.
void terminate() override
Don't break the terminal.
Base class for Modules.
Definition: Module.h:72
void setDescription(const std::string &description)
Sets the description of the module.
Definition: Module.cc:214
#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.