Belle II Software prerelease-10-00-00a
SVDTriggerQualityGeneratorModule.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#ifndef SVDTRIGGERQUALITYGENERATORMODULE_H
10#define SVDTRIGGERQUALITYGENERATORMODULE_H
11
12#include <framework/core/Module.h>
13#include <framework/datastore/StoreArray.h>
14#include <framework/datastore/StoreObjPtr.h>
15#include <mdst/dataobjects/TRGSummary.h>
16
17#include <string>
18#include <cmath>
19#include <cstdlib>
20
21namespace Belle2 {
32
33 public:
38
41
43 virtual void beginRun() override;
44
46 virtual void event() override;
47
49 virtual void endRun() override;
50
52 virtual void terminate() override;
53
55 virtual void initialize() override;
56
57 private:
58 std::string m_trgQRGName = "TRGSummary";
60 };
61
62}
63
64#endif /* SVDTRIGGERQUALITYGENERATORMODULE_H */
Module()
Constructor.
Definition Module.cc:30
virtual void initialize() override
init the module
virtual void event() override
processes the event
virtual void terminate() override
terminates the module
std::string m_trgQRGName
name of the output TRGQualityRG StoreObjPtr
StoreObjPtr< TRGSummary > m_triggerQRG
storage for TRGQualityRG object required for the module
virtual void beginRun() override
initializes the module
SVDTriggerQualityGeneratorModule()
Constructor: Sets the description, the properties and the parameters of the module.
Type-safe access to single objects in the data store.
Definition StoreObjPtr.h:96
Abstract base class for different kinds of events.