~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to src/kernel/mesh/dolfin/CellRefData.h

  • Committer: Anders Logg
  • Date: 2007-01-10 09:04:44 UTC
  • mfrom: (1689.1.221 trunk)
  • Revision ID: logg@simula.no-20070110090444-ecyux3n1qnei4i8h
RemoveĀ oldĀ head

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Copyright (C) 2003-2005 Johan Hoffman and Anders Logg.
2
 
// Licensed under the GNU GPL Version 2.
3
 
//
4
 
// First added:  2003
5
 
// Last changed: 2005
6
 
 
7
 
#ifndef __CELL_REF_DATA_H
8
 
#define __CELL_REF_DATA_H
9
 
 
10
 
#include <dolfin/Cell.h>
11
 
 
12
 
namespace dolfin {
13
 
 
14
 
  /// Cell refinement data
15
 
  class CellRefData {
16
 
  public:
17
 
 
18
 
    /// Create cell refinement data
19
 
    CellRefData() {
20
 
      marker = Cell::marked_for_no_ref;
21
 
      status = Cell::unref;
22
 
    }
23
 
    
24
 
    /// The mark of the cell
25
 
    Cell::Marker marker;
26
 
 
27
 
    // The status of the cell
28
 
    Cell::Status status;
29
 
 
30
 
  };
31
 
 
32
 
}
33
 
 
34
 
#endif