17 #ifndef ALIHLTARRAYIO_H
18 #define ALIHLTARRAYIO_H
27 static const char *
const green =
"\033[1;40;32m";
28 static const char *
const yellow =
"\033[1;40;33m";
29 static const char *
const blue =
"\033[1;40;34m";
30 static const char *
const normal =
"\033[0m";
35 inline std::ostream &operator<<( std::ostream &out, const AliHLTArray<T> &a )
37 out << AnsiColor::blue <<
"{" << AnsiColor::normal;
38 for (
int i = 0; i < a.Size(); ++i ) {
40 out << AnsiColor::blue <<
", " << AnsiColor::normal;
44 out << AnsiColor::blue <<
"}" << AnsiColor::normal;
47 #endif // ALIHLTARRAYIO_H