1 /*! 2 \author G. Van Buren, BNL 3 4 Determination of which out/err streams to use 5 6 */ 7 8 #ifndef StMessageStream 9 #define StMessageStream 10 11 #include "Riostream.h" 12 13 static std::ostream& myout(std::cout); 14 static std::ostream& myerr(std::cerr); 15 16 // 64 character string 17 static const char* ch64 = 18 "1234567 10 234567 20 234567 30 234567 40 234567 50 234567 60 234"; 19 static const char* ch6a = ch64; // avoids "unused" warning 20 21 #endif 22 23 // $Id: StMessageStream.h,v 1.3 2012/06/11 15:05:34 fisyak Exp $ 24 // $Log: StMessageStream.h,v $ 25 // Revision 1.3 2012/06/11 15:05:34 fisyak 26 // std namespace 27 // 28 // Revision 1.2 2003/10/01 20:06:50 genevb 29 // Initialize and test ostrstream buffer sizes (support for gcc before 3.2) 30 // 31 // Revision 1.1 2003/09/25 21:19:22 genevb 32 // Some new cout-like functions and friend functions, some doxygen-ization 33 // 34 // 35