]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGCF/FLOW/Documentation/examples/manual/ttree/objects/AliFlowEventSimpleFromTTree.h
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGCF / FLOW / Documentation / examples / manual / ttree / objects / AliFlowEventSimpleFromTTree.h
CommitLineData
0cb187ff 1// AliFlowEventSimpleFromTTree: Event container for flow analysis of star data
2// origin: Redmer Alexander Bertens, rbertens@cern.ch
3
4#ifndef ALIFLOWEVENTSIMPLEFROMTTREE_H
5#define ALIFLOWEVENTSIMPLEFROMTTREE_H_H
6
7// aliroot includes
8#include "AliFlowEventSimple.h"
9
10//forward declarations
11class AliFlowTTreeEvent;
12class TClonesArray;
13class AliFlowTrackSimpleCuts;
14
15class AliFlowEventSimpleFromTTree : public AliFlowEventSimple {
16
17 public:
18 AliFlowEventSimpleFromTTree();
19 AliFlowEventSimpleFromTTree(const AliFlowEventSimpleFromTTree& event );
20 AliFlowEventSimpleFromTTree(
21 const AliFlowTTreeEvent* event,
22 const TClonesArray* array,
23 const AliFlowTrackSimpleCuts* rpCuts=NULL,
24 const AliFlowTrackSimpleCuts* poiCuts=NULL);
25
26 Bool_t PassesCuts(const AliFlowTTreeEvent* event);
27
28 AliFlowEventSimpleFromTTree& operator=( const AliFlowEventSimpleFromTTree& event );
29 virtual ~AliFlowEventSimpleFromTTree() {}
30
31 ClassDef(AliFlowEventSimpleFromTTree,1)
32};
33
34#endif