Belle II Software  release-08-01-10
FlavorTaggerInfoBuilderModule.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 
13 #include <analysis/dataobjects/FlavorTaggerInfo.h>
14 #include <analysis/dataobjects/RestOfEvent.h>
15 #include <analysis/dataobjects/FlavorTaggerInfoMap.h>
16 
17 #include <framework/datastore/StoreArray.h>
18 
19 namespace Belle2 {
35 
36  public:
37 
41  virtual void initialize() override;
43  virtual void event() override;
44 
45  private:
46 
50  };
52 }
53 
Creates for each Particle and RestOfEvent object in the DataStore a FlavorTaggerInfo dataobject and m...
virtual void initialize() override
initialize the module (setup the data store)
virtual void event() override
process event
StoreArray< FlavorTaggerInfoMap > m_flavorTaggerInfoMaps
StoreArray of FlavorTaggerInfoMaps.
StoreArray< FlavorTaggerInfo > m_flavorTaggerInfos
StoreArray of FlavorTaggerInfos.
StoreArray< RestOfEvent > m_roes
StoreArray of ROEs.
Base class for Modules.
Definition: Module.h:72
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Abstract base class for different kinds of events.