]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGHF/hfe/AliHFEV0info.cxx
Place the config and root file at the right place
[u/mrichter/AliRoot.git] / PWGHF / hfe / AliHFEV0info.cxx
CommitLineData
c04c80e6 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// Stores aditional information about the V0 candidates
17// author: M.Fasel@gsi.de
18//
19//
20#include "AliHFEV0info.h"
21
22ClassImp(AliHFEV0info)
23
24AliHFEV0info::AliHFEV0info():
25 TObject(),
26 fTrack(NULL),
27 fIDpartnerTrack(-1),
28 fIDV0(-1)
29{
30 //
31 // Dummy constructor
32 //
33}
34
35AliHFEV0info::AliHFEV0info(AliVParticle *track, Int_t idPartnerTrack, Int_t v0id):
36 TObject(),
37 fTrack(track),
38 fIDpartnerTrack(idPartnerTrack),
39 fIDV0(v0id)
40{
41 //
42 // Default constructor
43 //
44}