LifeV
MarkerDefinitions.hpp
Go to the documentation of this file.
1 //@HEADER
2 /*
3 *******************************************************************************
4 
5  Copyright (C) 2004, 2005, 2007 EPFL, Politecnico di Milano, INRIA
6  Copyright (C) 2010 EPFL, Politecnico di Milano, Emory University
7 
8  This file is part of LifeV.
9 
10  LifeV is free software; you can redistribute it and/or modify
11  it under the terms of the GNU Lesser General Public License as published by
12  the Free Software Foundation, either version 3 of the License, or
13  (at your option) any later version.
14 
15  LifeV is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  Lesser General Public License for more details.
19 
20  You should have received a copy of the GNU Lesser General Public License
21  along with LifeV. If not, see <http://www.gnu.org/licenses/>.
22 
23 *******************************************************************************
24 */
25 //@HEADER
26 
27 /*!
28  @file
29  @brief A simple implementations of Markers
30 
31  @date 00-00-0000
32  @author Luca Formaggia
33  @contributor Luca Bertagna <lbertag@emody.edu>
34 
35  This is the simplest implementation of the markers, which just adopts the
36  basis marker classes defined in marker_base.h.
37 
38  Specialised markers can be implemented using this file as a
39  reference.
40 */
41 
42 #ifndef MARKERDEFINITIONS_H
43 #define MARKERDEFINITIONS_H 1
44 
45 #include <lifev/core/mesh/Marker.hpp>
46 
47 namespace LifeV
48 {
49 //! MarkerCommon - A trait class that defines the markers used in RegionMesh
50 /*!
51  * It takes as template parameter the policy for the entityFlag treatment.
52  * It is a concrete class that may be redefined by the user if different markers are
53  * needed. It is passed as template argument to the RegionMesh classes
54  */
55 
56 template
57 <class MT>
59 {
60 public:
61 
62  //! @name Public Types
63  //@{
64  //! The marker used for the Points
65  typedef Marker<MT> pointMarker_Type;
66  //! The marker used for the Edges
67  typedef Marker<MT> edgeMarker_Type;
68  //! The marker used for the Faces
69  typedef Marker<MT> faceMarker_Type;
70  //! The marker used for the Volumes
72  //! The marker used for the Regions
74  //@}
75 };
76 
77 //! The simplest MarkerCommon: uses all defaults
79 
80 } // Namespace LifeV
81 
82 #endif /* MARKERDEFINITIONS_H */
MarkerIDStandardPolicy - Class that defines the standard policies on Marker Ids.
Definition: Marker.hpp:89
Marker< MT > edgeMarker_Type
The marker used for the Edges.
void updateInverseJacobian(const UInt &iQuadPt)
Marker< MT > regionMarker_Type
The marker used for the Regions.
Marker< MT > faceMarker_Type
The marker used for the Faces.
MarkerCommon< MarkerIDStandardPolicy > defaultMarkerCommon_Type
The simplest MarkerCommon: uses all defaults.
MarkerCommon - A trait class that defines the markers used in RegionMesh.
Marker< MT > volumeMarker_Type
The marker used for the Volumes.
Marker - Base marker class.
Definition: Marker.hpp:148
Marker< MT > pointMarker_Type
The marker used for the Points.