]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/make_TPCcalib_par.sh
fix for coverity issues : 17923
[u/mrichter/AliRoot.git] / TPC / make_TPCcalib_par.sh
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
18 EDIR=TPCcalibPar
19
20 mkdir $EDIR
21
22
23 SRC=$ALICE_ROOT/TPC
24 echo Source $SRC  
25 echo EDIR $EDIR
26 cp $SRC/AliTPCFitPad*               $EDIR
27 cp $SRC/AliTPCCal*.h                $EDIR
28 cp $SRC/AliTPCCal*.cxx              $EDIR
29 cp $SRC/AliTPCcal*.h                $EDIR
30 cp $SRC/AliTPCcal*.cxx              $EDIR
31 cp $SRC/AliTPCSel*.cxx              $EDIR
32 cp $SRC/AliTPCSel*.h                $EDIR
33 cp $SRC/AliTPC*Ana*.*               $EDIR
34 cp $SRC/TPCcalibLinkDef.h           $EDIR
35 cp $SRC/Makefile.Calib              $EDIR/Makefile
36 cp $SRC/Makefile.arch.Calib         $EDIR/Makefile.arch
37 cp $SRC/libTPCcalib.pkg             $EDIR  
38
39
40 mkdir $EDIR/PROOF-INF
41 cd $EDIR/PROOF-INF
42
43
44 cp $SRC/BUILDcalib.sh BUILD.sh
45 cp $SRC/SETUPcalib.C  SETUP.C 
46
47
48 chmod 755 BUILD.sh
49
50 cd ../..
51
52 tar zcvf TPCcalibPar.par $EDIR
53
54
55 exit 0