]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG/FLOW/Tasks/AliFlowCandidateTrack.cxx
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWG / FLOW / Tasks / AliFlowCandidateTrack.cxx
CommitLineData
6e214c87 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////////////////////////////////////////////////////
17// AliFlowCandidateTrack:
18// Class for reconstructed particles to be used in flow analysis
19// Author: Carlos Perez (cperez@cern.ch)
20////////////////////////////////////////////////////
21
22#include "AliFlowCandidateTrack.h"
23
24ClassImp(AliFlowCandidateTrack)
25
26AliFlowCandidateTrack::AliFlowCandidateTrack():
27 AliFlowTrack(),
6e214c87 28 fNDaughters(0)
29{
9812922b 30 // ctor
41dc4195 31 for(int i=0; i!=5; ++i) {
6e214c87 32 fDaughter[i] = -1;
41dc4195 33 fTrack[i] = NULL;
34 }
6e214c87 35}
36
15725198 37void AliFlowCandidateTrack::ClearMe(void) {
8fa6a5fa 38 AliFlowTrack::Clear();
15725198 39 fNDaughters = 0;
40 for(int i=0; i!=5; ++i) {
41 fDaughter[i] = -1;
42 fTrack[i] = NULL;
43 }
44 return;
45}
46
41dc4195 47AliFlowCandidateTrack::AliFlowCandidateTrack(const AliFlowCandidateTrack& aTrack):
48 AliFlowTrack(aTrack),
41dc4195 49 fNDaughters(aTrack.fNDaughters)
50{
9812922b 51 // ctor
41dc4195 52 for(int i=0; i!=5; ++i) {
53 fDaughter[i] = aTrack.fDaughter[i];
54 fTrack[i] = aTrack.fTrack[i];
55 }
56}
57
58AliFlowCandidateTrack& AliFlowCandidateTrack::operator=(const AliFlowCandidateTrack& aTrack)
59{
0006c329 60 // assignment
61 if (this == &aTrack) return *this; //handles self assignment
62
41dc4195 63 AliFlowTrack::operator=(aTrack);
41dc4195 64 fNDaughters = aTrack.fNDaughters;
65 for(int i=0; i!=5; ++i) {
66 fDaughter[i] = aTrack.fDaughter[i];
67 fTrack[i] = aTrack.fTrack[i];
68 }
69 return *this;
70}
6e214c87 71
72AliFlowCandidateTrack::~AliFlowCandidateTrack()
73{
9812922b 74 // dtor
6e214c87 75}
76