5#ifndef DUNE_DGF_GRIDPARAMETERBLOCK_HH
6#define DUNE_DGF_GRIDPARAMETERBLOCK_HH
11#include <dune/grid/io/file/dgfparser/blocks/basic.hh>
37 typedef unsigned int Flags;
39 static const Flags foundName = 1 << 0;
40 static const Flags foundDumpFileName = 1 << 1;
41 static const Flags foundLongestEdge = 1 << 5;
46 std::string dumpFileName_;
47 bool markLongestEdge_;
58 const std::string &
name (
const std::string &defaultValue )
const
60 if( (foundFlags_ & foundName) == 0 )
62 dwarn <<
"GridParameterBlock: Parameter 'name' not specified, "
63 <<
"defaulting to '" << defaultValue <<
"'." << std::endl;
70 const std::string &dumpFileName ( )
const
72 if( (foundFlags_ & foundDumpFileName) != 0 )
74 dwarn <<
"GridParameterBlock: found Parameter 'dumpfilename', "
75 <<
"dumping file to `" << dumpFileName_ <<
"'" << std::endl;
83 if( (foundFlags_ & foundLongestEdge) == 0 )
85 dwarn <<
"GridParameterBlock: Parameter 'refinementedge' not specified, "
86 <<
"defaulting to 'ARBITRARY'." << std::endl;
88 return markLongestEdge_;
Common Grid parameters.
Definition: gridparameter.hh:35
GridParameterBlock(std::istream &in)
constructor: read commmon parameters
const std::string & name(const std::string &defaultValue) const
return the name of the grid
Definition: gridparameter.hh:58
bool markLongestEdge() const
returns true if longest edge should be marked for AlbertaGrid
Definition: gridparameter.hh:81
DWarnType dwarn(std::cerr)
Stream for warnings indicating problems.
Definition: stdstreams.hh:161
Dune namespace.
Definition: alignedallocator.hh:13