]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/TPCtracking.C
Applyed fixes to bugs found by Rene Brun. With many thanks. Some additonal
[u/mrichter/AliRoot.git] / ITS / TPCtracking.C
CommitLineData
101597aa 1void TPCtracking( Int_t N =-1 )
2{
3 // Dynamically link some shared libs
4/* gROOT->LoadMacro("loadlibs.C");
5 loadlibs();
6
7// Connect the Root Galice file containing Geometry, Kine and Hits
8 TFile *in=TFile::Open("galice.root");
9 if (!in->IsOpen()) {cerr<<"Can't open galice.root !\n"; return;}
10
11 if (!(gAlice=(AliRun*)in->Get("gAlice"))) {
12 cerr<<"gAlice have not been found on galice.root !\n";
13 return;
14 }
15
16 if (N < 0 ) N = (Int_t)gAlice->TreeE()->GetEntries();
17 cout<<endl<<N<<" EVENTS FOUND"<<endl;
18 */
19
708751f2 20 cout<<"Running AliBarrelReconstruction4ITS.C ...\n";
21 gROOT->LoadMacro("$ALICE_ROOT/ITS/AliBarrelReconstruction4ITS.C");
22 AliBarrelReconstruction4ITS(N);
101597aa 23
708751f2 24 cout<<"Running AliTPCComparison4ITS.C ...\n";
25 gROOT->LoadMacro("$ALICE_ROOT/ITS/AliTPCComparison4ITS.C");
26 AliTPCComparison4ITS(N);
101597aa 27
28
29 }