diff --git a/grid/alu3dgrid/alu3dgeometry.cc b/grid/alu3dgrid/alu3dgeometry.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d46255ada014a8bf267fc1777e37a98d3eb58b36
--- /dev/null
+++ b/grid/alu3dgrid/alu3dgeometry.cc
@@ -0,0 +1,607 @@
+// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
+// vi: set et ts=4 sw=2 sts=2:
+#ifndef DUNE_ALU3DGEOMETRY_CC
+#define DUNE_ALU3DGEOMETRY_CC
+
+
+
+// * new code begins here
+
+template<int mydim, int cdim>
+inline ALU3dGridGeometry<mydim,cdim,const ALU3dGrid<3, 3, tetra> >::
+ALU3dGridGeometry(bool makeRefElement)
+  : builtinverse_ (false) , builtA_ (false) , builtDetDF_ (false)
+{
+  // create reference element
+  if(makeRefElement)
+  {
+    coord_ = 0.0;
+    for(int i=1; i<mydim+1; i++)
+      coord_[i][i-1] = 1.0;
+  }
+}
+
+//   B U I L T G E O M   - - -
+
+template<int mydim, int cdim>
+inline void ALU3dGridGeometry<mydim,cdim,const ALU3dGrid<3, 3, tetra> >::
+calcElMatrix () const
+{
+  if(!builtA_)
+  {
+    // creat Matrix A (=Df)               INDIZES: col/row
+    // Mapping: R^dim -> R^3,  F(x) = A x + p_0
+    // columns:    p_1 - p_0  |  p_2 - p_0  |  p_3 - p_0
+
+    for (int i=0; i<mydim; i++)
+    {
+      //FieldVector<alu3d_ctype,cdim> & row = const_cast<FieldMatrix<alu3d_ctype,matdim,matdim> &> (A_)[i];
+      //row = coord_[i+1] - coord_[0];
+    }
+    builtA_ = true;
+  }
+}
+
+// matrix for mapping from reference element to current element
+template<>
+inline void ALU3dGridGeometry<3,3, const ALU3dGrid<3,3,tetra> >::
+calcElMatrix () const
+{
+  if(!builtA_)
+  {
+    enum { mydim = 3 };
+    // creat Matrix A (=Df)               INDIZES: col/row
+    // Mapping: R^dim -> R^3,  F(x) = A x + p_0
+    // columns:    p_1 - p_0  |  p_2 - p_0  |  p_3 - p_0
+
+    const FieldVector<alu3d_ctype,mydim> & coord0 = coord_[0];
+    for (int i=0; i<mydim; i++)
+    {
+      A_[i][0] = coord_[1][i] - coord0[i];
+      A_[i][1] = coord_[2][i] - coord0[i];
+      A_[i][2] = coord_[3][i] - coord0[i];
+    }
+    builtA_ = true;
+  }
+}
+
+//dim = dimworld = 3
+template<int mydim, int cdim>
+inline void ALU3dGridGeometry<mydim,cdim,const ALU3dGrid<3, 3, tetra> > :: buildJacobianInverse() const
+{
+  if(!builtinverse_)
+  {
+    calcElMatrix();
+
+    // DetDf = integrationElement
+    detDF_ = std::abs( FMatrixHelp::invertMatrix(A_,Jinv_) );
+    builtinverse_ = builtDetDF_ = true;
+  }
+}
+
+template<>  //dim = 2 , dimworld = 3
+inline void ALU3dGridGeometry<2,3, const ALU3dGrid<3,3,tetra> > :: buildJacobianInverse() const
+{
+  if(!builtinverse_)
+  {
+    enum { dim = 3 };
+
+    //std::cerr << "WARNING: ALU3dGridGeometry::buildJacobianInverse not tested yet! " << __LINE__ <<"\n";
+    // create vectors of face
+    tmpV_ = coord_[1] - coord_[0];
+    tmpU_ = coord_[2] - coord_[1];
+
+    // calculate scaled outer normal
+    for(int i=0; i<dim; i++)
+    {
+      globalCoord_[i] = (  tmpU_[(i+1)%dim] * tmpV_[(i+2)%dim]
+                           - tmpU_[(i+2)%dim] * tmpV_[(i+1)%dim] );
+    }
+
+    detDF_ = std::abs ( globalCoord_.two_norm() );
+    builtinverse_ = builtDetDF_ = true;
+  }
+}
+
+template<>  //dim = 1 , dimworld = 3
+inline void ALU3dGridGeometry<1,3, const ALU3dGrid<3,3,tetra> > :: buildJacobianInverse() const
+{
+  if(!builtinverse_)
+  {
+    enum { dim = 3 };
+    //std::cerr << "WARNING: ALU3dGridGeometry::buildJacobianInverse not tested yet! " << __LINE__ <<"\n";
+    // create vectors of face
+    globalCoord_ = coord_[1] - coord_[0];
+    detDF_ = std::abs ( globalCoord_.two_norm() );
+    builtinverse_ = builtDetDF_ = true;
+  }
+}
+
+template<>  //dim = 1 , dimworld = 3
+inline void ALU3dGridGeometry<0,3, const ALU3dGrid<3,3,tetra> > :: buildJacobianInverse() const
+{
+  if(!builtinverse_)
+  {
+    enum { dim = 3 };
+    detDF_ = 1.0;
+    builtinverse_ = builtDetDF_ = true;
+  }
+}
+
+template <>
+inline bool ALU3dGridGeometry<3,3, const ALU3dGrid<3,3,tetra> > ::
+buildGeom(const IMPLElementType & item)
+{
+  enum { dim = 3 };
+  enum { dimworld = 3};
+
+  builtinverse_ = builtA_ = builtDetDF_ = false;
+
+  for (int i=0; i<(dim+1); i++)
+  {
+    const double (&p)[3] = item.myvertex(i)->Point();
+    for (int j=0; j<dimworld; j++)
+    {
+      coord_[i][j] = p[j];
+    }
+  }
+  return true;
+}
+
+template <>
+inline bool ALU3dGridGeometry<3,3, const ALU3dGrid<3,3,tetra> > :: buildGhost(const PLLBndFaceType & ghost)
+{
+  enum { dim = 3 };
+  enum { dimworld = 3};
+
+  builtinverse_ = builtA_ = builtDetDF_ = false;
+
+  GEOFaceType & face = dynamic_cast<GEOFaceType &> (*(ghost.myhface3(0)));
+
+  // here apply the negative twist, because the twist is from the
+  // neighbouring elements point of view which is outside of the ghost
+  // element
+  const int map[3] = { (ghost.twist(0) < 0) ? 2 : 0 , 1 , (ghost.twist(0) < 0) ? 0 : 2 };
+
+  for (int i=0; i<dim; i++) // col is the point vector
+  {
+    const double (&p)[3] = face.myvertex(map[i])->Point();
+    for (int j=0; j<dimworld; j++) // row is the coordinate of the point
+    {
+      coord_[i][j] = p[j];
+    }
+  }
+
+  {
+    const double (&p)[3] = ghost.oppositeVertex(0);
+    for (int j=0; j<dimworld; j++)
+    {
+      coord_[3][j] = p[j];
+    }
+  }
+
+  return true;
+}
+
+template <>
+inline bool ALU3dGridGeometry<2,3, const ALU3dGrid<3,3,tetra> > :: buildGeom(const ALU3DSPACE HFaceType & item)
+{
+  enum { dim = 2 };
+  enum { dimworld = 3};
+
+  builtinverse_ = builtA_ = builtDetDF_ = false;
+
+  for (int i=0; i<(dim+1); i++)
+  {
+    const double (&p)[3] = static_cast<const GEOFaceType &> (item).myvertex(i)->Point();
+    for (int j=0; j<dimworld; j++)
+    {
+      coord_[i][j] = p[j];
+    }
+  }
+
+  buildJacobianInverse();
+  return true;
+}
+
+template <> // for edges
+inline bool ALU3dGridGeometry<1,3, const ALU3dGrid<3,3,tetra> > :: buildGeom(const ALU3DSPACE HEdgeType & item)
+{
+  enum { dim = 1 };
+  enum { dimworld = 3};
+
+  builtinverse_ = builtA_ = builtDetDF_ = false;
+
+  for (int i=0; i<(dim+1); i++)
+  {
+    const double (&p)[3] = static_cast<const GEOEdgeType &> (item).myvertex(i)->Point();
+    for (int j=0; j<dimworld; j++)
+    {
+      coord_[i][j] = p[j];
+    }
+  }
+
+  buildJacobianInverse();
+  return true;
+}
+
+template <> // for Vertices ,i.e. Points
+inline bool ALU3dGridGeometry<0,3, const ALU3dGrid<3,3,tetra> > :: buildGeom(const ALU3DSPACE VertexType & item)
+{
+  enum { dim = 0 };
+  enum { dimworld = 3};
+
+  builtinverse_ = builtA_ = builtDetDF_ = false;
+
+  const double (&p)[3] = static_cast<const GEOVertexType &> (item).Point();
+  for (int j=0; j<dimworld; j++) coord_[0][j] = p[j];
+
+  buildJacobianInverse();
+  return true;
+}
+
+
+template <GeometryType eltype , int dim> struct ALU3dGridElType {
+  static GeometryType type () { return unknown; }
+};
+template <> struct ALU3dGridElType<tetrahedron,3> {
+  static GeometryType type () { return tetrahedron; }
+};
+template <> struct ALU3dGridElType<tetrahedron,2> {
+  static GeometryType type () { return triangle; }
+};
+template <GeometryType eltype> struct ALU3dGridElType<eltype,1> {
+  static GeometryType type () { return line; }
+};
+template <GeometryType eltype> struct ALU3dGridElType<eltype,0> {
+  static GeometryType type () { return vertex; }
+};
+template <> struct ALU3dGridElType<hexahedron,3> {
+  static GeometryType type () { return hexahedron; }
+};
+template <> struct ALU3dGridElType<hexahedron,2> {
+  static GeometryType type () { return quadrilateral; }
+};
+
+template<int mydim, int cdim>
+inline GeometryType ALU3dGridGeometry<mydim,cdim,const ALU3dGrid<3, 3, tetra> > ::type () const
+{
+  return ALU3dGridElType<tetrahedron,mydim>::type();
+}
+
+template<int mydim, int cdim>
+inline int ALU3dGridGeometry<mydim,cdim,const ALU3dGrid<3, 3, tetra> > ::corners () const
+{
+  return dimbary;
+}
+
+template<int mydim, int cdim>
+inline const FieldVector<alu3d_ctype, cdim>&
+ALU3dGridGeometry<mydim,cdim,const ALU3dGrid<3, 3, tetra> > :: operator[] (int i) const
+{
+  assert((i>=0) && (i < mydim+1));
+  return coord_[i];
+}
+
+template<int mydim, int cdim>
+inline FieldVector<alu3d_ctype, cdim>&
+ALU3dGridGeometry<mydim,cdim,const ALU3dGrid<3, 3, tetra> > :: getCoordVec (int i)
+{
+  assert((i>=0) && (i < mydim+1));
+  return coord_[i];
+}
+
+
+//   G L O B A L   - - -
+
+// dim = 1,2,3 dimworld = 3
+template<int mydim, int cdim>
+inline FieldVector<alu3d_ctype, cdim>
+ALU3dGridGeometry<mydim,cdim,const ALU3dGrid<3, 3, tetra> >::
+global(const FieldVector<alu3d_ctype, mydim>& local) const
+{
+  calcElMatrix();
+
+  globalCoord_ = coord_[0];
+  A_.umv(local,globalCoord_);
+  return globalCoord_;
+}
+
+template<>
+inline FieldVector<alu3d_ctype, 3>
+ALU3dGridGeometry<3,3, const ALU3dGrid<3,3,tetra> >::
+global(const FieldVector<alu3d_ctype, 3> & local) const
+{
+  calcElMatrix();
+
+  globalCoord_ = coord_[0];
+  A_.umv(local,globalCoord_);
+  return globalCoord_;
+}
+
+template<>  // dim = dimworld = 3
+inline FieldVector<alu3d_ctype, 3>
+ALU3dGridGeometry<3,3,const ALU3dGrid<3,3,tetra> > ::
+local(const FieldVector<alu3d_ctype, 3>& global) const
+{
+  if (!builtinverse_) buildJacobianInverse();
+  enum { dim = 3 };
+  for(int i=0; i<dim; i++)
+    globalCoord_[i] = global[i] - coord_[0][i];
+
+  FMatrixHelp::multAssign(Jinv_,globalCoord_,localCoord_);
+  return localCoord_;
+}
+
+template<int mydim, int cdim>
+inline bool ALU3dGridGeometry<mydim,cdim,const ALU3dGrid<3, 3, tetra> > ::
+checkInside(const FieldVector<alu3d_ctype, mydim>& local) const
+{
+  alu3d_ctype sum = 0.0;
+
+  for(int i=0; i<mydim; i++)
+  {
+    sum += local[i];
+    if(local[i] < 0.0)
+    {
+      if(std::abs(local[i]) > 1e-15)
+      {
+        return false;
+      }
+    }
+  }
+
+  if( sum > 1.0 )
+  {
+    if(sum > (1.0 + 1e-15))
+      return false;
+  }
+
+  return true;
+}
+
+template<int mydim, int cdim>
+inline alu3d_ctype
+ALU3dGridGeometry<mydim,cdim,const ALU3dGrid<3, 3, tetra> > ::integrationElement (const FieldVector<alu3d_ctype, mydim>& local) const
+{
+  if(builtDetDF_)
+    return detDF_;
+
+  calcElMatrix();
+
+  detDF_ = A_.determinant();
+
+  assert(detDF_ > 0.0);
+
+  builtDetDF_ = true;
+  return detDF_;
+}
+
+//  J A C O B I A N _ I N V E R S E  - - -
+
+template<>  // dim = dimworld = 3
+inline const FieldMatrix<alu3d_ctype,3,3> &
+ALU3dGridGeometry<3,3, const ALU3dGrid<3,3,tetra> >:: jacobianInverse (const FieldVector<alu3d_ctype, 3>& local) const
+{
+  if (!builtinverse_) buildJacobianInverse();
+  return Jinv_;
+}
+
+// print the ElementInformation
+template<int mydim, int cdim>
+inline void ALU3dGridGeometry<mydim,cdim,const ALU3dGrid<3, 3, tetra> >::print (std::ostream& ss) const
+{
+  ss << "ALU3dGridGeometry<" << mydim << "," << cdim << ", tetra> = {\n";
+  for(int i=0; i<corners(); i++)
+  {
+    ss << " corner " << i << " ";
+    ss << "{" << ((*this)[i]) << "}"; ss << std::endl;
+  }
+  ss << "} \n";
+}
+
+template<int mydim, int cdim>
+inline const Dune::Geometry<mydim,mydim,const ALU3dGrid<3,3,tetra>, Dune::ALU3dGridGeometry> &
+ALU3dGridGeometry<mydim,cdim,const ALU3dGrid<3,3,tetra> >:: refelem () {
+  return ALU3dGridRefElem<const ALU3dGrid<3,3,tetra>,mydim>::refelem();
+}
+
+//- Hexahedron specialization
+template <int mydim, int cdim>
+inline ALU3dGridGeometry<mydim, cdim, const ALU3dGrid<3, 3, hexa> >::
+ALU3dGridGeometry(bool makeRefElement) :
+  coord_(0.0) {
+  // Dune reference element - hardwired
+  if (makeRefElememt) {
+    coord_[1][0] = 1.0;
+    coord_[2][1] = 1.0;
+    coord_[3][0] = 1.0;
+    coord_[3][1] = 1.0;
+    coord_[4][2] = 1.0;
+    coord_[5][0] = 1.0;
+    coord_[5][2] = 1.0;
+    coord_[6][1] = 1.0;
+    coord_[6][2] = 1.0;
+    coord_[7][0] = 1.0;
+    coord_[7][1] = 1.0;
+    coord_[7][2] = 1.0;
+  }
+}
+
+template<int mydim, int cdim>
+inline GeometryType
+ALU3dGridGeometry<mydim, cdim, const ALU3dGrid<3, 3, hexa> >::type() const {
+  return ALU3dGridElType<hexahedron, mydim>::type();
+}
+
+template <int mydim, int cdim>
+inline int
+ALU3dGridGeometry<mydim, cdim, const ALU3dGrid<3, 3, hexa> >::corners() const {
+  return POWER_M_P<2,mydim>::power;
+}
+
+template <int mydim, int cdim>
+const FieldVector<alu3d_ctype, cdim>&
+ALU3dGridGeometry<mydim, cdim, const ALU3dGrid<3, 3, hexa> >::
+operator[] (int i) const {
+  assert((i >= 0) && (i < corners()));
+  return coord_[i];
+}
+
+static const Dune::Geometry<mydim, mydim, const ALU3dGrid<3,3,hexa>,
+    Dune::ALU3dGridGeometry>&
+ALU3dGridGeometry<mydim, cdim, const ALU3dGrid<3, 3, hexa> >::
+refelem () {
+  return ALU3dGridRefElem<const ALU3dGrid<3, 3, hexa>, mydim>::refelem();
+}
+
+FieldVector<alu3d_ctype, cdim>
+ALU3dGridGeometry<mydim, cdim, const ALU3dGrid<3, 3, hexa> >::
+global (const FieldVector<alu3d_ctype, mydim>& local) const {}
+
+FieldVector<alu3d_ctype,  mydim>
+ALU3dGridGeometry<mydim, cdim, const ALU3dGrid<3, 3, hexa> >::
+local (const FieldVector<alu3d_ctype, cdim>& global) const {}
+
+bool
+ALU3dGridGeometry<mydim, cdim, const ALU3dGrid<3, 3, hexa> >::
+checkInside(const FieldVector<alu3d_ctype, mydim>& local) const {}
+
+const FieldMatrix<alu3d_ctype,mydim,mydim>&
+ALU3dGridGeometry<mydim, cdim, const ALU3dGrid<3, 3, hexa> >::
+jacobianInverse (const FieldVector<alu3d_ctype, cdim>& local) const {}
+
+void
+ALU3dGridGeometry<mydim, cdim, const ALU3dGrid<3, 3, hexa> >::
+print (std::ostream& ss) const {
+  ss << "ALU3dGridGeometry<" << mydim << "," << cdim << ", hexa> = {\n";
+  for(int i=0; i<corners(); i++)
+  {
+    ss << " corner " << i << " ";
+    ss << "{" << ((*this)[i]) << "}"; ss << std::endl;
+  }
+  ss << "} \n";
+}
+
+template <>
+bool
+ALU3dGridGeometry<3, 3, const ALU3dGrid<3, 3, hexa> >::
+buildGeom(const IMPLElementType& item) {
+  enum { dim = 3 };
+  enum { dimworld = 3 };
+
+  for (int i = 0; i < corners(); ++i) {
+    const double (&p)[3] = item.myvertex(dune2aluVol[i])->Point();
+    for (int j = 0; j < dimworld; ++j) {
+      coord_[i][j] = p[j];
+    }
+  }
+  return true;
+}
+
+template <>
+inline bool
+ALU3dGridGeometry<3,3, const ALU3dGrid<3,3,hexa> >::
+buildGhost(const PLLBndFaceType & ghost) {
+  enum { dim = 3 };
+  enum { dimworld = 3 };
+
+  GEOFaceType & face = dynamic_cast<GEOFaceType &> (*(ghost.myhface4(0)));
+
+  // The ghost element can be oriented to your liking. The convention here is
+  // the following: the 0th vertex of the face is mapped to the 0th vertex of
+  // the ghost entity. mapFront takes into account the different numbering
+  // conventions of dune and alugrid and the twist of the face. (Take into
+  // account that a twist is defined with regard to the inner entity, so it is
+  // actually the opposite of the twist with respect to the ghost...
+  //
+  //           4  ------ 5     neg. twist:           pos. twist:
+  //            /|    / |            .     .              .      .
+  //           / |   /  |           .     .              .      .
+  //        0 ------ 1  |        0 ------ 3            0 ------ 1
+  //        .| 6 --.|--- 7        |      |              |      |
+  //       . | /  . | /           | .    | .            | .    | .
+  //      .  |/  .  |/            |.     |.             |.     |.
+  //        2 ------ 3           1 ------ 2            3 ------ 2
+  //       .       .
+  //      .       .
+  //
+  // mapFront: i \in reference hexahedron vertex index dune -> l \in reference
+  // quad face vertex index alu + twist
+  // Note: due to the vertex numbering for dune hexahedrons, mapFront can also
+  // be used to map the back plane. The entries {0, 1, 2, 3} refer to the local
+  // vertex numbers {4, 5, 6, 7} of the (dune) reference hexahedron then
+  bool negativeTwist = ghost.twist(0) < 0;
+  const int mapFront[4] = { 0,
+                            negativeTwist ? 3 : 1,
+                            negativeTwist ? 1 : 3
+                            2 };
+
+  // Store the coords of the ghost element incident with the boundary face
+  // 4 is the number of vertices of the boundary faces for hexas
+  for (int i = 0; i < 4; ++i) {
+    const double (&p)[3] = face.myvertex(mapFront[i])->Point();
+    for (int j = 0; j < dimworld; ++j) {
+      coord_[i][j] = p[j];
+    }
+  }
+
+  // 4 is the number of vertices of the face opposite the boundary
+  for (int i = 0; i < 4; ++i) {
+    const double (&p)[3] = ghost.oppositeVertex(mapFront[i]);
+    for (int j = 0; j < dimworld; ++j) {
+      coord_[4+i][j] = p[j];
+    }
+  }
+
+  return true;
+}
+
+template <>
+inline bool
+ALU3dGridGeometry<2,3, const ALU3dGrid<3, 3, hexa> > ::
+buildGeom(const ALU3DSPACE HFaceType & item) {
+  enum { dim = 2 };
+  enum { dimworld = 3 };
+
+  for (int i = 0; i < corners(); ++i) {
+    const double (&p)[3] =
+      static_cast<const GEOFaceType &>(item).myvertex(dune2aluQuad[i])->Point();
+    for (int j = 0; j < dimworld; ++j) {
+      coord_[i][j] = p[j];
+    }
+  }
+  return true;
+}
+
+template <> // for edges
+inline bool
+ALU3dGridGeometry<1,3, const ALU3dGrid<3, 3, hexa> >::
+buildGeom(const ALU3DSPACE HEdgeType & item) {
+  enum { dim = 1 };
+  enum { dimworld = 3 };
+
+  for (int i = 0; i < dim+1; ++i) {
+    const double (&p)[3] = static_cast<const GEOEdgeType &> (item).myvertex(i)->Point();
+    for (int j = 0; j < dimworld; ++j) {
+      coord_[i][j] = p[j];
+    }
+  }
+
+  return true;
+}
+
+template <> // for Vertices ,i.e. Points
+inline bool
+ALU3dGridGeometry<0,3, const ALU3dGrid<3,3,hexa> >::
+buildGeom(const ALU3DSPACE VertexType & item) {
+  enum { dim = 0 };
+  enum { dimworld = 3};
+
+  const double (&p)[3] = static_cast<const GEOVertexType &> (item).Point();
+  for (int j=0; j<dimworld; j++) coord_[0][j] = p[j];
+
+  return true;
+}
+
+#endif
diff --git a/grid/alu3dgrid/alu3dgeometry.hh b/grid/alu3dgrid/alu3dgeometry.hh
new file mode 100644
index 0000000000000000000000000000000000000000..9f52e7359435a648f80c9154c187ced215e5093b
--- /dev/null
+++ b/grid/alu3dgrid/alu3dgeometry.hh
@@ -0,0 +1,251 @@
+// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
+// vi: set et ts=4 sw=2 sts=2:
+#ifndef DUNE_ALU3DGEOMETRY_HH
+#define DUNE_ALU3DGEOMETRY_HH
+
+// * temporary, should be moved to misc.hh or something
+// calculates m^p at compile-time
+template <int m, int p>
+struct POWER_M_P
+{
+  // power stores m^p
+  enum { power = (m * POWER_M_P<m,p-1>::power ) };
+};
+
+// end of recursion via specialization
+template <int m>
+struct POWER_M_P< m , 0>
+{
+  // m^0 = 1
+  enum { power = 1 };
+};
+
+//! A trilinear mapping from the Dune reference hexahedron into the physical
+//! space (same as in mapp_cube_3d.h, but for a different reference hexahedron)
+class TrilinearMapping {
+  static const double _epsilon ;
+  const double (&p0)[3], (&p1)[3], (&p2)[3], (&p3)[3] ;
+  const double (&p4)[3], (&p5)[3], (&p6)[3], (&p7)[3] ;
+  double a [8][3] ;
+  double Df [3][3] ;
+  double Dfi [3][3] ;
+  double DetDf ;
+  void linear (const double (&)[3]) ;
+  void inverse (const double (&)[3]) ;
+public:
+  inline TrilinearMapping (const double (&)[3], const double (&)[3],
+                           const double (&)[3], const double (&)[3],
+                           const double (&)[3], const double (&)[3],
+                           const double (&)[3], const double (&)[3]) ;
+  inline TrilinearMapping (const TrilinearMapping &) ;
+  ~TrilinearMapping () {}
+  double det (const double (&)[3]) ;
+  inline void map2world (const double (&)[3], double (&)[3]) const ;
+  inline void map2world (const double , const double , const double ,
+                         double (&)[3]) const ;
+  void world2map (const double (&)[3], double (&)[3]) ;
+};
+
+//! A bilinear surface mapping
+
+
+//! Empty definition, needs to be specialized for element type
+template <int mydim, int cdim, class GridImp>
+class ALU3dGridGeometry :
+  public GeometryDefault <mydim,cdim,GridImp,ALU3dGridGeometry> {};
+
+template <int mydim, int cdim>
+class ALU3dGridGeometry<mydim, cdim, const ALU3dGrid<3, 3, tetra> > :
+  public GeometryDefault<mydim, cdim, const ALU3dGrid<3, 3, tetra>,
+      ALU3dGridGeometry> {
+  typedef const ALU3dGrid<3, 3, tetra> GridImp;
+  friend class ALU3dGridBoundaryEntity<GridImp>;
+
+  typedef ALU3dImplTraits<tetra>::IMPLElementType IMPLElementType;
+  typedef ALU3dImplTraits<tetra>::PLLBndFaceType PLLBndFaceType;
+  typedef ALU3dImplTraits<tetra>::GEOFaceType GEOFaceType;
+  typedef ALU3dImplTraits<tetra>::GEOEdgeType GEOEdgeType;
+  typedef ALU3dImplTraits<tetra>::GEOVertexType GEOVertexType;
+  //! know dimension of barycentric coordinates
+  enum { dimbary=mydim+1};
+public:
+  //! for makeRefGeometry == true a Geometry with the coordinates of the
+  //! reference element is made
+  ALU3dGridGeometry(bool makeRefGeometry=false);
+
+  //! return the element type identifier
+  //! line , triangle or tetrahedron, depends on dim
+  GeometryType type () const;
+
+  //! return the number of corners of this element. Corners are numbered 0...n-1
+  int corners () const;
+
+  //! access to coordinates of corners. Index is the number of the corner
+  const FieldVector<alu3d_ctype, cdim>& operator[] (int i) const;
+
+  /*! return reference element corresponding to this element. If this is
+     a reference element then self is returned.
+   */
+  static const Dune::Geometry<mydim,mydim,GridImp,Dune::ALU3dGridGeometry> & refelem ();
+
+  //! maps a local coordinate within reference element to
+  //! global coordinate in element
+  FieldVector<alu3d_ctype, cdim> global (const FieldVector<alu3d_ctype, mydim>& local) const;
+
+  //! maps a global coordinate within the element to a
+  //! local coordinate in its reference element
+  FieldVector<alu3d_ctype,  mydim> local (const FieldVector<alu3d_ctype, cdim>& global) const;
+
+  //! returns true if the point in local coordinates is inside reference element
+  bool checkInside(const FieldVector<alu3d_ctype, mydim>& local) const;
+
+  //! A(l) , see grid.hh
+  alu3d_ctype integrationElement (const FieldVector<alu3d_ctype, mydim>& local) const;
+
+  //! can only be called for dim=dimworld!
+  const FieldMatrix<alu3d_ctype,mydim,mydim>& jacobianInverse (const FieldVector<alu3d_ctype, cdim>& local) const;
+
+  //***********************************************************************
+  //!  Methods that not belong to the Interface, but have to be public
+  //***********************************************************************
+  //! generate the geometry for out of given ALU3dGridElement
+  bool buildGeom(const IMPLElementType & item);
+  bool buildGeom(const ALU3DSPACE HFaceType & item);
+  bool buildGeom(const ALU3DSPACE HEdgeType & item);
+  bool buildGeom(const ALU3DSPACE VertexType & item);
+
+  //! build ghost out of internal boundary segment
+  bool buildGhost(const PLLBndFaceType & ghost);
+
+  //! print internal data
+  //! no interface method
+  void print (std::ostream& ss) const;
+
+  // for changing the coordinates of one element
+  FieldVector<alu3d_ctype, cdim> & getCoordVec (int i);
+
+private:
+  // generate Jacobian Inverse and calculate integration_element
+  void buildJacobianInverse() const;
+
+  // calculates the element matrix for calculation of the jacobian inverse
+  void calcElMatrix () const;
+
+  //! the vertex coordinates
+  mutable FieldMatrix<alu3d_ctype,mydim+1,cdim> coord_;
+
+  //! is true if Jinv_, A and detDF_ is calced
+  mutable bool builtinverse_;
+  mutable bool builtA_;
+  mutable bool builtDetDF_;
+
+  enum { matdim = (mydim > 0) ? mydim : 1 };
+  mutable FieldMatrix<alu3d_ctype,matdim,matdim> Jinv_; //!< storage for inverse of jacobian
+  mutable alu3d_ctype detDF_;                           //!< storage of integration_element
+  mutable FieldMatrix<alu3d_ctype,matdim,matdim> A_;    //!< transformation matrix
+
+  mutable FieldVector<alu3d_ctype, mydim> localCoord_;
+  mutable FieldVector<alu3d_ctype, cdim>  globalCoord_;
+
+  mutable FieldVector<alu3d_ctype,cdim> tmpV_; //! temporary memory
+  mutable FieldVector<alu3d_ctype,cdim> tmpU_; //! temporary memory
+};
+
+template <int mydim, int cdim>
+class ALU3dGridGeometry<mydim, cdim, const ALU3dGrid<3, 3, hexa> > :
+  public GeometryDefault<mydim, cdim, const ALU3dGrid<3, 3, hexa>,
+      ALU3dGridGeometry> {
+  typedef const ALU3dGrid<3, 3, hexa> GridImp;
+  friend class ALU3dGridBoundaryEntity<GridImp>;
+
+  typedef ALU3dImplTraits<hexa>::IMPLElementType IMPLElementType;
+  typedef ALU3dImplTraits<hexa>::PLLBndFaceType PLLBndFaceType;
+  typedef ALU3dImplTraits<hexa>::GEOFaceType GEOFaceType;
+  typedef ALU3dImplTraits<hexa>::GEOEdgeType GEOEdgeType;
+  typedef ALU3dImplTraits<hexa>::GEOVertexType GEOVertexType;
+
+public:
+  //! for makeRefGeometry == true a Geometry with the coordinates of the
+  //! reference element is made
+  ALU3dGridGeometry(bool makeRefGeometry=false);
+
+  //! return the element type identifier
+  //! line , triangle or tetrahedron, depends on dim
+  GeometryType type () const;
+
+  //! return the number of corners of this element. Corners are numbered 0..n-1
+  int corners () const;
+
+  //! access to coordinates of corners. Index is the number of the corner
+  const FieldVector<alu3d_ctype, cdim>& operator[] (int i) const;
+
+  //! return reference element corresponding to this element. If this is
+  //!  a reference element then self is returned.
+  static const Dune::Geometry<mydim,mydim,GridImp,Dune::ALU3dGridGeometry> & refelem ();
+
+  //! maps a local coordinate within reference element to
+  //! global coordinate in element
+  FieldVector<alu3d_ctype, cdim> global (const FieldVector<alu3d_ctype, mydim>& local) const;
+
+  //! maps a global coordinate within the element to a
+  //! local coordinate in its reference element
+  FieldVector<alu3d_ctype,  mydim> local (const FieldVector<alu3d_ctype, cdim>& global) const;
+
+  //! returns true if the point in local coordinates is inside reference
+  //! element
+  bool checkInside(const FieldVector<alu3d_ctype, mydim>& local) const;
+
+  //! A(l) , see grid.hh
+  alu3d_ctype integrationElement (const FieldVector<alu3d_ctype, mydim>& local) const;
+
+  //! can only be called for dim=dimworld! (Trivially true, since there is no
+  //! other specialization...)
+  const FieldMatrix<alu3d_ctype,mydim,mydim>& jacobianInverse (const FieldVector<alu3d_ctype, cdim>& local) const;
+
+  //***********************************************************************
+  //!  Methods that not belong to the Interface, but have to be public
+  //***********************************************************************
+  //! generate the geometry for out of given ALU3dGridElement
+  bool buildGeom(const IMPLElementType & item);
+  bool buildGeom(const ALU3DSPACE HFaceType & item);
+  bool buildGeom(const ALU3DSPACE HEdgeType & item);
+  bool buildGeom(const ALU3DSPACE VertexType & item);
+
+  //! build ghost out of internal boundary segment
+  bool buildGhost(const PLLBndFaceType & ghost);
+
+  //! print internal data
+  //! no interface method
+  void print (std::ostream& ss) const;
+
+  // for changing the coordinates of one element
+  FieldVector<alu3d_ctype, cdim> & getCoordVec (int i);
+
+private:
+  //! the vertex coordinates
+  mutable FieldMatrix<alu3d_ctype,mydim+1,cdim> coord_;
+
+  /* OLD
+     //const static int alu2duneVol[8] = {0, 1, 3, 2, 4, 5, 7, 6};
+     const static int dune2aluVol[8] = {0, 1, 3, 2, 4, 5, 7, 6};
+
+     //const static int alu2duneFace[6] = {2, 5, 4, 1, 3, 0};
+     //const static int dune2aluFace[6] = {5, 3, 0, 4, 2, 1};
+
+     //const static int alu2duneQuad[4] = {0, 1, 3, 2};
+     const static int dune2aluQuad[4] = {0, 1, 3, 2};
+   */
+
+  const static int alu2duneVol[8] = {1, 3, 2, 0, 5, 7, 6, 4};
+  const static int dune2aluVol[8] = {3, 0, 2, 1, 7, 4, 6, 5};
+
+  const static int alu2duneFace[6] = {2, 5, 1, 3, 0, 4};
+  const static int dune2aluFace[6] = {4, 2, 0, 3, 5, 1};
+
+  const static int alu2duneQuad[4] = {0, 1, 3, 2};
+  const static int dune2aluQuad[4] = {0, 1, 3, 2};
+};
+
+
+
+#endif