Skip to content
Snippets Groups Projects
Commit ae928812 authored by Oliver Sander's avatar Oliver Sander
Browse files

- The print output is nicer

- print is const
- the name_ member variable is now std::string
- bugfix: copy constructor didn't copy name_

[[Imported from SVN: r709]]
parent 819d66e0
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ namespace Dune {
void setLocal (GridIteratorType &it, const RangeFieldType &scalar);
//! print all dofs
void print(std::ostream& s, int level);
void print(std::ostream& s, int level) const;
//! write leaf data to file in USPM format for Grape
bool write_USPM(const char *filename , int timestep);
......@@ -196,7 +196,7 @@ namespace Dune {
}
//! the name of the function
const char * name_;
std::string name_;
//! true if memory was allocated
bool built_;
......
......@@ -19,7 +19,7 @@ namespace Dune
, freeLocalFunc_ (NULL)
, localFunc_ ( f, dofVec_ ) {}
// Constructor makeing discrete function
// Constructor making discrete function
template<class DiscreteFunctionSpaceType >
inline DiscFuncArray< DiscreteFunctionSpaceType >::
DiscFuncArray(DiscreteFunctionSpaceType & f,
......@@ -38,7 +38,7 @@ namespace Dune
getMemory();
}
// Constructor makeing discrete function
// Constructor making discrete function
template<class DiscreteFunctionSpaceType >
inline DiscFuncArray< DiscreteFunctionSpaceType >::
DiscFuncArray(const char * name, DiscreteFunctionSpaceType & f,
......@@ -62,6 +62,7 @@ namespace Dune
DiscFuncArray(const DiscFuncArray <DiscreteFunctionSpaceType> & df ) :
DiscreteFunctionDefaultType ( df.functionSpace_ ) , localFunc_ ( df.localFunc_ )
{
name_ = df.name_;
built_ = df.built_;
levOcu_ = df.levOcu_;
level_ = df.level_;
......@@ -128,12 +129,13 @@ namespace Dune
}
template<class DiscreteFunctionSpaceType >
inline void DiscFuncArray< DiscreteFunctionSpaceType >::print(std::ostream &s, int level )
inline void DiscFuncArray< DiscreteFunctionSpaceType >::print(std::ostream &s, int level ) const
{
s << "DiscFuncArray '" << name_ << "', level " << level << "\n";
DofIteratorType enddof = this->dend ( level );
for(DofIteratorType itdof = this->dbegin ( level ); itdof != enddof; ++itdof)
{
s << (*itdof) << " DofValue \n";
s << (*itdof) << " \n";
}
}
//*************************************************************************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment