]> git.uio.no Git - u/mrichter/AliRoot.git/commit - PWGCF/FLOW/Documentation/examples/manual/ttree/objects/AliAnalysisTaskTTreeFilter.h
add example macros and class templates for running flow package analysis on a ttree...
authorrbertens <rbertens@cern.ch>
Tue, 1 Jul 2014 09:41:26 +0000 (11:41 +0200)
committerrbertens <rbertens@cern.ch>
Tue, 1 Jul 2014 09:41:53 +0000 (11:41 +0200)
commit0cb187ff53c379aac3ae0ffea681efe67db8b200
tree5f17331d3290d6631f5461c4e18e68782a207e2d
parenta9a9dad76f557f2c25bc5c703890d753ae1bc403
add example macros and class templates for running flow package analysis on a ttree in ROOT

commit consists of three things:
a) two macros (in macros folder)
- run: runs (in aliroot) and fills a ttree with kinematic info from alivevent
- read: reads (in just root) the ttree info and performs a flow analysis with the flow package

b) two analysis classes
- AliAnalysisTaskTTreeFilter -> analysis task for AliROOT which converts input events to ttree
- AliFlowEventSimpleFromTTree -> task for ROOT, fills flow events with ttree input

c) two helper classes which should serve as a starting point
- AliFlowTTreeEvent : simple event class
- AliFlowTTreeTrack: simple track class

as these are helper classes designed to get the user started, they are not compiled by default. the run and read macro will compile on-the-fly
PWGCF/FLOW/Documentation/examples/manual/ttree/macros/readTTree.C [new file with mode: 0644]
PWGCF/FLOW/Documentation/examples/manual/ttree/macros/runTTreeFilter.C [new file with mode: 0644]
PWGCF/FLOW/Documentation/examples/manual/ttree/objects/AliAnalysisTaskTTreeFilter.cxx [new file with mode: 0644]
PWGCF/FLOW/Documentation/examples/manual/ttree/objects/AliAnalysisTaskTTreeFilter.h [new file with mode: 0644]
PWGCF/FLOW/Documentation/examples/manual/ttree/objects/AliFlowEventSimpleFromTTree.cxx [new file with mode: 0644]
PWGCF/FLOW/Documentation/examples/manual/ttree/objects/AliFlowEventSimpleFromTTree.h [new file with mode: 0644]
PWGCF/FLOW/Documentation/examples/manual/ttree/objects/AliFlowTTreeEvent.cxx [new file with mode: 0644]
PWGCF/FLOW/Documentation/examples/manual/ttree/objects/AliFlowTTreeEvent.h [new file with mode: 0644]
PWGCF/FLOW/Documentation/examples/manual/ttree/objects/AliFlowTTreeTrack.cxx [new file with mode: 0644]
PWGCF/FLOW/Documentation/examples/manual/ttree/objects/AliFlowTTreeTrack.h [new file with mode: 0644]