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