Belle II Software development
SVDTrackingEventLevelMdstInfoFillerModule.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
15#include <svd/dataobjects/SVDCluster.h>
16
17#include <mdst/dataobjects/EventLevelTrackingInfo.h>
18
19
20namespace Belle2 {
31
32 public:
33
36
38 void initialize() override;
39
41 void event() override;
42
43 private:
44
47
50
52 std::string m_svdClustersName = "";
53
56
57 };
59}
Base class for Modules.
Definition: Module.h:72
This module adds additional global event level information about SVD track finding to the MDST object...
std::string m_eventLevelTrackingInfoName
Name of the StoreObject to access the event level tracking information.
StoreObjPtr< EventLevelTrackingInfo > m_eventLevelTrackingInfo
StoreObject to access the event level tracking information.
StoreArray< SVDCluster > m_svdClusters
StoreArray of SVDClusters.
void event() override
Event processing, create store array.
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.