Xephyr  0.0
plotHelpers.h
1 #include "TGraph.h"
2 #include "TH1F.h"
3 #include "TH2F.h"
4 #include "TTree.h"
5 #include "TString.h"
6 #include "TGraphAsymmErrors.h"
7 #include "TEventList.h"
8 #include "TCanvas.h"
9 #include <iostream>
10 #include "TDirectory.h"
11 #include "TFile.h"
12 #include "XeLikelihoods.h"
13 
14 using namespace std;
15 
16 #ifndef PLOT_HELPERS
17 #define PLOT_HELPERS
18 
19 namespace plotHelpers
20 {
21 
23 TH1F giveQuantiles(TTree *tree, double percent[], double quantiles[], int nquanta, TString var, TString cut = "");
24 
25 
26 TGraphAsymmErrors giveTSquantiles(TTree *tree, double *mu_list, int mu_size, TString OutDir, double wimpMass);
27 
28 
29 TGraphAsymmErrors sensitivity(TTree *tree, TString OutDir, double wimpMass[], int N_mass);
30 
31 
32 void addHisto(TH2F *histo, TH2F *h_toBeAdded, double scalefactor );
33 
34 }
35 #endif
Definition: plotHelpers.cxx:3