Belle II Software  release-08-01-10
PXDGatedInfoFillerModule.h
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 #pragma once
10 
11 #include <framework/core/Module.h>
12 //#include <pxd/dataobjects/PXDDAQStatus.h>
13 #include <pxd/dataobjects/PXDGatedModeInfo.h>
14 
15 #include <framework/datastore/StoreObjPtr.h>
16 
17 namespace Belle2 {
23  namespace PXD {
31 
32  public:
33 
36 
37  private:
39  void initialize() override final;
40 
42  void event() override final;
43 
44  private:
46  std::string m_GatedModeInfoName;
49 
50  };//end class declaration
51 
52 
53  } //end PXD namespace;
55 } // end namespace Belle2
Base class for Modules.
Definition: Module.h:72
PXD Gates Mode infromation on readout gate basis.
void initialize() override final
Initialize.
StoreObjPtr< PXDGatedModeInfo > m_storeGatedModeInfo
Input array for DAQ Status.
PXDGatedInfoFillerModule()
Constructor defining the parameters.
std::string m_GatedModeInfoName
Name of input array for DAQ Status.
Type-safe access to single objects in the data store.
Definition: StoreObjPtr.h:96
Abstract base class for different kinds of events.