forked from icosivi/BetaAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCompilatore.C
More file actions
executable file
·35 lines (29 loc) · 771 Bytes
/
Compilatore.C
File metadata and controls
executable file
·35 lines (29 loc) · 771 Bytes
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
//{
#include <Riostream.h>
#include <TROOT.h>
#include <TObject.h>
#include <TSystem.h>
#include "TStopwatch.h"
#include "TMath.h"
#include "TAxis.h"
#include "TFile.h"
#include "TH1.h"
#include "TH1D.h"
#include "TCanvas.h"
#include <TTree.h>
#include <TBranch.h>
#include <TSystemDirectory.h>
#include <TSystemFile.h>
#include <TList.h>
#include "include/general.hpp"
#include "include/Chameleon.h"
#include "include/ConfigFile.hpp"
#include "src/Analyzer.hpp"
void Compilatore(){
gSystem->CompileMacro("src/general.cpp","kg");
gSystem->CompileMacro("src/Chameleon.cpp","kg");
gSystem->CompileMacro("src/ConfigFile.cpp","kg");
gSystem->CompileMacro("src/Analyzer.cpp","kg");
gSystem->CompileMacro("analisi.C","kg");
gROOT->ProcessLine("analisi()");
}