Skip to content
Snippets Groups Projects
Commit 0379f402 authored by Adrian Burri's avatar Adrian Burri
Browse files

Reduced number of template parameter for DofManager

[[Imported from SVN: r2744]]
parent 3bfd75b0
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@
#include <dune/common/stdstreams.hh>
#include <dune/common/exceptions.hh>
#include <dune/common/genericiterator.hh>
#include <dune/common/interfaces.hh>
#include <dune/fem/common/dofmapperinterface.hh>
......@@ -26,8 +27,7 @@
namespace Dune {
// forward declaration
template <class GridType,
class DataCollectorImp = DataCollectorInterface<GridType> >
template <class GridType>
class DofManager;
template <class DofManagerImp> class DofManagerFactory;
......@@ -679,7 +679,7 @@ namespace Dune {
created. The default value for the IndexSet is the DefaultIndexSet class
which is mostly a wrapper for the grid indices.
*/
template <class GridImp , class DataCollectorImp >
template <class GridImp>
class DofManager
{
public:
......@@ -687,10 +687,15 @@ namespace Dune {
typedef GridImp GridType;
private:
typedef DofManager<GridType,DataCollectorImp> MyType;
typedef DofManager<GridType> MyType;
friend class DofManagerFactory<MyType>;
public:
typedef DataCollectorImp DataCollectorType;
typedef typename GridObjectStreamOrDefault<GridType, DummyObjectStream>::ObjectStreamType ObjectStreamType;
typedef DataCollector<
GridType,
DataCollectorInterface<GridType, ObjectStreamType> > DataCollectorType;
// all things for one discrete function are put together in a MemObject
typedef MemPointerType MemoryPointerType;
......@@ -971,8 +976,8 @@ namespace Dune {
//
//***************************************************************************
template <class GridType, class DataCollectorType>
inline DofManager<GridType,DataCollectorType>::~DofManager ()
template <class GridType>
inline DofManager<GridType>::~DofManager ()
{
if(memList_.size() > 0)
{
......@@ -999,9 +1004,9 @@ namespace Dune {
}
template <class GridType, class DataCollectorType>
template <class GridType>
template <class IndexSetType>
inline void DofManager<GridType,DataCollectorType>::
inline void DofManager<GridType>::
addIndexSet (const GridType &grid, IndexSetType &iset)
{
if(&grid_ != &grid)
......@@ -1038,9 +1043,9 @@ namespace Dune {
return ;
}
template <class GridType, class DataCollectorType>
template <class GridType>
template <class IndexSetType>
inline bool DofManager<GridType,DataCollectorType>::
inline bool DofManager<GridType>::
checkIndexSetExists (const IndexSetType &iset) const
{
const IndexSetInterface & set = iset;
......@@ -1057,11 +1062,11 @@ namespace Dune {
}
template <class GridType, class DataCollectorType>
template <class GridType>
template <class DofStorageType, class MapperType >
//inline MemObject<MapperType,DofStorageType> &
std::pair<MemObjectInterface*, DofStorageType*>
DofManager<GridType,DataCollectorType>::
DofManager<GridType>::
addDofSet(const DofStorageType * ds, const MapperType & mapper, std::string name)
{
assert( name.c_str() != 0);
......@@ -1083,22 +1088,22 @@ namespace Dune {
}
template <class GridType, class DataCollectorType>
inline bool DofManager<GridType,DataCollectorType>::
template <class GridType>
inline bool DofManager<GridType>::
write(const GrapeIOFileFormatType ftype, const std::string filename, int timestep)
{
assert(ftype == xdr);
return write_xdr(filename,timestep);
}
template <class GridType, class DataCollectorType>
inline bool DofManager<GridType,DataCollectorType>::
template <class GridType>
inline bool DofManager<GridType>::
read(const std::string filename , int timestep)
{
return read_xdr(filename,timestep);
}
template <class GridType, class DataCollectorType>
inline bool DofManager<GridType,DataCollectorType>::
template <class GridType>
inline bool DofManager<GridType>::
write_xdr(const std::string filename , int timestep)
{
//assert( filename );
......@@ -1119,8 +1124,8 @@ namespace Dune {
return true;
}
template <class GridType, class DataCollectorType>
inline bool DofManager<GridType,DataCollectorType>::
template <class GridType>
inline bool DofManager<GridType>::
read_xdr(const std::string filename , int timestep)
{
//assert( filename );
......
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