]>
Commit | Line | Data |
---|---|---|
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 | // | |
307e1ff7 | 19 | #ifndef ALIHFEV0INFO_H |
c2690925 | 20 | #define ALIHFEV0INFO_H |
21 | ||
c04c80e6 | 22 | #ifndef ROOT_TObject |
23 | #include <TObject.h> | |
24 | #endif | |
25 | ||
26 | class AliVParticle; | |
27 | ||
28 | class AliHFEV0info : public TObject{ | |
29 | public: | |
30 | AliHFEV0info(); | |
31 | AliHFEV0info(AliVParticle *track, Int_t idPartnerTrack, Int_t v0id); | |
32 | ~AliHFEV0info() {}; | |
33 | ||
34 | AliVParticle *GetTrack() const { return fTrack; } | |
35 | Int_t GetPartnerID() const { return fIDpartnerTrack; } | |
36 | Int_t GetV0ID() const { return fIDV0; } | |
37 | private: | |
38 | AliHFEV0info(const AliHFEV0info &); | |
39 | AliHFEV0info &operator=(const AliHFEV0info &); | |
40 | AliVParticle *fTrack; // The track itself | |
41 | Int_t fIDpartnerTrack; // The ID of the parter | |
42 | Int_t fIDV0; // the V0 ID | |
43 | ||
44 | ClassDef(AliHFEV0info, 1) | |
45 | }; | |
46 | #endif |