Belle II Software development
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
19namespace Belle2 {
32
33 public:
34
38 virtual void initialize() override;
40 virtual void event() override;
41
42 private:
43
47 };
49}
50
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.