StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StKaonZeroMode0809.hh
1 /***************************************************************************
2  *
3  * $Id: StKaonZeroMode0809.hh,v 1.1 2010/05/07 15:37:11 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: StKaonZeroMode0809.hh,v $
17  * Revision 1.1 2010/05/07 15:37:11 jwebb
18  * Added StKaonZeroMode0809 to represent the k0 --> pi+ pi- w/ 100% br in
19  * gstar_part.g.
20  *
21  * Revision 1.1 1999/05/14 18:49:36 ullrich
22  * Initial Revision
23  *
24  **************************************************************************/
25 #ifndef StKaonZeroMode0809_hh
26 #define StKaonZeroMode0809_hh
27 
28 #include "StMeson.hh"
29 
30 class StKaonZeroMode0809 : public StMeson {
31 public:
32  static StKaonZeroMode0809* instance() {return &mKaonZero;}
33  static StKaonZeroMode0809* kaonZero() {return &mKaonZero;}
34 
35 private:
36  static StKaonZeroMode0809 mKaonZero;
37 
38  StKaonZeroMode0809(const string & aName,
39  double mass,
40  double width,
41  double charge,
42  int iSpin,
43  int iParity,
44  int iConjugation,
45  int iIsospin,
46  int iIsospinZ,
47  int gParity,
48  const string & pType,
49  int lepton,
50  int baryon,
51  int encoding,
52  bool stable,
53  double lifetime);
54 };
55 
56 #endif