Belle II Software development
EventsOfDoomBusterModule.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#pragma once
9
10/* Basf2 headers. */
11#include <framework/core/Module.h>
12#include <framework/database/DBObjPtr.h>
13#include <framework/datastore/StoreArray.h>
14#include <framework/datastore/StoreObjPtr.h>
15
16/* C++ headers. */
17#include <cstdint>
18
19namespace Belle2 {
24 class EventMetaData;
25 class CDCHit;
26 class SVDShaperDigit;
28
34 class EventsOfDoomBusterModule final : public Module {
35
36 public:
39
42
44 void initialize() final;
45
47 void beginRun() final;
48
54 void event() final;
55
56 private:
61 uint32_t m_nCDCHitsMax = 1e9;
66 uint32_t m_nSVDShaperDigitsMax = 1e9;
67
70
73
76
79
80 };
81
82} // Belle2 namespace
Class containing the result of the unpacker in raw data and the result of the digitizer in simulation...
Definition CDCHit.h:40
Class for accessing objects in the database.
Definition DBObjPtr.h:21
Store event, run, and experiment numbers.
virtual ~EventsOfDoomBusterModule() final
Default Destructor.
uint32_t m_nCDCHitsMax
The max number of CDC hits for an event to be kept for reconstruction.
void initialize() final
Module initializer.
void beginRun() final
Called when entering a new run.
uint32_t m_nSVDShaperDigitsMax
The max number of SVD shaper digits for an event to be kept for reconstruction.
StoreObjPtr< EventMetaData > m_eventInfo
Event Meta Data Store ObjPtr.
DBObjPtr< EventsOfDoomParameters > m_eventsOfDoomParameters
EventsOfDoomParameters Database OjbPtr.
StoreArray< SVDShaperDigit > m_svdShaperDigits
SVDShaperDigits StoreArray.
StoreArray< CDCHit > m_cdcHits
CDCHits StoreArray.
DBObject containing parameters used in EventsOfDoomBuster module.
Module()
Constructor.
Definition Module.cc:30
The SVD ShaperDigit class.
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
Abstract base class for different kinds of events.