]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG/FLOW/Base/AliFlowEventStar.h
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWG / FLOW / Base / AliFlowEventStar.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3 /* $Id$ */
4
5 /*****************************************************************
6   AliFlowEventStar: Event container for flow analysis of star data
7                                      
8   origin:   Mikolaj Krzewicki  (mikolaj.krzewicki@cern.ch)
9 *****************************************************************/
10
11 #ifndef ALIFLOWEVENTSTAR_H
12 #define ALIFLOWEVENTSTAR_H
13
14 #include "AliFlowEventSimple.h"
15
16 class AliStarEvent;
17 class AliStarTrackCuts;
18
19 class AliFlowEventStar: public AliFlowEventSimple {
20
21  public:
22   AliFlowEventStar();
23   AliFlowEventStar( const AliFlowEventStar& event );
24   AliFlowEventStar( const AliStarEvent* event,
25                     const AliStarTrackCuts* rpCuts=NULL,
26                     const AliStarTrackCuts* poiCuts=NULL);
27   AliFlowEventStar& operator=( const AliFlowEventStar& event );
28   virtual  ~AliFlowEventStar() {}
29
30   ClassDef(AliFlowEventStar,1)
31 };
32
33 #endif
34
35