-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
52 lines (46 loc) · 1.5 KB
/
main.cpp
File metadata and controls
52 lines (46 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
* @mainpage particle analysis
* @brief 别往main函数堆分析代码!!!别往main函数堆分析代码!!!别往main函数堆分析代码!!!
*
*
* _oo0oo_
* o8888888o
* 88" . "88
* (| -_- |)
* 0\ = /0
* ___/`---'\___
* .' \\| | * '.
* / \\||| : ||| * \
* / _||||| -:- |||||- \
* | | \\\ - /// | |
* | \_| ''\---/'' |_/ |
* \ .-\__ '-' ___/-. /
* ___'. .' /--.--\ `. .'___
* ."" '< `.___\_<|>_/___.' >' "".
* | | : `- \`.;`\ _ /`;.`/ - ` : | |
* \ \ `_. \_ __\ /__ _/ .-` / /
* =====`-.____`.___ \_____/___.-`___.-'=====
* `=---='
*
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
* 佛祖保佑 永无BUG
*
*
*
*
* @section 用法:在scripts里面写主体分析代码,在这里调用,然后cmake
*/
#include "AllInOne.h"
#include "AliRootHitsFOCALManager.h"
#include "AliRootFOCALEventLooper.h"
#include "TTree.h"
// #include "scripts/test.cpp"
int main()
{
AliRootFOCALEventLooper looper("/home/huinaibing/focal_workdir/my_code/cut_eta_phikk/FOCAL.Hits.root", 10, 60000);
// manager.classCheck();
looper.classCheck();
return 0; // 写C++不在main函数里面return的注定会度过一个失败的人生
}