]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALParton.cxx
Bug fix
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALParton.cxx
CommitLineData
73e3f083 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
803d1ab0 16/* $Id$ */
73e3f083 17
18//*-- Author: Renan Cabrera (Creighton U.)
19
20#include "AliEMCALParton.h"
21#include "Ecommon.h"
5d3836c4 22#include <Riostream.h>
73e3f083 23ClassImp(AliEMCALParton)
24
25//____________________________________________________________________________
26AliEMCALParton::AliEMCALParton()
27{
28 // Default constructor
561356e3 29// fTrackEnergy = 0;
30// fTrackEta = 0;
31// fTrackPhi = 0;
32// fTrackPDG = 0;
d8ac6858 33 fNTracks = 0;
cecfb436 34 fPartonCode = 0;
73e3f083 35}
36
37AliEMCALParton::AliEMCALParton(Float_t energy, Float_t phi, Float_t eta)
38{
39 // Constructor
40 fEnergy = energy;
41 fPhi = phi;
42 fEta = eta;
561356e3 43// fTrackEnergy = 0;
44// fTrackEta = 0;
45// fTrackPhi = 0;
46// fTrackPDG = 0;
d8ac6858 47 fNTracks = 0;
cecfb436 48 fPartonCode = 0;
d8ac6858 49}
50
51void AliEMCALParton::SetTrackList(Int_t NTracks, Float_t* Energy, Float_t* Eta, Float_t* Phi, Int_t* PDG)
52{
e7592837 53// Set the stored tracklist
d8ac6858 54 fNTracks = NTracks;
d8ac6858 55 for (Int_t i=0;i<NTracks;i++)
56 {
57 fTrackEnergy[i] = Energy[i] ;
58 fTrackEta[i] = Eta[i];
59 fTrackPhi[i] = Phi[i];
60 fTrackPDG[i] = PDG[i];
561356e3 61 }
d8ac6858 62}
63
1b080388 64void AliEMCALParton::GetTrackList(Float_t* Energy, Float_t* Eta, Float_t* Phi, Int_t* PDG) const
d8ac6858 65{
e7592837 66// retrieves the stored tracklist
d8ac6858 67 for (Int_t i=0;i<fNTracks;i++)
68 {
69 Energy[i] = fTrackEnergy[i] ;
70 Eta[i] = fTrackEta[i];
71 Phi[i] = fTrackPhi[i];
72 PDG[i] = fTrackPDG[i];
73 }
73e3f083 74}
75
d8ac6858 76
73e3f083 77//____________________________________________________________________________
78
79AliEMCALParton::~AliEMCALParton()
80{
81 // Destructor
d8ac6858 82
73e3f083 83}