This file is indexed.

/usr/include/dune/grid/alugrid/3d/faceutility_imp.cc is in libdune-grid-dev 2.2.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
#ifndef DUNE_FACEUTILITY_IMP_HH
#define DUNE_FACEUTILITY_IMP_HH

namespace Dune
{


  template< ALU3dGridElementType type, class Comm > 
  inline ALU3dGridFaceInfo< type, Comm >::ALU3dGridFaceInfo() :
    face_(0),
    innerElement_(0),
    outerElement_(0),
    innerFaceNumber_(-1),
    outerFaceNumber_(-1),
    innerTwist_(-665),
    outerTwist_(-665),
    segmentIndex_( -1 ),
    bndId_( -1 ),
    bndType_( noBoundary ),
    conformanceState_(UNDEFINED)
  {
  }
  
  // points face from inner element away?
  template< ALU3dGridElementType type, class Comm > 
  inline void 
  ALU3dGridFaceInfo< type, Comm >::
  updateFaceInfo(const GEOFaceType& face,
                 int innerLevel,
                 int innerTwist) 
  {
    face_ = &face;

    innerElement_ = 0;
    outerElement_ = 0;
    innerFaceNumber_ = -1;
    outerFaceNumber_ = -1;
    bndType_ = noBoundary;
    segmentIndex_ = -1;
    bndId_ = 0; // inner face 

    // points face from inner element away?
    if (innerTwist < 0) 
    {
      innerElement_ = face.nb.rear().first;
      innerFaceNumber_ = face.nb.rear().second;
      outerElement_ = face.nb.front().first;
      outerFaceNumber_ = face.nb.front().second;
    } 
    else 
    {
      innerElement_ = face.nb.front().first;
      innerFaceNumber_ = face.nb.front().second;
      outerElement_ = face.nb.rear().first;
      outerFaceNumber_ = face.nb.rear().second;
    } // end if

    // if not true we are accessing a fake bnd 
    assert( innerElement_->isRealObject() );
    // if not true we are accessing a fake bnd 
    assert( outerElement_->isRealObject() );
    
    // we only have to do this in parallel runs 
    if( parallel() && innerElement_->isboundary() ) 
    {
      bndType_ = innerGhostBoundary;
      assert( ! dynamic_cast< const GEOPeriodicType* > ( innerElement_ ) );
    }

    if( parallel() && innerBoundary() )
    {
      // check for ghosts 
      // this check is only need in the parallel case 
      const BNDFaceType * bnd = static_cast<const BNDFaceType *> (innerElement_);
      
      if(bnd->bndtype() == ALU3DSPACE ProcessorBoundary_t)
      {
        // if nonconformity occurs then go up one level
        if( bnd->level () != bnd->ghostLevel() )
        {
          bnd = static_cast<const BNDFaceType *>(bnd->up());
          assert( bnd );
          innerElement_ = static_cast<const HasFaceType*> (bnd);
        }

        // get ghost and internal number  
        GhostPairType p  = bnd->getGhost();

        // get face number 
        innerFaceNumber_ = p.second;

        // this doesn't count as outer boundary 
        const GEOElementType* ghost = static_cast<const GEOElementType*> (p.first);
        assert(ghost);

        innerTwist_ = ghost->twist(innerFaceNumber_);
      }
      else 
      {
        innerTwist_ = innerFace().twist(innerALUFaceIndex());
      }
    }
    else 
    {
      // set inner twist 
      assert(innerTwist == innerEntity().twist(innerFaceNumber_));
      innerTwist_ = innerTwist; 
    }

    if( outerElement_->isboundary() )
    {
      assert( ! innerBoundary() );
      // set to default boundary (with domain boundary)
      bndType_ = domainBoundary ;

      // check for ghosts 
      // this check is only need in the parallel case 
      // if this cast fails we have a periodic element 
//#ifdef ALUGRID_PERIODIC_BOUNDARY_PARALLEL
///      const bool periodicBnd = outerElement_->isperiodic();
//      const BNDFaceType * bnd = 0;
//      const BNDFaceType * bnd = static_cast<const BNDFaceType *> (outerElement_);
//#else 
      const BNDFaceType * bnd = dynamic_cast<const BNDFaceType *> (outerElement_);
      const bool periodicBnd = ( bnd == 0 ) ;
//#endif
      if( periodicBnd ) // the periodic case 
      {
        bndType_ = periodicBoundary ;
        assert( dynamic_cast< const GEOPeriodicType* > ( outerElement_ ) );
        const GEOPeriodicType* periodicClosure = static_cast< const GEOPeriodicType* > ( outerElement_ ) ;

#ifdef ALUGRID_PERIODIC_BOUNDARY
        // previously, the segmentIndex( 1 - outerFaceNumber_ ) was used, why?
        segmentIndex_ = periodicClosure->segmentIndex( outerFaceNumber_ );
#else 
        // set to zero (grid test will fail)
        segmentIndex_ = 0 ;
#endif
#ifdef ALUGRID_PERIODIC_BOUNDARY_PARALLEL
        bndId_  = periodicClosure->bndtype( outerFaceNumber_ );
#endif  

        const GEOFaceType* face = ImplTraits::getFace( *periodicClosure, 1 - outerFaceNumber_ );
        assert( (face->nb.front().first == periodicClosure) || (face->nb.rear().first == periodicClosure) );
        if( face->nb.rear().first == periodicClosure )
        {
          assert( dynamic_cast< const GEOPeriodicType * >( face->nb.rear().first ) );
          outerElement_    = face->nb.front().first ;
          outerFaceNumber_ = face->nb.front().second ;
        }
        else 
        {
          assert( dynamic_cast< const GEOPeriodicType * >( face->nb.front().first ) );
          outerElement_    = face->nb.rear().first ;
          outerFaceNumber_ = face->nb.rear().second ;
        }

        assert( outerElement_->isRealObject() );
        if( outerElement_->isboundary() )
        {
          assert( dynamic_cast< const BNDFaceType * >( outerElement_ ) );
          bnd = static_cast< const BNDFaceType * >( outerElement_ );
        }
        else
          outerTwist_ = outerEntity().twist( outerFaceNumber_ );
      }

      if ( bnd ) // the boundary case 
      {
        assert( bnd );

        // if this cast is valid we have either 
        // a boundary or a ghost element
        // the ghost element case 
        if( parallel() && bnd->bndtype() == ALU3DSPACE ProcessorBoundary_t)
        {
          // if nonconformity occurs then go up one level
          if( bnd->level () != bnd->ghostLevel() )
          {
            bnd = static_cast<const BNDFaceType *>(bnd->up());
            assert( bnd );
            outerElement_ = static_cast<const HasFaceType*> (bnd);
          }

          // get ghost and internal number  
          GhostPairType p  = bnd->getGhost();
          outerFaceNumber_ = p.second;

          // set boundary type to ghost boundary 
          bndType_ = outerGhostBoundary ;

          const GEOElementType* ghost = static_cast<const GEOElementType*> (p.first);
          assert(ghost);

          outerTwist_ = ghost->twist(outerFaceNumber_);
        }
        else // the normal boundary case 
        {
          // get outer twist 
          outerTwist_ = boundaryFace().twist(outerALUFaceIndex());
          // store segment index 
          segmentIndex_ = boundaryFace().segmentIndex();
          bndId_ = boundaryFace().bndtype();
        }
      }
    }
    else 
    {
      // get outer twist 
      outerTwist_ = outerEntity().twist(outerALUFaceIndex());
    }

    // make sure we got boundary id correctly 
    assert( bndType_ == periodicBoundary || bndType_ == domainBoundary ? bndId_ > 0 : bndId_ == 0 );

    // set conformance information 
    conformanceState_ = getConformanceState(innerLevel);
  }

  // points face from inner element away?
  template< ALU3dGridElementType type, class Comm > 
  inline ALU3dGridFaceInfo< type, Comm >::
  ALU3dGridFaceInfo(const GEOFaceType& face, 
                    int innerTwist) 
  {
    updateFaceInfo(face,innerTwist);
  }

  template< ALU3dGridElementType type, class Comm > 
  inline ALU3dGridFaceInfo< type, Comm >::~ALU3dGridFaceInfo() {}

  template< ALU3dGridElementType type, class Comm > 
  ALU3dGridFaceInfo< type, Comm >::
  ALU3dGridFaceInfo ( const ALU3dGridFaceInfo &orig )
  : face_(orig.face_),
    innerElement_(orig.innerElement_),
    outerElement_(orig.outerElement_),
    innerFaceNumber_(orig.innerFaceNumber_),
    outerFaceNumber_(orig.outerFaceNumber_),
    innerTwist_(orig.innerTwist_),
    outerTwist_(orig.outerTwist_),
    segmentIndex_( orig.segmentIndex_ ),
    bndId_( orig.bndId_ ),
    bndType_( orig.bndType_ ),
    conformanceState_(orig.conformanceState_)
  {}

  template< ALU3dGridElementType type, class Comm > 
  inline bool ALU3dGridFaceInfo< type, Comm >::isElementLike() const {
    return bndType_ < domainBoundary; 
  }

  template< ALU3dGridElementType type, class Comm > 
  inline bool ALU3dGridFaceInfo< type, Comm >::innerBoundary() const {
    return bndType_ == innerGhostBoundary; 
  }

  template< ALU3dGridElementType type, class Comm > 
  inline bool ALU3dGridFaceInfo< type, Comm >::outerBoundary() const {
    return bndType_ == domainBoundary; 
  }

  template< ALU3dGridElementType type, class Comm >
  inline bool ALU3dGridFaceInfo< type, Comm >::boundary() const {
    return outerBoundary() || (bndType_ == periodicBoundary);
  }

  template< ALU3dGridElementType type, class Comm >
  inline bool ALU3dGridFaceInfo< type, Comm >::neighbor() const 
  {
    return isElementLike() || ghostBoundary();
  }

  template< ALU3dGridElementType type, class Comm >
  inline bool ALU3dGridFaceInfo< type, Comm >::ghostBoundary () const 
  {
    // when communicator is No_Comm there is no ghost boundary 
    return parallel() ? ( bndType_ == outerGhostBoundary ) : false ;
  }

  template< ALU3dGridElementType type, class Comm > 
  inline const typename ALU3dGridFaceInfo< type, Comm >::GEOFaceType& 
  ALU3dGridFaceInfo< type, Comm >::face() const 
  {
    return *face_;
  }

  template< ALU3dGridElementType type, class Comm > 
  inline const typename ALU3dGridFaceInfo< type, Comm >::GEOElementType& 
  ALU3dGridFaceInfo< type, Comm >::innerEntity() const 
  {
    assert( ! innerElement_->isboundary() );
    return static_cast<const GEOElementType&>(*innerElement_);
  }

  template< ALU3dGridElementType type, class Comm > 
  inline const typename ALU3dGridFaceInfo< type, Comm >::GEOElementType& 
  ALU3dGridFaceInfo< type, Comm >::outerEntity() const 
  {
    assert( isElementLike() );
    return static_cast<const GEOElementType&>(*outerElement_);
  }

  template< ALU3dGridElementType type, class Comm >
  inline const typename ALU3dGridFaceInfo< type, Comm >::BNDFaceType& 
  ALU3dGridFaceInfo< type, Comm >::innerFace() const 
  {
    assert( innerElement_->isboundary() ); 
    return static_cast<const BNDFaceType&>(*innerElement_);
  }

  template< ALU3dGridElementType type, class Comm >
  inline const typename ALU3dGridFaceInfo< type, Comm >::BNDFaceType& 
  ALU3dGridFaceInfo< type, Comm >::boundaryFace() const {
    assert( ! isElementLike() );
    return static_cast<const BNDFaceType&>(*outerElement_);
  }

  template< ALU3dGridElementType type, class Comm >
  inline int ALU3dGridFaceInfo< type, Comm >::outsideLevel() const 
  {
    assert( outerElement_ );
    assert( !isElementLike() || outerEntity().level() == outerElement_->nbLevel() );
    assert( isElementLike() || boundaryFace().level() == outerElement_->nbLevel() );
    return outerElement_->nbLevel();
  }

  template< ALU3dGridElementType type, class Comm >
  inline int ALU3dGridFaceInfo< type, Comm >::segmentIndex() const 
  {
    assert( segmentIndex_ >= 0 );
    return segmentIndex_;
  }

  template< ALU3dGridElementType type, class Comm >
  inline int ALU3dGridFaceInfo< type, Comm >::boundaryId() const 
  {
    return bndId_;
  }

  template< ALU3dGridElementType type, class Comm >
  inline int ALU3dGridFaceInfo< type, Comm >::innerTwist() const 
  {
    // don't check ghost boundaries here 
    assert( ( ! innerBoundary() ) ? 
        innerEntity().twist(innerALUFaceIndex()) == innerTwist_ : true );
    return innerTwist_; 
  }

  template< ALU3dGridElementType type, class Comm >
  inline int ALU3dGridFaceInfo< type, Comm >::duneTwist(const int faceIdx, const int aluTwist) const 
  {
    typedef ElementTopologyMapping<type> ElementTopo;
    typedef FaceTopologyMapping<type> FaceTopo;

    const int mappedZero =
      FaceTopo::twist(ElementTopo::dune2aluFaceVertex( faceIdx, 0), aluTwist);

    const int twist = 
      (ElementTopo::faceOrientation( faceIdx ) * sign(aluTwist) < 0 ?
       mappedZero : -mappedZero-1);

    // see topology.* files
    return FaceTopo :: aluTwistMap( twist );
  }

  template< ALU3dGridElementType type, class Comm >
  inline int ALU3dGridFaceInfo< type, Comm >::outerTwist() const 
  {
    // don't check ghost boundaries here 
    //assert( (outerBoundary_) ?
    //          (outerTwist_ == boundaryFace().twist(0)) :
    //          (! ghostBoundary_) ?
    //          (outerTwist_ == outerEntity().twist(outerALUFaceIndex())) : true
    //      );
    return outerTwist_; 
  }

  template< ALU3dGridElementType type, class Comm >
  inline int ALU3dGridFaceInfo< type, Comm >::innerALUFaceIndex() const {
    return innerFaceNumber_;
  }

  template< ALU3dGridElementType type, class Comm >
  inline int ALU3dGridFaceInfo< type, Comm >::outerALUFaceIndex() const {
    return outerFaceNumber_;
  }

  template< ALU3dGridElementType type, class Comm > 
  typename ALU3dGridFaceInfo< type, Comm >::ConformanceState 
  inline ALU3dGridFaceInfo< type, Comm >::conformanceState() const 
  {
    assert( conformanceState_ != UNDEFINED );
    return conformanceState_;
  }

  // calculate conformance state 
  template< ALU3dGridElementType type, class Comm > 
  typename ALU3dGridFaceInfo< type, Comm >::ConformanceState 
  inline ALU3dGridFaceInfo< type, Comm >::getConformanceState(const int innerLevel) const 
  {
    ConformanceState result = CONFORMING;

    // A boundary is always unrefined
    int levelDifference = 0 ;
    if ( isElementLike() )
      levelDifference = innerLevel - outerEntity().level();
    else
      levelDifference = innerLevel - boundaryFace().level();
    
    if (levelDifference < 0) {
      result = REFINED_OUTER;
    } 
    else if (levelDifference > 0) {
      result = REFINED_INNER;
    }
    
    return result;
  }

  template< ALU3dGridElementType type, class Comm >
  inline ALU3dGridGeometricFaceInfoBase< type, Comm >::
  ALU3dGridGeometricFaceInfoBase(const ConnectorType& connector) :
    connector_(connector),
    coordsSelfLocal_(-1.0),
    coordsNeighborLocal_(-1.0),
    generatedGlobal_(false),
    generatedLocal_(false)
  {}

  template< ALU3dGridElementType type, class Comm >
  inline void 
  ALU3dGridGeometricFaceInfoBase< type, Comm >::
  resetFaceGeom() 
  { 
    generatedGlobal_ = false;
    generatedLocal_  = false;
  }

  template< ALU3dGridElementType type, class Comm >
  inline ALU3dGridGeometricFaceInfoBase< type, Comm >::
  ALU3dGridGeometricFaceInfoBase ( const ALU3dGridGeometricFaceInfoBase &orig )
  : connector_(orig.connector_),
    coordsSelfLocal_(orig.coordsSelfLocal_),
    coordsNeighborLocal_(orig.coordsNeighborLocal_),
    generatedGlobal_(orig.generatedGlobal_),
    generatedLocal_(orig.generatedLocal_)
  {}

  template< ALU3dGridElementType type, class Comm >
  inline const typename ALU3dGridGeometricFaceInfoBase< type, Comm >::CoordinateType& 
  ALU3dGridGeometricFaceInfoBase< type, Comm >::intersectionSelfLocal() const {
    generateLocalGeometries();
    assert(generatedLocal_);
    return coordsSelfLocal_;
  }

  template< ALU3dGridElementType type, class Comm >
  inline const typename ALU3dGridGeometricFaceInfoBase< type, Comm >::CoordinateType& 
  ALU3dGridGeometricFaceInfoBase< type, Comm >::intersectionNeighborLocal() const {
    assert(!connector_.outerBoundary());
    generateLocalGeometries();
    assert(generatedLocal_);
    return coordsNeighborLocal_;
  }


  //sepcialisation for tetra and hexa
  template< class Comm >
  inline ALU3dGridGeometricFaceInfoTetra< Comm >::
  ALU3dGridGeometricFaceInfoTetra(const ConnectorType& connector) 
  : Base( connector ), normalUp2Date_( false )
  {}

  template< class Comm >
  inline void ALU3dGridGeometricFaceInfoTetra< Comm >::
  resetFaceGeom() 
  { 
    Base::resetFaceGeom();
    normalUp2Date_ = false;
  }

  template< class Comm >
  inline ALU3dGridGeometricFaceInfoTetra< Comm >::
  ALU3dGridGeometricFaceInfoTetra(const ALU3dGridGeometricFaceInfoTetra& orig) 
  : Base( orig ), normalUp2Date_( orig.normalUp2Date_ )
  {}

  template< class Comm >
  template <class GeometryImp> 
  inline void
  ALU3dGridGeometricFaceInfoTetra< Comm >::
  buildGlobalGeom(GeometryImp& geo) const 
  {
    if (! this->generatedGlobal_) 
    {
      // calculate the normal
      const GEOFaceType & face = this->connector_.face();
    
      geo.buildGeom( face.myvertex(FaceTopo::dune2aluVertex(0))->Point() ,
                     face.myvertex(FaceTopo::dune2aluVertex(1))->Point() ,  
                     face.myvertex(FaceTopo::dune2aluVertex(2))->Point() );

      this->generatedGlobal_ = true ;
    }
  }

  template< class Comm >
  inline FieldVector<alu3d_ctype, 3> &
  ALU3dGridGeometricFaceInfoTetra< Comm >::
  outerNormal(const FieldVector<alu3d_ctype, 2>& local) const 
  {
    // if geomInfo was not reseted then normal is still correct 
    if(!normalUp2Date_)
    {
      // calculate the normal
      const GEOFaceType & face = this->connector_.face();
      const alu3d_ctype (&_p0)[3] = face.myvertex(0)->Point();
      const alu3d_ctype (&_p1)[3] = face.myvertex(1)->Point();
      const alu3d_ctype (&_p2)[3] = face.myvertex(2)->Point();

      // change sign if face normal points into inner element
      // factor is 1.0 to get integration outer normal and not volume outer normal 
      const double factor = (this->connector_.innerTwist() < 0) ? 1.0 : -1.0; 

      // see mapp_tetra_3d.h for this piece of code 
      outerNormal_[0] = factor * ((_p1[1]-_p0[1]) *(_p2[2]-_p1[2]) - (_p2[1]-_p1[1]) *(_p1[2]-_p0[2]));
      outerNormal_[1] = factor * ((_p1[2]-_p0[2]) *(_p2[0]-_p1[0]) - (_p2[2]-_p1[2]) *(_p1[0]-_p0[0]));
      outerNormal_[2] = factor * ((_p1[0]-_p0[0]) *(_p2[1]-_p1[1]) - (_p2[0]-_p1[0]) *(_p1[1]-_p0[1]));

      normalUp2Date_ = true;
    } // end if mapp ...

    return outerNormal_;
  }

  //-sepcialisation for and hexa 
  template< class Comm >
  inline ALU3dGridGeometricFaceInfoHexa< Comm >::
  ALU3dGridGeometricFaceInfoHexa(const ConnectorType& connector) 
  : Base( connector )
    , mappingGlobal_()
    , mappingGlobalUp2Date_(false) 
  {}

  template< class Comm >
  inline void ALU3dGridGeometricFaceInfoHexa< Comm >::
  resetFaceGeom() 
  { 
    Base::resetFaceGeom();
    mappingGlobalUp2Date_ = false;
  }

  template< class Comm >
  inline ALU3dGridGeometricFaceInfoHexa< Comm >::
  ALU3dGridGeometricFaceInfoHexa(const ALU3dGridGeometricFaceInfoHexa& orig) 
  : Base( orig )
    , mappingGlobal_(orig.mappingGlobal_)
    , mappingGlobalUp2Date_(orig.mappingGlobalUp2Date_) 
  {}

  template< class Comm >
  template <class GeometryImp> 
  inline void
  ALU3dGridGeometricFaceInfoHexa< Comm >::
  buildGlobalGeom(GeometryImp& geo) const 
  {
    if (! this->generatedGlobal_) 
    {
      // calculate the normal
      const GEOFaceType & face = this->connector_.face();
      
      geo.buildGeom( face.myvertex(FaceTopo::dune2aluVertex(0))->Point() ,
                     face.myvertex(FaceTopo::dune2aluVertex(1))->Point() ,
                     face.myvertex(FaceTopo::dune2aluVertex(2))->Point() ,
                     face.myvertex(FaceTopo::dune2aluVertex(3))->Point() );
      this->generatedGlobal_ = true ;
    }
  }

  template< class Comm >
  inline FieldVector<alu3d_ctype, 3> &
  ALU3dGridGeometricFaceInfoHexa< Comm >::
  outerNormal(const FieldVector<alu3d_ctype, 2>& local) const 
  {
    // if mapping calculated and affine, nothing more to do  
    if ( mappingGlobal_.affine () && mappingGlobalUp2Date_ )
      return outerNormal_ ;

    // update surface mapping
    if(! mappingGlobalUp2Date_ )
    {
      const GEOFaceType & face = connector_.face();
      // update mapping to actual face 
      mappingGlobal_.buildMapping(
        face.myvertex( FaceTopo::dune2aluVertex(0) )->Point(),
        face.myvertex( FaceTopo::dune2aluVertex(1) )->Point(),
        face.myvertex( FaceTopo::dune2aluVertex(2) )->Point(),
        face.myvertex( FaceTopo::dune2aluVertex(3) )->Point()
        );
      mappingGlobalUp2Date_ = true;
    }

    // calculate the normal
    // has to be calculated every time normal called, because 
    // depends on local 
    if (connector_.innerTwist() < 0) 
      mappingGlobal_.negativeNormal(local,outerNormal_);
    else 
      mappingGlobal_.normal(local,outerNormal_);

    // end if
    return outerNormal_;
  }

  template< ALU3dGridElementType type, class Comm >
  inline void ALU3dGridGeometricFaceInfoBase< type, Comm >::
  generateLocalGeometries() const 
  {
    if (!generatedLocal_) {
      // Get the coordinates of the face in the reference element of the
      // adjoining inner and outer elements and initialise the respective 
      // geometries
      switch (connector_.conformanceState()) 
      {
      case (ConnectorType::CONFORMING) :
        referenceElementCoordinatesRefined(INNER, coordsSelfLocal_);
        // generate outer local geometry only when not at boundary
        // * in the parallel case, this needs to be altered for the ghost cells
        if (!connector_.outerBoundary()) {
          referenceElementCoordinatesRefined(OUTER, coordsNeighborLocal_);
        } // end if
        break;
      case (ConnectorType::REFINED_INNER) :
        referenceElementCoordinatesRefined(INNER, coordsSelfLocal_);
        referenceElementCoordinatesUnrefined(OUTER, coordsNeighborLocal_);
        break;
      case (ConnectorType::REFINED_OUTER) :
        referenceElementCoordinatesUnrefined(INNER, coordsSelfLocal_);
        referenceElementCoordinatesRefined(OUTER, coordsNeighborLocal_);
        break;
      default :
        std::cerr << "ERROR: Wrong conformanceState in generateLocalGeometries! in: " << __FILE__ << " line: " << __LINE__<< std::endl;
        assert(false);
        exit(1);
      } // end switch

      generatedLocal_ = true;
    } // end if
  }

  template< ALU3dGridElementType type, class Comm >
  inline int ALU3dGridGeometricFaceInfoBase< type, Comm >::
  globalVertexIndex(const int duneFaceIndex, 
                    const int aluFaceTwist,
                    const int duneFaceVertexIndex) const 
  {
    const int localALUIndex = 
      FaceTopo::dune2aluVertex(duneFaceVertexIndex, 
                               aluFaceTwist);

    // get local ALU vertex number on the element's face
    const int localDuneIndex = ElementTopo::
        alu2duneFaceVertex(ElementTopo::dune2aluFace(duneFaceIndex),
                           localALUIndex);

    return getReferenceElement().subEntity(duneFaceIndex, 1, localDuneIndex, 3);
  }


  template< ALU3dGridElementType type, class Comm >
  inline void ALU3dGridGeometricFaceInfoBase< type, Comm >::
  referenceElementCoordinatesRefined(SideIdentifier side, 
                                     CoordinateType& result) const 
  {
    // this is a dune face index
    const int faceIndex = 
      (side == INNER ? 
       ElementTopo::alu2duneFace(connector_.innerALUFaceIndex()) :
       ElementTopo::alu2duneFace(connector_.outerALUFaceIndex()));
    const int faceTwist = 
      (side == INNER ?
       connector_.innerTwist() :
       connector_.outerTwist());

    const ReferenceElementType& refElem = getReferenceElement();

    for (int i = 0; i < numVerticesPerFace; ++i) 
    {
      int duneVertexIndex = globalVertexIndex(faceIndex, faceTwist, i); 
      result[i] = refElem.position(duneVertexIndex, 3);
    }
  }
} //end namespace Dune
#endif