1#ifndef DUNE_COMPOSITIES_GRIDTRANSFORMATION__HH
2#define DUNE_COMPOSITIES_GRIDTRANSFORMATION__HH
17 template <
int dim,
class MODEL>
19 :
public Dune :: AnalyticalCoordFunction< double, dim, dim, GridTransformation <dim,MODEL> >{
21 typedef Dune :: AnalyticalCoordFunction< double, dim, dim, This > Base;
24 typedef typename Base :: DomainVector DomainVector;
25 typedef typename Base :: RangeVector RangeVector;
28 model(model_), giveOutput(1), my_rank(my_rank_){ }
30 void evaluate (
const DomainVector &x, RangeVector &y )
const {
31 y = model.gridTransformation(x);
36 mutable int giveOutput;