Belle II Software  release-08-01-10
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 
20 namespace Belle2 {
34 
35  public:
36 
39 
41  void initialize() override;
42 
44  void event() override;
45 
46  private:
47 
50 
53 
54  };
56 }
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.
Type-safe access to single objects in the data store.
Definition: StoreObjPtr.h:96
Abstract base class for different kinds of events.