-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoadAlgLibs.C
53 lines (53 loc) · 1.77 KB
/
LoadAlgLibs.C
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
Bool_t LoadAlgLibs()
{
printf("LoadAlgLibs >>\n");
//
gROOT->ProcessLine(".L AliAlgAux.cxx+g");
gROOT->ProcessLine(".L AliAlgPoint.cxx+g");
if (gClassTable->GetID("AliAlgPoint")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgTrack.cxx+g");
if (gClassTable->GetID("AliAlgTrack")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgVol.cxx+g");
if (gClassTable->GetID("AliAlgVol")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgSens.cxx+g");
if (gClassTable->GetID("AliAlgSens")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgDet.cxx+g");
if (gClassTable->GetID("AliAlgDet")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgSensITS.cxx+g");
if (gClassTable->GetID("AliAlgSensITS")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgDetITS.cxx+g");
if (gClassTable->GetID("AliAlgDetITS")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgSensTPC.cxx+g");
if (gClassTable->GetID("AliAlgSensTPC")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgDetTPC.cxx+g");
if (gClassTable->GetID("AliAlgDetTPC")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgSensTRD.cxx+g");
if (gClassTable->GetID("AliAlgSensTRD")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgDetTRD.cxx+g");
if (gClassTable->GetID("AliAlgDetTRD")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgSensTOF.cxx+g");
if (gClassTable->GetID("AliAlgSensTOF")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgDetTOF.cxx+g");
if (gClassTable->GetID("AliAlgDetTOF")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgSteer.cxx+g");
if (gClassTable->GetID("AliAlgSteer")<0) return kFALSE;
//
gROOT->ProcessLine(".L AliAlgMPRecord.cxx+g");
if (gClassTable->GetID("AliAlgMPRecord")<0) return kFALSE;
//
printf("LoadAlgLibs <<\n");
return kTRUE;
}