]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWG1/PWG1README.txt
Changing ASin -> ATan (Karel)
[u/mrichter/AliRoot.git] / PWG1 / PWG1README.txt
index 4ca6f1a45fc6bc8c9f283fa964ce71ef4302670b..ae27287e4a0c5bfa1b399f6a56ad5a5eeeeb1bc1 100644 (file)
@@ -4,7 +4,7 @@ How to make a comparison using MC information:
 
 
 0. Build the MC info tree
-
+gSystem->Load("libANALYSIS.so");
 gSystem->Load("libPWG1.so")
 AliGenInfoMaker *t = new AliGenInfoMaker("galice.root","genTracks.root",0,0)
 t->Exec();
@@ -12,22 +12,26 @@ t->Exec();
 
 1. Build the reconstructed info tree
 
-
+gSystem->Load("libANALYSIS.so");
 gSystem->Load("libPWG1.so");
 //
 AliRecInfoMaker *t2 = new AliRecInfoMaker("genTracks.root","cmpESDTracks.root","galice.root",0,0);
 t2->Exec();
 
 
+
 2. Make a chain of the information tree
+gSystem->Load("libANALYSIS.so");
 
 gSystem->Load("libPWG1.so");
 
 //GSI example
 .x ~/rootlogon.C
-.L /u/miranov/macroxrdproof64/AliXRDPROOFtoolkit.cxx+
+ gSystem->AddIncludePath("-I$ALICE_ROOT/TPC/macros")
+  gROOT->LoadMacro("$ALICE_ROOT/TPC/macros/AliXRDPROOFtoolkit.cxx+")
+
  AliXRDPROOFtoolkit tool;
- TChain * chain = tool.MakeChain("comp.txt","ESDcmpTracks",0,1000)
+ TChain * chain = tool.MakeChain("cmp.txt","ESDcmpTracks",0,1000)
  chain->Lookup();
  .L $ALICE_ROOT/PWG1/AliComparisonSelector.cxx+