-
Notifications
You must be signed in to change notification settings - Fork 490
Expand file tree
/
Copy pathload_all_libs.C
More file actions
29 lines (28 loc) · 844 Bytes
/
load_all_libs.C
File metadata and controls
29 lines (28 loc) · 844 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
#if !defined(__CLING__) || defined(__ROOTCLING__)
#include <iostream>
#include "TSystem.h"
#endif
void load_all_libs()
{
gSystem->Load("libDetectorsBase");
gSystem->Load("libDetectorsPassive");
gSystem->Load("libField");
gSystem->Load("libGenerators");
gSystem->Load("libHeaders");
gSystem->Load("libHitAnalysis");
gSystem->Load("libITSBase");
gSystem->Load("libITSReconstruction");
gSystem->Load("libITSSimulation");
gSystem->Load("libMFTBase");
gSystem->Load("libMFTReconstruction");
gSystem->Load("libMFTSimulation");
gSystem->Load("libMathUtils");
gSystem->Load("libO2Device");
gSystem->Load("libSimulationDataFormat");
gSystem->Load("libTPCBase");
gSystem->Load("libTPCSimulation");
gSystem->Load("libaliceHLTwrapper");
cout << endl
<< endl;
cout << "Macro finished succesfully." << endl;
}