-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakeLibs.C
More file actions
20 lines (17 loc) · 835 Bytes
/
MakeLibs.C
File metadata and controls
20 lines (17 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
void MakeLibs()
{
gSystem->SetBuildDir(gSystem->GetBuildDir(), true);
gInterpreter->AddIncludePath("/home/francescop/ArCube/analysis/code");
gInterpreter->AddIncludePath("/home/francescop/analysis/include");
//gSystem->Unload("RSTPC_Globals");
//gSystem->Unload("RSTPC_Analyser");
//gSystem->Unload("MppcTreeWrapper");
//gSystem->Unload("RSTPC_RunProcessor");
//gSystem->Unload("RSTPC_T1wrapper");
gSystem->CompileMacro("RSTPC_Globals.cc", "gkf", "RSTPC_Globals");
gSystem->CompileMacro("RSTPC_Analyser.cc", "gkf", "RSTPC_Analyser");
gSystem->CompileMacro("MppcTreeWrapper.cc", "gkf", "MppcTreeWrapper");
gSystem->CompileMacro("RSTPC_T1wrapper.cc", "gkf", "RSTPC_T1wrapper");
gSystem->CompileMacro("RSTPC_Hits.cc", "gkf", "RSTPC_Hits");
gSystem->CompileMacro("RSTPC_RunProcessor.cc", "gkf", "RSTPC_RunProcessor");
}