00001
00002
00003
00004
00005
00006
00007
00008 #ifndef QQSTRUCTS_HH
00009 #define QQSTRUCTS_HH
00010
00011 #include "CLHEP/config/CLHEP.h"
00012 #include <string>
00013
00014 namespace HepPDT {
00015
00016
00017
00022 struct QQBAR {
00023 std::string name;
00024 int qqid;
00025 };
00026
00027
00032 struct MIXING {
00033 std::string name;
00034 std::string antiname;
00035 double mix;
00036 };
00037
00038
00039
00040
00041
00046 struct PARTICLE {
00047 std::string name;
00048 int qqid;
00049 int stableid;
00050 int pdgid;
00051 double mass;
00052 double charge;
00053 double spin;
00054 double lifetime;
00055 double width;
00056 double minMass;
00057 double maxMass;
00058 int parity;
00059 int cparity;
00060 bool hide;
00061 MIXING mixing;
00062 };
00063
00064 }
00065
00066 #endif // QQSTRUCTS_HH