CMS 3D CMS Logo

dout.h
Go to the documentation of this file.
1 #if !defined(DoutH)
2 #define DoutH
3 
4 #if !defined(_DEBUG_QUIET)
5 #define dout cout << __FILE__ << "(" << __LINE__ << ") "
6 #else
7 #define dout \
8  if (0) \
9  cout
10 #endif
11 
12 #endif