]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/TPCcalib/make_TPCcalib_par.sh
Up to date of the components (Marian, Lars, Alexander)
[u/mrichter/AliRoot.git] / TPC / TPCcalib / make_TPCcalib_par.sh
CommitLineData
35ff5568 1#! /bin/sh
2#
3# Make the event.par file to be used to analyse Event objects with PROOF.
4#
5# Usage: sh make_event_par.sh
6#
7# Creates the PAR file "event.par" which can be used in PROOF via the
8# package manager like:
9# gProof->UploadPackage("event.par")
10# gProof->EnablePackage("event")
11#
12# Command to check that package is active and that libEvent.so is loaded:
13# gProof->ShowPackages()
14# gProof->ShowEnabledPackages()
15# gProof->Exec("gSystem->ListLibraries()")
16#
17
18EDIR=TPCcalib
19
20mkdir $EDIR
21
22
e6fafacb 23SRC=$ALICE_ROOT/TPC/TPCcalib
35ff5568 24echo Source $SRC
25echo EDIR $EDIR
26
27cp $SRC/Ali*.h $EDIR
28cp $SRC/Ali*.cxx $EDIR
29cp $SRC/TPCcalibLinkDef.h $EDIR
30cp $SRC/Makefile* $EDIR
31cp $SRC/libTPCcalib.pkg $EDIR
b168fbc0 32cp $SRC/libTPCcalib.pkg2 $EDIR
35ff5568 33
34mkdir $EDIR/PROOF-INF
35cd $EDIR/PROOF-INF
36
37
38cp $SRC/BUILD.sh .
39cp $SRC/SETUP.C .
40
41
42chmod 755 BUILD.sh
43
44cd ../..
45
46tar zcvf TPCcalib.par $EDIR
47
48
49exit 0