Class for grid data attached to dgf or gmsh grid files.  
|  | 
|  | GridData (Dune::GridPtr< Grid > grid, const std::string ¶mGroup) | 
|  | constructor for dgf grid data 
 | 
|  | 
|  | GridData (std::shared_ptr< Grid > grid, const std::string ¶mGroup) | 
|  | constructor for non-dgf grid data 
 | 
|  | 
| const std::vector< double > & | parameters (const Vertex &vertex) const | 
|  | Call the parameters function of the DGF grid pointer if available for vertex data. 
 | 
|  | 
| const std::vector< double > & | parameters (const Element &element) const | 
|  | Call the parameters function of the DGF grid pointer if available for element data. 
 | 
|  | 
| template<class GridImp, class IntersectionImp> | 
| const Dune::DGFBoundaryParameter::type & | parameters (const Dune::Intersection< GridImp, IntersectionImp > &intersection) const | 
|  | Call the parameters function of the DGF grid pointer if available. 
 | 
|  | 
| std::vector< SmallLocalIndex > | getCoordinationNumbers () const | 
|  | Returns the coordination numbers for all pore bodies. 
 | 
|  | 
| void | assignParameters () | 
|  | Assign parameters for generically created grids. 
 | 
|  | 
| void | resizeParameterContainers () | 
|  | 
| void | copyDgfData () | 
|  | 
| int | parameterIndex (const std::string ¶mName) const | 
|  | Return the index for a given parameter name. 
 | 
|  | 
| const std::string & | paramGroup () const | 
|  | Return the parameter group. 
 | 
|  | 
| bool | gridHasElementParameter (const std::string ¶m) const | 
|  | Return if a given element parameter is provided by the grid. 
 | 
|  | 
| bool | gridHasVertexParameter (const std::string ¶m) const | 
|  | Return if a given vertex parameter is provided by the grid. 
 | 
|  | 
| Scalar | getParameter (const Element &element, const std::string ¶m) const | 
|  | Returns the value of an element parameter. 
 | 
|  | 
| Scalar | getParameter (const Vertex &vertex, const std::string ¶m) const | 
|  | Returns the value of an vertex parameter. 
 | 
|  | 
| int | poreLabelAtPosForGenericGrid (const GlobalPosition &pos) const | 
|  | Returns the pore label at a given position for a generic grid. This is needed by the grid creator in case not all parameters are initialized yet. 
 | 
|  | 
| const std::vector< std::string > & | vertexParameterNames () const | 
|  | Returns the names of the vertex parameters. 
 | 
|  | 
| const std::vector< std::string > & | elementParameterNames () const | 
|  | Returns the names of the element parameters. 
 | 
|  |