]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG/FLOW/Base/AliFlowEventStar.h
- HF can take now all kind of histograms
[u/mrichter/AliRoot.git] / PWG / FLOW / Base / AliFlowEventStar.h
CommitLineData
f553869e 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
16class AliStarEvent;
b4dba88d 17class AliStarTrackCuts;
f553869e 18
19class AliFlowEventStar: public AliFlowEventSimple {
20
21 public:
22 AliFlowEventStar();
23 AliFlowEventStar( const AliFlowEventStar& event );
b4dba88d 24 AliFlowEventStar( const AliStarEvent* event,
25 const AliStarTrackCuts* rpCuts=NULL,
26 const AliStarTrackCuts* poiCuts=NULL);
27 AliFlowEventStar& operator=( const AliFlowEventStar& event );
f553869e 28 virtual ~AliFlowEventStar() {}
29
30 ClassDef(AliFlowEventStar,1)
31};
32
33#endif
34
35