-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibraries.h
More file actions
62 lines (56 loc) · 1.26 KB
/
Libraries.h
File metadata and controls
62 lines (56 loc) · 1.26 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
57
58
59
60
/*******************************************/
// Author: Ivan Dario Piernagorda Peña
// Author: Karen Milena Rodriguez
// Date: 15/02/2020
// Title: ROOT and C/C++ Libraries
/*******************************************/
#ifndef LIBRARIES_H
#define LIBRARIES_H
#include "TROOT.h"
#include "TFile.h"
#include "TTree.h"
#include "TMultiGraph.h"
#include "TH1F.h"
#include "TH2F.h"
#include "TCanvas.h"
#include "TF2.h"
#include "TEllipse.h"
#include "TMath.h"
#include "TLine.h"
#include "TPad.h"
#include "TChain.h"
#include "TStyle.h"
#include "TPaveStats.h"
#include "TLatex.h"
#include "TGraphErrors.h"
#include "TProfile.h"
#include "TEllipse.h"
#include "TLorentzVector.h"
#include "TVector3.h"
#include "TObject.h"
#include "TObjArray.h"
#include "TPaveText.h"
#include "TText.h"
#include "TSystem.h"
#include "Math/Minimizer.h"
#include "Math/Factory.h"
#include "Math/Functor.h"
#include "Math/IFunction.h"
#include "TVirtualFitter.h"
#include <sstream>
#include <iostream>
#include <iomanip>
#include <fstream>
#include <cstdlib>
#include <cstdio>
#include <string>
#include <vector>
#include <stdlib.h>
#include <stdio.h>
#include <algorithm>
#include <dirent.h>
#include <math.h>
#include <assert.h>
#include <chrono>
#include <map>
#endif