PandaRoot
PndDiscPID.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 //-------------------------------------------------------------------------
14 // Author: Mustafa Schmidt (Mustafa.A.Schmidt@physik.uni-giessen.de)
15 // Changes:
16 // Date: 30.11.2015
17 // Description: Particle Identification
18 //-------------------------------------------------------------------------
19 
20 #ifndef PNDDISCPID_H
21 #define PNDDISCPID_H
22 
23 #include "TObject.h"
24 
25 class PndDiscPID : public TObject {
26  public:
27  PndDiscPID();
28  ~PndDiscPID();
29 
30  double loglikepion;
31  double loglikekaon;
32  double loglikeproton;
33 
34  double pion;
35  double kaon;
36  double proton;
37 
38  ClassDef(PndDiscPID, 2)
39 };
40 
41 #endif // PNDDISCPID_H
double loglikepion
Definition: PndDiscPID.h:30
double pion
Definition: PndDiscPID.h:34
double proton
Definition: PndDiscPID.h:36
double loglikekaon
Definition: PndDiscPID.h:31
double loglikeproton
Definition: PndDiscPID.h:32
double kaon
Definition: PndDiscPID.h:35