-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathE15190ReaderLogo.cpp
20 lines (18 loc) · 1.5 KB
/
E15190ReaderLogo.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <E15190ReaderLogo.h>
void PrintE15190ReaderLogo()
{
printf("// ██╗ ██╗██╗██████╗ █████╗ ███████╗██╗ ██╗████████╗\n");
printf("// ██║ ██║██║██╔══██╗██╔══██╗██╔════╝██║ ██║╚══██╔══╝\n");
printf("// ███████║██║██████╔╝███████║█████╗ ██║ ██║ ██║ \n");
printf("// ██╔══██║██║██╔══██╗██╔══██║██╔══╝ ╚██╗ ██╔╝ ██║ \n");
printf("// ██║ ██║██║██║ ██║██║ ██║███████╗ ╚████╔╝ ██║ \n");
printf("// ╚═╝ ╚═╝╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ ╚═══╝ ╚═╝ \n");
printf("// E15190-Unified-Analysis-Framework\n");
printf("// A global unified analysis framework to analyze HiRAEVT raw data structures, \n");
printf("// produce calibrated data with new data structures and analyze calibrated data.\n");
printf("// The Framework is unofficially part of the HiRAEVT program suite.\n");
printf("// Version 2.0-beta.1\n");
printf("// Contributors: Daniele Dell'Aquila, Kuan Zhu\n");
printf("//\n\n");
printf("Welcome to E15190-Unified-Analysis-Framework\n\n");
}