Belle II Software development
SignalSideVariablesToDaughterExtraInfoModule.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/StoreObjPtr.h>
13
14#include <analysis/dataobjects/ParticleList.h>
15#include <analysis/VariableManager/Manager.h>
16
17#include <string>
18#include <map>
19
20namespace Belle2 {
32
33 public:
34
39
41 virtual void initialize() override;
42
44 virtual void event() override;
45
46
47 private:
48
49 std::string m_particleListName;
57 std::map<std::string, std::string> m_variablesToExtraInfo;
58
60 std::vector<Variable::Manager::FunctionPtr> m_functions;
62 std::vector<std::string> m_extraInfoNames;
64 int m_overwrite = 0;
65 };
67}
68
Base class for Modules.
Definition: Module.h:72
The module writes properties (values of specified variables) of the particle related to the current R...
virtual void initialize() override
Register input and output data.
std::map< std::string, std::string > m_variablesToExtraInfo
Map of variable and extraInfo names to save in the extra-info field.
SignalSideVariablesToDaughterExtraInfoModule()
Constructor: Sets the description, the properties and the parameters of the module.
int m_overwrite
-1/0/1/2: Overwrite if lower / don't overwrite / overwrite if higher / always overwrite,...
std::vector< Variable::Manager::FunctionPtr > m_functions
Vector of function pointers corresponding to given variables.
std::vector< std::string > m_extraInfoNames
Vector of extra info names.
Type-safe access to single objects in the data store.
Definition: StoreObjPtr.h:96
Abstract base class for different kinds of events.