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

Constructor & Destructor Documentation

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

Definition at line 153 of file DbCore.h.

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

Definition at line 158 of file DbCore.h.

158  :
159  m_data() {
160  _set<P, 0, Columns...>(params);
161  }
void _set(const Params &params, bool init=true)
Definition: DbCore.h:143
std::pair< OmniClusterRef, TrackingParticleRef > P
coral::AttributeList m_data
Definition: DbCore.h:175

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 143 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().

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

Definition at line 149 of file DbCore.h.

149  {
150  }
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 164 of file DbCore.h.

164  {
165  bool init = (m_data.size()==0);
166  // 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
167  _set<P, 0, Columns...>(params, init);
168  }
void _set(const Params &params, bool init=true)
Definition: DbCore.h:143
std::pair< OmniClusterRef, TrackingParticleRef > P
coral::AttributeList m_data
Definition: DbCore.h:175

Member Data Documentation

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