Belle II Software development
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
17namespace Belle2 {
27 class TTDUnpackerModule : public Module {
28
29 public:
30
33
34 private:
39
40 void initialize() override final;
42 void event() override final;
44 };//end class declaration
45
46
48} // 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.