]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/FLOW/AliFlowVector.h
new methods and possiility to run all methods in same run
[u/mrichter/AliRoot.git] / PWG2 / FLOW / AliFlowVector.h
CommitLineData
f1d945a1 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2* See cxx source for full Copyright notice */
3/* $Id$ */
4
5#ifndef AliFlowVector_H
6#define AliFlowVector_H
7
8#include "TVector2.h"
9
19f888a6 10//********************************************************************
11// AliFlowVector: *
12// Class to hold the flow vector and multiplicity for flow analysis. *
13// Author: A. Bilandzic (anteb@nikhef.nl) *
14//********************************************************************
f1d945a1 15
16class AliFlowVector: public TVector2 {
17 public:
18 AliFlowVector();
868536da 19 AliFlowVector(const AliFlowVector& aVector);
f1d945a1 20 AliFlowVector(const TVector2 &p, Double_t m);
21 virtual ~AliFlowVector();
868536da 22
19f888a6 23 AliFlowVector& operator=(const AliFlowVector& aVector);
868536da 24
f1d945a1 25 void SetMult(Double_t mult) {this->fMult = mult;} ;
26 Double_t GetMult() const {return this -> fMult;} ;
27
28 private:
29 Double_t fMult; //multiplicity
30
31 ClassDef(AliFlowVector, 0)
32};
33#endif
34
19f888a6 35