]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/TRDcalib/make_TRDcalib_par.sh
running local for SP and LYZEP and new histograms for QC
[u/mrichter/AliRoot.git] / TRD / TRDcalib / make_TRDcalib_par.sh
CommitLineData
da7d31b7 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=TRDcalib
19
20mkdir $EDIR
21
22
23SRC=$ALICE_ROOT/TRD/TRDcalib
24echo Source $SRC
25echo EDIR $EDIR
26
27cp $SRC/Ali*.h $EDIR
28cp $SRC/Ali*.cxx $EDIR
29cp $SRC/TRDcalibLinkDef.h $EDIR
30cp $SRC/Makefile* $EDIR
31cp $SRC/libTRDcalib.pkg2 $EDIR
32
33mkdir $EDIR/PROOF-INF
34cd $EDIR/PROOF-INF
35
36
37cp $SRC/BUILD.sh .
38cp $SRC/SETUP.C .
39
40
41chmod 755 BUILD.sh
42
43cd ../..
44
45tar zcvf TRDcalib.par $EDIR
46