#ifndef HEPTRACE_H #define HEPTRACE_H // ---------------------------------------------------------------------- // // HepTrace.h - A simple tracing macro intended for developer use. // // The macro is enabled at compile time by defining the symbol HEPTRACE. // // History: // 03-Jul-1997 Walter Brown Initial draft // // ---------------------------------------------------------------------- #ifdef HEPTRACE #include "ZMutility/iostream" #define HEP_DEBUG( s ) (std::cerr << s << std::endl) #else #define HEP_DEBUG( s ) #endif // HEPTRACE #endif // HEPTRACE_H