StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StH0Strangelet.hh
1 /***************************************************************************
2  *
3  * $Id: StH0Strangelet.hh,v 1.1 2015/06/23 14:53:36 jwebb Exp $
4  *
5  * Author: Thomas Ullrich, May 99 (based on Geant4 code, see below)
6  ***************************************************************************
7  *
8  * The design of the StParticleDefinition class and all concrete
9  * classes derived from it is largely based on the design of the
10  * G4ParticleDefinition class from Geant4 (RD44).
11  * Although the code is in large parts different (modified or rewritten)
12  * and adapted to the STAR framework the basic idea stays the same.
13  *
14  ***************************************************************************
15  *
16  *$Log: StH0Strangelet.hh,v $
17  *Revision 1.1 2015/06/23 14:53:36 jwebb
18  *StarClassLibrary support for H0 dibaryon.
19  *
20  *
21  **************************************************************************/
22 #ifndef StH0Strangelet_hh
23 #define StH0Strangelet_hh
24 
25 #include "StBaryon.hh"
26 
27 class StH0Strangelet : public StBaryon {
28 public:
29  static StH0Strangelet* instance() {return &mH0Strangelet;}
30 
31 private:
32  static StH0Strangelet mH0Strangelet;
33 
34  StH0Strangelet(const string & aName,
35  double mass,
36  double width,
37  double charge,
38  int iSpin,
39  int iParity,
40  int iConjugation,
41  int iIsospin,
42  int iIsospinZ,
43  int gParity,
44  const string & pType,
45  int lepton,
46  int baryon,
47  int encoding,
48  bool stable,
49  double lifetime);
50 };
51 
52 #endif