-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
56 lines (48 loc) · 1.35 KB
/
main.cpp
File metadata and controls
56 lines (48 loc) · 1.35 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
53
54
55
56
#include<iostream>
//#include "Basics.h"
#include "Basics_boot.h"
#include "ExtendedCk.h"
#include "TROOT.h"
#include "TGraph.h"
#include "TFile.h"
#include "TH1F.h"
//#include "Worksheet.h"
/*void ComparePionPion(){
TGraph* grCATS = Basics_PiPiCATS(1,1);
TGraph* grTheory = Basics_PiPiTheory(1,1);
TFile* OutputFile = new TFile("ComparePionPion.root","recreate");
grCATS->Write();
grTheory->Write();
delete grCATS;
delete grTheory;
delete OutputFile;
}*/
//void DoSomeActuallPiPiFitting(){
// Basics_PiPiCATS2(1,1);
//}
void DoSomeActuallBootingForPiPiFitting(){
unsigned int config[3] = {0,0,0};
Basics_PiPiCATS_boot(1,1,config);
}
/*void FitpLCF(){
TH1F* pLCF = Worksheet_ProtonLambda();
TFile* OutputFile2 = new TFile("ProtonLambdaUsmaniCF.root","recreate");
pLCF->Write();
delete pLCF;
delete OutputFile2;
}*/
int main(int argc, char *argv[]){
printf("\nHello to this lovely CATS tutorial!\n");
printf(" To find a bug: continue with this tutorial\n");
printf("-------------------------------------------\n");
//ComparePionPion();
//DoSomeActuallPiPiFitting();
DoSomeActuallBootingForPiPiFitting();
//FitpLCF();
//Basics_ProtonLambda();
//Ck_pL_Ledni_Usmani();
//Worksheet_SetUp_pp();
//Worksheet_SetUp_pXi();
//Worksheet_SetUp_pSigma();
return 0;
}