StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StHDibaryon.cc
1 /***************************************************************************
2  *
3  * $Id: StHDibaryon.cc,v 1.2 2013/02/04 20:41:54 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: StHDibaryon.cc,v $
17  * Revision 1.2 2013/02/04 20:41:54 jwebb
18  * Typo fix, and mass increase.
19  *
20  * Revision 1.1 2013/01/31 18:21:46 jwebb
21  * Updated StarClassLibrary and gstar_part.g to add the H Dibaryon.
22  *
23  * Revision 1.1 1999/05/14 18:47:57 ullrich
24  * Initial Revision
25  *
26  **************************************************************************/
27 #include "StHDibaryon.hh"
28 #include "PhysicalConstants.h"
29 
30 StHDibaryon::StHDibaryon(const string & aName,
31  double mass,
32  double width,
33  double charge,
34  int iSpin,
35  int iParity,
36  int iConjugation,
37  int iIsospin,
38  int iIsospinZ,
39  int gParity,
40  const string & pType,
41  int lepton,
42  int baryon,
43  int encoding,
44  bool stable,
45  double lifetime)
46  : StBaryon(aName, mass, width, charge, iSpin, iParity,
47  iConjugation, iIsospin, iIsospinZ, gParity,
48  pType, lepton, baryon, encoding, stable,
49  lifetime) {/* noop */}
50 
51 // ......................................................................
52 // ... static member definitions ...
53 // ......................................................................
54 //
55 // Arguments for constructor are as follows
56 // name mass width charge
57 // 2*spin parity C-conjugation
58 // 2*Isospin 2*Isospin3 G-parity
59 // type lepton number baryon number PDG encoding
60 // stable lifetime
61 //
62 StHDibaryon StHDibaryon::mHDibaryon(
63  "hdibaryon", 2.232*GeV, 0.0*MeV, 0.0,
64  2, +1, 0,
65  0, 0, 0,
66  "dibaryon", 0, +2, 0,
67  false, 0.2632*nanosecond/2
68 );