TECA
teca_parallel_id.h
1 #ifndef teca_parallel_id_h
2 #define teca_parallel_id_h
3 
4 #include <iosfwd>
5 
6 // a helper class for debug and error messages
8 {};
9 
10 // print the callers rank and thread id to the given stream. this is a
11 // debug/diagnostic message and hence rank will always be reported relative to
12 // the WORLD communicator.
13 std::ostream &operator<<(
14  std::ostream &os,
15  const teca_parallel_id &id);
16 
17 #endif
teca_parallel_id
Definition: teca_parallel_id.h:8