]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Adding the PROOF-INF.PWG2spectra directory needed for the par file
authorpanos <panos@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 20 Nov 2007 08:12:31 +0000 (08:12 +0000)
committerpanos <panos@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 20 Nov 2007 08:12:31 +0000 (08:12 +0000)
PWG2/PROOF-INF.PWG2spectra/BUILD.sh [new file with mode: 0755]
PWG2/PROOF-INF.PWG2spectra/SETUP.C [new file with mode: 0644]

diff --git a/PWG2/PROOF-INF.PWG2spectra/BUILD.sh b/PWG2/PROOF-INF.PWG2spectra/BUILD.sh
new file mode 100755 (executable)
index 0000000..485beb3
--- /dev/null
@@ -0,0 +1,9 @@
+#! /bin/sh
+
+touch libPWG2.pkg
+touch libPWG2flow.pkg
+touch libPWG2ebye.pkg
+touch libPWG2femtoscopy.pkg
+touch libPWG2femtoscopyUser.pkg
+
+make libPWG2spectra.so
diff --git a/PWG2/PROOF-INF.PWG2spectra/SETUP.C b/PWG2/PROOF-INF.PWG2spectra/SETUP.C
new file mode 100644 (file)
index 0000000..df3eb9d
--- /dev/null
@@ -0,0 +1,18 @@
+void SETUP() {
+  CheckLoadLibrary("libPWG2spectra");
+
+  // Set the include paths
+  gROOT->ProcessLine(".include PWG2spectra");
+
+  // Set our location, so that other packages can find us
+  gSystem->Setenv("PWG2spectra_INCLUDE", "PWG2spectra");
+}
+
+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);
+}