https://mooseframework.inl.gov
Classes | Functions
FaceCenteredMapFunctor.h File Reference

Go to the source code of this file.

Classes

class  FaceCenteredMapFunctor< T, Map >
 A functor whose evaluation relies on querying a map where the keys are face info ids and the values correspond to the face values. More...
 

Functions

template<typename T , typename Map >
void dataStore (std::ostream &stream, FaceCenteredMapFunctor< T, Map > &m, void *context)
 
template<typename T , typename Map >
void dataLoad (std::istream &stream, FaceCenteredMapFunctor< T, Map > &m, void *context)
 

Function Documentation

◆ dataLoad()

template<typename T , typename Map >
void dataLoad ( std::istream &  stream,
FaceCenteredMapFunctor< T, Map > &  m,
void context 
)
inline

Definition at line 134 of file FaceCenteredMapFunctor.h.

Referenced by XFEM::loadMaterialPropertiesForElementHelper(), and TEST().

135 {
136  Map & m_map = m;
137  dataLoad(stream, m_map, context);
138 }
void dataLoad(std::istream &stream, FaceCenteredMapFunctor< T, Map > &m, void *context)

◆ dataStore()

template<typename T , typename Map >
void dataStore ( std::ostream &  stream,
FaceCenteredMapFunctor< T, Map > &  m,
void context 
)
inline

Definition at line 126 of file FaceCenteredMapFunctor.h.

Referenced by XFEM::storeMaterialPropertiesForElementHelper(), and TEST().

127 {
128  Map & m_map = m;
129  dataStore(stream, m_map, context);
130 }
void dataStore(std::ostream &stream, FaceCenteredMapFunctor< T, Map > &m, void *context)