|
Sierra Toolkit Version of the Day
|
00001 /*------------------------------------------------------------------------*/ 00002 /* Copyright 2010 Sandia Corporation. */ 00003 /* Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive */ 00004 /* license for use of this work by or on behalf of the U.S. Government. */ 00005 /* Export of this program may require a license from the */ 00006 /* United States Government. */ 00007 /*------------------------------------------------------------------------*/ 00008 00009 00010 #ifndef stk_mesh_FieldState_hpp 00011 #define stk_mesh_FieldState_hpp 00012 00013 namespace stk { 00014 namespace mesh { 00015 00032 enum FieldState { 00033 StateNone = 0, 00034 StateNew = 0, 00035 StateNP1 = 0, 00036 StateOld = 1, 00037 StateN = 1, 00038 StateNM1 = 2, 00039 StateNM2 = 3, 00040 StateNM3 = 4, 00041 StateNM4 = 5 00042 }; 00043 00047 enum { MaximumFieldStates = 6 }; 00048 00050 const char * field_state_name( FieldState ); 00051 00054 } //namespace mesh 00055 } //namespace stk 00056 00057 #endif //stk_mesh_FieldState_hpp