Belle II Software  release-08-01-10
SignalSideVariablesToExtraInfoModule.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 <analysis/dataobjects/ParticleList.h>
13 #include <framework/datastore/StoreObjPtr.h>
14 
15 #include <analysis/VariableManager/Manager.h>
16 
17 #include <string>
18 #include <map>
19 
20 namespace Belle2 {
36 
37  public:
38 
42  virtual void initialize() override;
44  virtual void event() override;
45 
46 
47  private:
48 
49  std::string m_particleListName;
57  std::map<std::string, std::string> m_variableToExtraInfo;
58 
60  std::vector<Variable::Manager::FunctionPtr> m_functions;
62  std::vector<std::string> m_extraInfoNames;
63 
65  };
67 }
68 
Base class for Modules.
Definition: Module.h:72
The module writes property of single particle found in the input ParticleList as an ExtraInfo to the ...
std::string m_particleListName
The input particleList name.
bool m_allVariablesEventbased
Whether all variables are event-based.
virtual void initialize() override
Register input and output data.
StoreObjPtr< ParticleList > m_inputList
input particle list
std::map< std::string, std::string > m_variableToExtraInfo
Map of variable and extraInfo name to save in the extra-info field.
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.