ROOT logo
/**************************************************************************
* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
*                                                                        *
* Author: The ALICE Off-line Project.                                    *
* Contributors are mentioned in the code where appropriate.              *
*                                                                        *
* Permission to use, copy, modify and distribute this software and its   *
* documentation strictly for non-commercial purposes is hereby granted   *
* without fee, provided that the above copyright notice appears in all   *
* copies and that both the copyright notice and this permission notice   *
* appear in the supporting documentation. The authors make no claims     *
* about the suitability of this software for any purpose. It is          *
* provided "as is" without express or implied warranty.                  *
**************************************************************************/
//
// Stores aditional information about the V0 candidates
// author: M.Fasel@gsi.de
//
#ifndef ALIHFEV0INFO_H
#define ALIHFEV0INFO_H

#ifndef ROOT_TObject
#include <TObject.h>
#endif

class AliVParticle;

class AliHFEV0info : public TObject{
  public:
    AliHFEV0info();
    AliHFEV0info(AliVParticle *track, Int_t idPartnerTrack, Int_t v0id);
    ~AliHFEV0info() {};

    AliVParticle *GetTrack() const { return fTrack; }
    Int_t GetPartnerID() const { return fIDpartnerTrack; }
    Int_t GetV0ID() const { return fIDV0; }
  private:
    AliHFEV0info(const AliHFEV0info &);
    AliHFEV0info &operator=(const AliHFEV0info &);
    AliVParticle *fTrack;       // The track itself
    Int_t fIDpartnerTrack;      // The ID of the parter
    Int_t fIDV0;                // the V0 ID

    ClassDef(AliHFEV0info, 1)
};
#endif
 AliHFEV0info.h:1
 AliHFEV0info.h:2
 AliHFEV0info.h:3
 AliHFEV0info.h:4
 AliHFEV0info.h:5
 AliHFEV0info.h:6
 AliHFEV0info.h:7
 AliHFEV0info.h:8
 AliHFEV0info.h:9
 AliHFEV0info.h:10
 AliHFEV0info.h:11
 AliHFEV0info.h:12
 AliHFEV0info.h:13
 AliHFEV0info.h:14
 AliHFEV0info.h:15
 AliHFEV0info.h:16
 AliHFEV0info.h:17
 AliHFEV0info.h:18
 AliHFEV0info.h:19
 AliHFEV0info.h:20
 AliHFEV0info.h:21
 AliHFEV0info.h:22
 AliHFEV0info.h:23
 AliHFEV0info.h:24
 AliHFEV0info.h:25
 AliHFEV0info.h:26
 AliHFEV0info.h:27
 AliHFEV0info.h:28
 AliHFEV0info.h:29
 AliHFEV0info.h:30
 AliHFEV0info.h:31
 AliHFEV0info.h:32
 AliHFEV0info.h:33
 AliHFEV0info.h:34
 AliHFEV0info.h:35
 AliHFEV0info.h:36
 AliHFEV0info.h:37
 AliHFEV0info.h:38
 AliHFEV0info.h:39
 AliHFEV0info.h:40
 AliHFEV0info.h:41
 AliHFEV0info.h:42
 AliHFEV0info.h:43
 AliHFEV0info.h:44
 AliHFEV0info.h:45
 AliHFEV0info.h:46