]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/scripts/Compile.C
Whoops
[u/mrichter/AliRoot.git] / FMD / scripts / Compile.C
CommitLineData
bf000c32 1//____________________________________________________________________
a1f80595 2//
3// $Id$
4//
5// Script to compile (using ACLic) and load a script. It sets the
6// include path to contain the relevant directories.
7//
9b48326f 8/** @defgroup FMD_script Scripts
9 @brief Scripts for the FMD
10*/
11/** @defgroup simple_script Simple scripts
12 @ingroup FMD_script
13 @brief Scripts for the FMD
14*/
15/** Compile an FMD script using ACLic
16 @param script Script to compile
17 @param option Compile option
18 @ingroup FMD_script
19*/
9b98d361 20Bool_t
8f6ee336 21Compile(const char* script, Option_t* option="g")
a1f80595 22{
9b98d361 23 if (!script || script[0] == '\0') {
24 std::cerr << "No script to compile!" << std::endl;
25 return kFALSE;
26 }
83ad576a 27 gSystem->Load("libANALYSIS.so");
28 gSystem->Load("libANALYSISalice.so");
29 gSystem->Load("libFMDanalysis.so");
a1f80595 30 gSystem->Load("libFMDutil.so");
9b98d361 31 gSystem->Load("libFMDflow.so");
32 TString macroPath(gROOT->GetMacroPath());
33 macroPath.Append(":${ALICE_ROOT}/FMD/scripts");
34 gROOT->SetMacroPath(macroPath.Data());
a1f80595 35 gSystem->SetIncludePath("-I`root-config --incdir` "
a9579262 36 "-I${ALICE_ROOT} "
a1f80595 37 "-I${ALICE_ROOT}/include "
38 "-I${ALICE_ROOT}/FMD "
39 "-I${ALICE_ROOT}/geant3/TGeant3");
9b98d361 40 Long_t ret = gROOT->ProcessLine(Form(".L %s+%s", script, option));
41 return ret == 0;
a1f80595 42}
43
44//____________________________________________________________________
45//
46// EOF
47//