BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Reconstruction/MdcPatRec/MdcRecoUtil/include/MdcRecoUtil/PdtPid.h
Go to the documentation of this file.
1#ifndef MdcRecoUtilPID_H
2#define MdcRecoUtilPID_H
3#include "MdcRecoUtil/PdtLund.h"
4
5class PdtPid {
6public:
7 enum { nPidType = 5 };
8
9 enum PidType { null = -1, electron = 0, muon = 1, pion = 2, kaon = 3, proton = 4 };
10 enum { nPidNeutralType = 5 };
11
13 none = -1,
14 gamma = 0,
15 pi0 = 1,
16 K0L = 2,
17 neutron = 3,
18 anti_neutron = 4
19 };
20
21protected:
22 friend class Pdt;
23};
24
25#endif