Belle II Software development
ModuleParamInfoPython.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 <boost/python/list.hpp>
12
13#include <string>
14
15namespace Belle2 {
25
26 public:
27
28 std::string m_name;
29 std::string m_typeName;
30 boost::python::list m_defaultValues;
31 boost::python::list m_values;
32 std::string m_description;
40 static void exposePythonAPI();
41 };
43}
Class to store basic information about a parameter.
static void exposePythonAPI()
Exposes methods of the ModuleParam class to Python.
bool m_forceInSteering
If true the parameter has to be set by the user in the steering file.
bool m_setInSteering
True if the parameter was set in the steering file.
std::string m_description
The description of the parameter.
boost::python::list m_defaultValues
The default values of the parameter as a python list.
std::string m_name
The name of the parameter.
boost::python::list m_values
The values of the parameter as a python list.
std::string m_typeName
The name of the type of the parameter.
Abstract base class for different kinds of events.