]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGHF/correlationHF/AliReducedParticle.cxx
Create PROOF-INF.PWGHFcorrelationHF for correlationHF library
[u/mrichter/AliRoot.git] / PWGHF / correlationHF / AliReducedParticle.cxx
CommitLineData
815e6bab 1/**************************************************************************
2 * Copyright(c) 1998-2009, 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// Base class for DStar - Hadron Correlations Analysis
18//
19//-----------------------------------------------------------------------
20//
21//
22// Author S.Bjelogrlic
23// Utrecht University
24// sandro.bjelogrlic@cern.ch
25//
26//-----------------------------------------------------------------------
27
28/* $Id$ */
29
30#include "AliVParticle.h"
31#include "AliReducedParticle.h"
32
bce70c96 33AliReducedParticle::AliReducedParticle(Double_t eta, Double_t phi, Double_t pt, Int_t mcLabel, Int_t trackid, Double_t impPar, Bool_t checkSoftPi) :
815e6bab 34fEta(eta),
35fPhi(phi),
36fpT(pt),
bce70c96 37fMcLabel(mcLabel),
38fid(trackid),
39fImpPar(impPar),
40fCheckSoftPi(checkSoftPi)
41{
42 //
43 // default constructor
44 //
45}
46
47AliReducedParticle::AliReducedParticle(Double_t eta, Double_t phi, Double_t pt, Int_t McLabel) :
48fEta(eta),
49fPhi(phi),
50fpT(pt),
51fMcLabel(McLabel),
52fid(0),
53fImpPar(0.),
54fCheckSoftPi(kFALSE)
815e6bab 55{
56 //
57 // default constructor
58 //
59}
60
61AliReducedParticle::~AliReducedParticle() {
62
63 //
64 // destructor
65 //
66
bce70c96 67 //Info("AliReducedParticle","Calling Destructor");
815e6bab 68}