X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=PWGPP%2FPWGPPREADME.txt;fp=PWGPP%2FPWGPPREADME.txt;h=0000000000000000000000000000000000000000;hb=c627660e3ea095ed462f5ce4ad36a184f40e0dd7;hp=3f0b742881a899af8ca0c190f4275b6c9998ed80;hpb=d85f6819269447083582dbf4349395fe419ff1f5;p=u%2Fmrichter%2FAliRoot.git diff --git a/PWGPP/PWGPPREADME.txt b/PWGPP/PWGPPREADME.txt deleted file mode 100644 index 3f0b742881a..00000000000 --- a/PWGPP/PWGPPREADME.txt +++ /dev/null @@ -1,53 +0,0 @@ - - -How to make a comparison using MC information: - - -0. Build the MC info tree -gSystem->Load("libANALYSIS"); -gSystem->Load("libPWGPP") -AliGenInfoMaker *t = new AliGenInfoMaker("galice.root","genTracks.root",0,0) -t->Exec(); - - -1. Build the reconstructed info tree - -gSystem->Load("libANALYSIS"); -gSystem->Load("libPWGPP"); -// -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"); - -gSystem->Load("libPWGPP"); - -//GSI example -.x ~/rootlogon.C - gSystem->AddIncludePath("-I$ALICE_ROOT/TPC/macros") - gROOT->LoadMacro("$ALICE_ROOT/TPC/macros/AliXRDPROOFtoolkit.cxx+") - - AliXRDPROOFtoolkit tool; - TChain * chain = tool.MakeChain("cmp.txt","ESDcmpTracks",0,1000) - chain->Lookup(); - .L $ALICE_ROOT/PWGPP/AliComparisonSelector.cxx+ - - -3. - -a.) Use AliTreeDraw for fast prototyping the queries - analysis type: - -gSystem->Load("libPWGPP"); -AliTreeDraw comp; -comp.SetTree(tree) - - -b.) Or use Selector - -chain->Process("$ALICE_ROOT/PWGPP/AliComparisonSelector.cxx+") - - -TFile f("Output.root");