]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/make_TPCcalib_par.sh
New classes to fit signal shape (AliTPCCalibTCF)
[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/TPCcalibLinkDef.h           $EDIR
34 cp $SRC/Makefile.Calib              $EDIR/Makefile
35 cp $SRC/Makefile.arch.Calib         $EDIR/Makefile.arch
36 cp $SRC/libTPCcalib.pkg             $EDIR  
37
38
39 mkdir $EDIR/PROOF-INF
40 cd $EDIR/PROOF-INF
41
42
43 cp $SRC/BUILDcalib.sh BUILD.sh
44 cp $SRC/SETUPcalib.C  SETUP.C 
45
46
47 chmod 755 BUILD.sh
48
49 cd ../..
50
51 tar zcvf TPCcalibPar.par $EDIR
52
53
54 exit 0