Belle II Software  release-08-01-10
TTDUnpackerModule.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 <framework/datastore/StoreArray.h>
13 #include <framework/datastore/StoreObjPtr.h>
14 #include <rawdata/dataobjects/RawFTSW.h>
15 #include <mdst/dataobjects/EventLevelTriggerTimeInfo.h>
16 
17 namespace Belle2 {
30  class TTDUnpackerModule : public Module {
31 
32  public:
33 
36 
37  private:
42 
43  void initialize() override final;
45  void event() override final;
47  };//end class declaration
48 
49 
51 } // end namespace Belle2
Base class for Modules.
Definition: Module.h:72
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Type-safe access to single objects in the data store.
Definition: StoreObjPtr.h:96
TTD Unpacker module.
void initialize() override final
initialize function
StoreArray< RawFTSW > m_rawTTD
Input array for TTD/FTSW.
void event() override final
event function
TTDUnpackerModule()
Constructor defining the parameters.
StoreObjPtr< EventLevelTriggerTimeInfo > m_EventLevelTriggerTimeInfo
Output object for TTD mdst object.
Abstract base class for different kinds of events.