Belle II Software development
ActivatePXDPixelMaskerModule.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
9#include <pxd/modules/pxdReconstruction/ActivatePXDPixelMaskerModule.h>
10#include <pxd/reconstruction/PXDPixelMasker.h>
11
12using namespace Belle2;
13using namespace Belle2::PXD;
14using namespace std;
15
16//-----------------------------------------------------------------
17// Register the Module
18//-----------------------------------------------------------------
19REG_MODULE(ActivatePXDPixelMasker);
20
22{
23 //Set module properties
24 setDescription("Initialization of PXDPixelMasker");
26}
27
28
30{
32}
33
34
Base class for Modules.
Definition: Module.h:72
void setDescription(const std::string &description)
Sets the description of the module.
Definition: Module.cc:214
void setPropertyFlags(unsigned int propertyFlags)
Sets the flags for the module properties.
Definition: Module.cc:208
@ c_ParallelProcessingCertified
This module can be run in parallel processing mode safely (All I/O must be done through the data stor...
Definition: Module.h:80
void initialize() override final
Initialize the module.
void initialize()
Initialize the PXDPixelMasker.
static PXDPixelMasker & getInstance()
Main (and only) way to access the PXDPixelMasker.
#define REG_MODULE(moduleName)
Register the given module (without 'Module' suffix) with the framework.
Definition: Module.h:650
Namespace to encapsulate code needed for simulation and reconstrucion of the PXD.
Abstract base class for different kinds of events.
STL namespace.