]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/scripts/Compile.C
Process codes corrected/completed.
[u/mrichter/AliRoot.git] / FMD / scripts / Compile.C
1 //____________________________________________________________________
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 //
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 */
20 void
21 Compile(const char* script, Option_t* option="g")
22 {
23   gSystem->Load("libFMDutil.so");
24   gSystem->SetIncludePath("-I`root-config --incdir` "
25                           "-I${ALICE_ROOT} " 
26                           "-I${ALICE_ROOT}/include " 
27                           "-I${ALICE_ROOT}/FMD "
28                           "-I${ALICE_ROOT}/geant3/TGeant3");
29   gROOT->ProcessLine(Form(".L %s+%s", script, option));
30 }
31
32 //____________________________________________________________________
33 //
34 // EOF
35 //