Belle II Software development
PXDTrackingEventLevelMdstInfoFillerModule.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 <pxd/dataobjects/PXDCluster.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
51 };
53}
Base class for Modules.
Definition: Module.h:72
This module adds additional global event level information about PXD track finding to the MDST object...
StoreObjPtr< EventLevelTrackingInfo > m_eventLevelTrackingInfo
StoreObject to access the event level tracking information.
void event() override
Event processing, create store array.
StoreArray< PXDCluster > m_pxdClusters
StoreArray of PXDClusters.
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.