CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes | Private Member Functions
cond::persistency::RowBuffer< Columns > Class Template Reference

#include <DbCore.h>

Public Member Functions

const coral::AttributeList & get () const
 
 RowBuffer ()
 
template<typename P >
 RowBuffer (const P &params)
 
template<typename P >
void set (const P &params)
 

Protected Attributes

coral::AttributeList m_data
 

Private Member Functions

template<typename Params , int n, typename T1 , typename... Ts>
void _set (const Params &params, bool init=true)
 
template<typename Params , int n>
void _set (const Params &, bool)
 

Detailed Description

template<typename... Columns>
class cond::persistency::RowBuffer< Columns >

Definition at line 173 of file DbCore.h.

Constructor & Destructor Documentation

template<typename... Columns>
cond::persistency::RowBuffer< Columns >::RowBuffer ( )
inline

Definition at line 185 of file DbCore.h.

185 : m_data() {}
coral::AttributeList m_data
Definition: DbCore.h:202
template<typename... Columns>
template<typename P >
cond::persistency::RowBuffer< Columns >::RowBuffer ( const P params)
inlineexplicit

Definition at line 188 of file DbCore.h.

188  : m_data() {
189  _set<P, 0, Columns...>(params);
190  }
void _set(const Params &params, bool init=true)
Definition: DbCore.h:176
std::pair< OmniClusterRef, TrackingParticleRef > P
coral::AttributeList m_data
Definition: DbCore.h:202

Member Function Documentation

template<typename... Columns>
template<typename Params , int n, typename T1 , typename... Ts>
void cond::persistency::RowBuffer< Columns >::_set ( const Params &  params,
bool  init = true 
)
inlineprivate
template<typename... Columns>
template<typename Params , int n>
void cond::persistency::RowBuffer< Columns >::_set ( const Params &  ,
bool   
)
inlineprivate

Definition at line 182 of file DbCore.h.

182 {}
template<typename... Columns>
const coral::AttributeList& cond::persistency::RowBuffer< Columns >::get ( ) const
inline
template<typename... Columns>
template<typename P >
void cond::persistency::RowBuffer< Columns >::set ( const P params)
inline

Definition at line 193 of file DbCore.h.

193  {
194  bool init = (m_data.size() == 0);
195  // if RowBuffer becames a single type, we need to run either the equivalent of _RowBuffer ( having addAttribute ) when m_data.size()=0, or _set in all other cases
196  _set<P, 0, Columns...>(params, init);
197  }
void _set(const Params &params, bool init=true)
Definition: DbCore.h:176
int init
Definition: HydjetWrapper.h:64
Definition: init.py:1
std::pair< OmniClusterRef, TrackingParticleRef > P
coral::AttributeList m_data
Definition: DbCore.h:202

Member Data Documentation

template<typename... Columns>
coral::AttributeList cond::persistency::RowBuffer< Columns >::m_data
protected