ATLAS Offline Software
PythonConfigBase.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 
7 
8 
9 //
10 // includes
11 //
12 
14 
15 //
16 // method implementations
17 //
18 
19 namespace EL
20 {
23  {}
24 
25 
26 
28  PythonConfigBase (const std::string& val_typeAndName)
29  : AsgComponentConfig (val_typeAndName)
30  {}
31 
32 
33 
34  const std::string& PythonConfigBase ::
35  componentType () const noexcept
36  {
37  return m_componentType;
38  }
39 
40 
41 
43  setComponentType (const std::string& val_componentType)
44  {
45  m_componentType = val_componentType;
46  }
47 }
PythonConfigBase.h
const
bool const RAWDATA *ch2 const
Definition: LArRodBlockPhysicsV0.cxx:562
EL::PythonConfigBase::PythonConfigBase
PythonConfigBase()
standard constructor
Definition: PythonConfigBase.cxx:22
EL
This module defines the arguments passed from the BATCH driver to the BATCH worker.
Definition: AlgorithmWorkerData.h:24
EL::PythonConfigBase::componentType
const std::string & componentType() const noexcept
the actual component type to create
Definition: PythonConfigBase.cxx:35
EL::PythonConfigBase::setComponentType
void setComponentType(const std::string &val_componentType)
Definition: PythonConfigBase.cxx:43
EL::PythonConfigBase::m_componentType
std::string m_componentType
the value of componentType
Definition: PythonConfigBase.h:87