00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef StSigmacPlusPlus_hh
00022 #define StSigmacPlusPlus_hh
00023
00024 #include "StBaryon.hh"
00025
00026 class StSigmacPlusPlus : public StBaryon {
00027 public:
00028 static StSigmacPlusPlus* instance() {return &mSigmacPlusPlus;}
00029 static StSigmacPlusPlus* sigmacPlusPlus() {return &mSigmacPlusPlus;}
00030
00031 private:
00032 static StSigmacPlusPlus mSigmacPlusPlus;
00033
00034 StSigmacPlusPlus(const string & aName,
00035 double mass,
00036 double width,
00037 double charge,
00038 int iSpin,
00039 int iParity,
00040 int iConjugation,
00041 int iIsospin,
00042 int iIsospinZ,
00043 int gParity,
00044 const string & pType,
00045 int lepton,
00046 int baryon,
00047 int encoding,
00048 bool stable,
00049 double lifetime);
00050 };
00051
00052 #endif