]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
added conf for making flow par file for grid and CAF
authorsnelling <snelling@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 3 Jun 2008 12:48:01 +0000 (12:48 +0000)
committersnelling <snelling@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 3 Jun 2008 12:48:01 +0000 (12:48 +0000)
PWG2/PROOF-INF.PWG2flow/BUILD.sh [new file with mode: 0755]
PWG2/PROOF-INF.PWG2flow/SETUP.C [new file with mode: 0644]

diff --git a/PWG2/PROOF-INF.PWG2flow/BUILD.sh b/PWG2/PROOF-INF.PWG2flow/BUILD.sh
new file mode 100755 (executable)
index 0000000..16f288b
--- /dev/null
@@ -0,0 +1,5 @@
+#! /bin/sh
+
+touch libPWG2flow.pkg
+
+make libPWG2flow.so
diff --git a/PWG2/PROOF-INF.PWG2flow/SETUP.C b/PWG2/PROOF-INF.PWG2flow/SETUP.C
new file mode 100644 (file)
index 0000000..cf7c80e
--- /dev/null
@@ -0,0 +1,18 @@
+void SETUP() {
+  CheckLoadLibrary("libPWG2flow");
+  
+  // Set the include paths
+  gROOT->ProcessLine(".include PWG2flow/FLOW");
+
+  // Set our location, so that other packages can find us
+  gSystem->Setenv("PWG2flow_INCLUDE", "PWG2flow/FLOW");
+}
+
+Int_t CheckLoadLibrary(const char* library) {
+  // checks if a library is already loaded, if not loads the library
+
+  if (strlen(gSystem->GetLibraries(Form("%s.so", library), "", kFALSE)) > 0)
+    return 1;
+  
+  return gSystem->Load(library);
+}