Sierra Toolkit  Version of the Day
FieldState.hpp
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 
9 
10 #ifndef stk_mesh_FieldState_hpp
11 #define stk_mesh_FieldState_hpp
12 
13 namespace stk_classic {
14 namespace mesh {
15 
34 enum FieldState {
35  StateNone = 0,
36  StateNew = 0,
37  StateNP1 = 0,
38  StateOld = 1,
39  StateN = 1,
40  StateNM1 = 2,
41  StateNM2 = 3,
42  StateNM3 = 4,
43  StateNM4 = 5
44 };
45 
49 enum { MaximumFieldStates = 6 };
50 
53 } //namespace mesh
54 } //namespace stk_classic
55 
56 #endif //stk_mesh_FieldState_hpp
Previous state of a field with three+ states.
Definition: FieldState.hpp:39
Newest state of a field with two states.
Definition: FieldState.hpp:36
State of a field with one state.
Definition: FieldState.hpp:35
Previous-3 state of a field with five+ states.
Definition: FieldState.hpp:42
Previous-2 state of a field with four+ states.
Definition: FieldState.hpp:41
Sierra Toolkit.
Previous state of a field with two states.
Definition: FieldState.hpp:38
Newest state of a field with three+ states.
Definition: FieldState.hpp:37
Previous-1 state of a field with three+ states.
Definition: FieldState.hpp:40
Previous-4 state of a field with six states.
Definition: FieldState.hpp:43
FieldState
Enumeration of states for multi-state fields.
Definition: FieldState.hpp:34