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