Belle II Software  release-05-01-25
PXDGatedInfoFillerModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2013 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Bjoern Spruck *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 
13 #include <framework/core/Module.h>
14 //#include <pxd/dataobjects/PXDDAQStatus.h>
15 #include <pxd/dataobjects/PXDGatedModeInfo.h>
16 
17 #include <framework/datastore/StoreObjPtr.h>
18 
19 namespace Belle2 {
25  namespace PXD {
32  class PXDGatedInfoFillerModule : public Module {
33 
34  public:
35 
38 
39  private:
40  void initialize() override final;
41 
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
Belle2::PXDGatedModeInfo
The PXD Gated Info Class.
Definition: PXDGatedModeInfo.h:45
Belle2::PXD::PXDGatedInfoFillerModule::m_GatedModeInfoName
std::string m_GatedModeInfoName
Name of input array for DAQ Status.
Definition: PXDGatedInfoFillerModule.h:54
Belle2::PXD::PXDGatedInfoFillerModule::PXDGatedInfoFillerModule
PXDGatedInfoFillerModule()
Constructor defining the parameters.
Definition: PXDGatedInfoFillerModule.cc:25
Belle2::PXD::PXDGatedInfoFillerModule::initialize
void initialize() override final
Initialize the Module.
Definition: PXDGatedInfoFillerModule.cc:34
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::StoreObjPtr
Type-safe access to single objects in the data store.
Definition: ParticleList.h:33
Belle2::PXD::PXDGatedInfoFillerModule::m_storeGatedModeInfo
StoreObjPtr< PXDGatedModeInfo > m_storeGatedModeInfo
Input array for DAQ Status.
Definition: PXDGatedInfoFillerModule.h:56
Belle2::PXD::PXDGatedInfoFillerModule::event
void event() override final
This method is the core of the module.
Definition: PXDGatedInfoFillerModule.cc:40