ATTPCROOT  0.3.0-alpha
A ROOT-based framework for analyzing data from active target detectors
AtFormat.h
Go to the documentation of this file.
1 #ifndef ATFORMAT
2 #define ATFORMAT
3 
4 #define cRED "\033[1;31m"
5 #define cYELLOW "\033[1;33m"
6 #define cNORMAL "\033[0m"
7 #define cGREEN "\033[1;32m"
8 #define cBLUE "\033[1;34m"
9 
10 #define RST "\x1B[0m"
11 #define KRED "\x1B[31m"
12 #define KGRN "\x1B[32m"
13 #define KYEL "\x1B[33m"
14 #define KBLU "\x1B[34m"
15 #define KMAG "\x1B[35m"
16 #define KCYN "\x1B[36m"
17 #define KWHT "\x1B[37m"
18 
19 #define FRED(x) KRED x RST
20 #define FGRN(x) KGRN x RST
21 #define FYEL(x) KYEL x RST
22 #define FBLU(x) KBLU x RST
23 #define FMAG(x) KMAG x RST
24 #define FCYN(x) KCYN x RST
25 #define FWHT(x) KWHT x RST
26 
27 #define BOLD(x) "\x1B[1m" x RST
28 #define UNDL(x) "\x1B[4m" x RST
29 
30 #endif