1 |
|
#include <iostream> |
2 |
+ |
#include <fstream> |
3 |
|
#include <TCut.h> |
4 |
+ |
|
5 |
|
#ifndef SampleClassLoaded |
6 |
|
#include "SampleClass.C" |
7 |
|
#endif |
45 |
|
int dogaus3sigma=3; |
46 |
|
int Kostasmethod=-99; |
47 |
|
|
48 |
< |
float fitresultconstdata=0;//this is the result when fitting in the 0-30 GeV range! |
49 |
< |
float fitresultconstmc=0;//this is the result when fitting in the 0-30 GeV range! |
48 |
> |
float fitresultconstdata=0;//this is the result when fitting in the 0-30 GeV range |
49 |
> |
float fitresultconstmc=0;//this is the result when fitting in the 0-30 GeV range |
50 |
|
|
51 |
|
int method=-1; |
52 |
|
|
53 |
|
//now some style issues: |
54 |
|
float DataMarkerSize=1.2; |
55 |
+ |
|
56 |
+ |
//here we save our number of predicted and observed events (with errors) |
57 |
+ |
vector<float> Nobs; |
58 |
+ |
vector<float> Npred; |
59 |
+ |
vector<float> Nprederr; |
60 |
+ |
|
61 |
+ |
int noJES=0; |
62 |
+ |
int JESdown=1; |
63 |
+ |
int JESup=2; |
64 |
+ |
|
65 |
|
} |