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 136 of file DbCore.h.

Constructor & Destructor Documentation

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

Definition at line 150 of file DbCore.h.

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

Definition at line 155 of file DbCore.h.

155  :
156  m_data() {
157  _set<P, 0, Columns...>(params);
158  }
void _set(const Params &params, bool init=true)
Definition: DbCore.h:140
std::pair< OmniClusterRef, TrackingParticleRef > P
coral::AttributeList m_data
Definition: DbCore.h:172

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

Definition at line 140 of file DbCore.h.

Referenced by cond::persistency::RowBuffer< Types... >::_set(), cond::persistency::UpdateBuffer::_set(), cond::persistency::RowBuffer< Types... >::RowBuffer(), cond::persistency::RowBuffer< Types... >::set(), and cond::persistency::UpdateBuffer::setColumnData().

140  {
141  f_add_column_data<T1>( m_data, std::get<n>( params ), init );
142  _set<Params, n+1, Ts...>(params, init);
143  }
void _set(const Params &params, bool init=true)
Definition: DbCore.h:140
int init
Definition: HydjetWrapper.h:67
coral::AttributeList m_data
Definition: DbCore.h:172
template<typename... Columns>
template<typename Params , int n>
void cond::persistency::RowBuffer< Columns >::_set ( const Params &  ,
bool   
)
inlineprivate

Definition at line 146 of file DbCore.h.

146  {
147  }
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 161 of file DbCore.h.

161  {
162  bool init = (m_data.size()==0);
163  // 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
164  _set<P, 0, Columns...>(params, init);
165  }
void _set(const Params &params, bool init=true)
Definition: DbCore.h:140
int init
Definition: HydjetWrapper.h:67
std::pair< OmniClusterRef, TrackingParticleRef > P
coral::AttributeList m_data
Definition: DbCore.h:172

Member Data Documentation

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