Belle II Software  release-06-00-14
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 
12 using namespace std;
13 using namespace Belle2;
14 
15 
16 REG_MODULE(CollectorTest)
17 
19 {
20  setDescription("CollectorTest.");
21 }
22 
23 void CollectorTestModule::initialize()
24 {
25 
26 }
27 
28 void CollectorTestModule::event()
29 {
30 
31 }
32 
33 void CollectorTestModule::terminate()
34 {
35  cerr << "\n";
36 }
37 
Base class for Modules.
Definition: Module.h:72
#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.