]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/FLOW/AliFlowCommon/AliFlowEventStar.cxx
added reder for test on other data
[u/mrichter/AliRoot.git] / PWG2 / FLOW / AliFlowCommon / AliFlowEventStar.cxx
CommitLineData
f553869e 1/**************************************************************************
2 * Copyright(c) 1998-1999, 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 AliFlowEventStar: Event container for flow analysis
18
19 origin: Mikolaj Krzewicki (mikolaj.krzewicki@cern.ch)
20*****************************************************************/
21
22#include "Riostream.h"
23#include "AliFlowEventSimple.h"
24#include "AliFlowTrackSimple.h"
25#include "AliStarTrack.h"
26#include "AliStarEvent.h"
27#include "AliFlowEventStar.h"
28
29ClassImp(AliFlowEventStar)
30
31//-----------------------------------------------------------------------
32
33AliFlowEventStar::AliFlowEventStar():
34 AliFlowEventSimple()
35{
36 //ctor
37 cout << "AliFlowEventStar: Default constructor to be used only by root for io" << endl;
38}
39
40//-----------------------------------------------------------------------
41AliFlowEventStar::AliFlowEventStar(const AliFlowEventStar& event):
42 AliFlowEventSimple(event)
43{
44 //cpy ctor
45}
46
47//-----------------------------------------------------------------------
48AliFlowEventStar& AliFlowEventStar::operator=(const AliFlowEventStar& event)
49{
50 //assignment operator
51 AliFlowEventSimple::operator=(event);
52 return *this;
53}
54
55AliFlowEventStar::AliFlowEventStar( const AliStarEvent* starevent ):
56 AliFlowEventSimple(starevent->GetNumberOfTracks())
57{
58 //construct from a star event
59 SetReferenceMultiplicity(starevent->GetRefMult());
60 for (Int_t i=0; i<starevent->GetNumberOfTracks(); i++)
61 {
62 const AliStarTrack* startrack = starevent->GetTrack(i);
63 if (!startrack) continue;
64 AliFlowTrackSimple* flowtrack = new AliFlowTrackSimple();
65 flowtrack->SetPhi(startrack->GetPhi());
66 flowtrack->SetEta(startrack->GetEta());
67 flowtrack->SetPt(startrack->GetPt());
68 flowtrack->SetCharge(startrack->GetCharge());
69 AddTrack(flowtrack);
70 }
71}