Sierra Toolkit  Version of the Day
TopologyDimensions.cpp
1 /*------------------------------------------------------------------------*/
2 /* Copyright 2010 Sandia Corporation. */
3 /* Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive */
4 /* license for use of this work by or on behalf of the U.S. Government. */
5 /* Export of this program may require a license from the */
6 /* United States Government. */
7 /*------------------------------------------------------------------------*/
8 
13 #include <stk_mesh/fem/TopologyDimensions.hpp>
14 
15 namespace stk_classic {
16 namespace mesh {
17 
18 const char * ElementNode::name() const
19 { static const char n[] = "ElementNode" ; return n ; }
20 
22 { static const ElementNode self ; return self ; }
23 
24 const char * QuadratureTag::name() const
25 { static const char n[] = "Quadrature" ; return n ; }
26 
27 const QuadratureTag & QuadratureTag::tag()
28 { static const QuadratureTag self ; return self ; }
29 
30 const char * BasisTag::name() const
31 { static const char n[] = "Basis" ; return n ; }
32 
33 const BasisTag & BasisTag::tag()
34 { static const BasisTag self ; return self ; }
35 
36 } // namespace mesh
37 } // namespace stk_classic
38 
static const ElementNode & tag()
Singleton.
Define an array dimension of the number of nodes per element.
Sierra Toolkit.