Public Member Functions | Private Member Functions | Private Attributes | List of all members
fhicl::WrappedTable< T, KeysToIgnore > Class Template Reference

#include <ConfigurationTable.h>

Inheritance diagram for fhicl::WrappedTable< T, KeysToIgnore >:
fhicl::ConfigurationTable

Public Member Functions

 WrappedTable (fhicl::Name &&name)
 
 WrappedTable (fhicl::ParameterSet const &pset)
 
auto const & operator() () const
 
auto const & get_PSet () const
 
- Public Member Functions inherited from fhicl::ConfigurationTable
virtual ~ConfigurationTable ()=default
 
cet::exempt_ptr< fhicl::detail::ParameterBase const > parameter_base () const
 

Private Member Functions

cet::exempt_ptr< fhicl::detail::ParameterBase const > get_parameter_base () const override
 

Private Attributes

fhicl::Table< T, KeysToIgnoretable_
 

Detailed Description

template<typename T, typename KeysToIgnore = void>
class fhicl::WrappedTable< T, KeysToIgnore >

Definition at line 30 of file ConfigurationTable.h.

Constructor & Destructor Documentation

template<typename T , typename KeysToIgnore = void>
fhicl::WrappedTable< T, KeysToIgnore >::WrappedTable ( fhicl::Name &&  name)
inline

Definition at line 32 of file ConfigurationTable.h.

32 : table_{std::move(name)} {}
def move(depos, offset)
Definition: depos.py:107
fhicl::Table< T, KeysToIgnore > table_
template<typename T , typename KeysToIgnore = void>
fhicl::WrappedTable< T, KeysToIgnore >::WrappedTable ( fhicl::ParameterSet const &  pset)
inline

Definition at line 33 of file ConfigurationTable.h.

33 : table_{pset} {}
fhicl::Table< T, KeysToIgnore > table_

Member Function Documentation

template<typename T , typename KeysToIgnore = void>
cet::exempt_ptr<fhicl::detail::ParameterBase const> fhicl::WrappedTable< T, KeysToIgnore >::get_parameter_base ( ) const
inlineoverrideprivatevirtual

Implements fhicl::ConfigurationTable.

Definition at line 48 of file ConfigurationTable.h.

49  {
50  return &table_;
51  }
fhicl::Table< T, KeysToIgnore > table_
template<typename T , typename KeysToIgnore = void>
auto const& fhicl::WrappedTable< T, KeysToIgnore >::get_PSet ( ) const
inline

Definition at line 40 of file ConfigurationTable.h.

41  {
42  return table_.get_PSet();
43  }
fhicl::Table< T, KeysToIgnore > table_
template<typename T , typename KeysToIgnore = void>
auto const& fhicl::WrappedTable< T, KeysToIgnore >::operator() ( ) const
inline

Definition at line 35 of file ConfigurationTable.h.

36  {
37  return table_();
38  }
fhicl::Table< T, KeysToIgnore > table_

Member Data Documentation

template<typename T , typename KeysToIgnore = void>
fhicl::Table<T, KeysToIgnore> fhicl::WrappedTable< T, KeysToIgnore >::table_
private

Definition at line 46 of file ConfigurationTable.h.


The documentation for this class was generated from the following file: