Sierra Toolkit  Version of the Day
DiagWriter_fwd.hpp
1 #ifndef stk_mesh_DiagWriter_fwd_h
2 #define stk_mesh_DiagWriter_fwd_h
3 
4 #include <stk_util/diag/Writer_fwd.hpp>
5 
6 namespace stk_classic {
7 namespace mesh {
8 
9 enum LogMask {
10  LOG_ALWAYS = stk_classic::LOG_ALWAYS,
11  LOG_TRACE = stk_classic::LOG_TRACE,
12  LOG_TRACE_STATS = stk_classic::LOG_TRACE_STATS,
13  LOG_TRACE_SUB_CALLS = stk_classic::LOG_TRACE_SUB_CALLS,
14  LOG_MEMBERS = stk_classic::LOG_MEMBERS,
15 
16  LOG_STREAM_COMMON = LOG_TRACE | LOG_TRACE_STATS,
17  LOG_BUCKET = 0x00000100,
18  LOG_ENTITY = 0x00000200,
19  LOG_PART = 0x00000300,
20  LOG_FIELD = 0x00000400,
21 
22  LOG_MOD_END = 0x00000800
23 };
24 
25 } // namespace mesh
26 } // namespace stk_classic
27 
28 #endif // stk_mesh_DiagWriter_fwd_h
Sierra Toolkit.
LogMask
Enumeration LogMask enumerates global bit assignments.
Definition: Writer_fwd.hpp:23