]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/FLOW/AliFlowVector.cxx
added copy ctor and assignment op
[u/mrichter/AliRoot.git] / PWG2 / FLOW / AliFlowVector.cxx
1 /*************************************************************************
2 * Copyright(c) 1998-2008, ALICE Experiment at CERN, All rights reserved. *
3 *                                                                        *
4 * Author: The ALICE Off-line Project.                                    *
5 * Contributors are mentioned in the code where appropriate.              *
6 *                                                                        *
7 * Permission to use, copy, modify and distribute this software and its   *
8 * documentation strictly for non-commercial purposes is hereby granted   *
9 * without fee, provided that the above copyright notice appears in all   *
10 * copies and that both the copyright notice and this permission notice   *
11 * appear in the supporting documentation. The authors make no claims     *
12 * about the suitability of this software for any purpose. It is          *
13 * provided "as is" without express or implied warranty.                  * 
14 **************************************************************************/
15
16 #define AliFlowVector_cxx
17
18 #include "AliFlowVector.h"
19
20 //
21 // AliFlowVector:
22 // Class to hold the flowvector and corresponding multiplicity for flow analysis.
23 // Author: A. Bilandzic (anteb@nikhef.nl)
24 //
25
26 ClassImp(AliFlowVector)
27
28 //________________________________________________________________________
29
30 AliFlowVector::AliFlowVector():fMult(0){}
31
32 AliFlowVector::AliFlowVector(const AliFlowVector& aVector):TVector2(aVector),
33 fMult(aVector.fMult){}
34 AliFlowVector::AliFlowVector(const TVector2 &v, Double_t m):TVector2(v),fMult(m){}
35 AliFlowVector::~AliFlowVector(){}
36 AliFlowVector& AliFlowVector::operator=(const AliFlowVector&)
37 {
38   return *this;
39 }