StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StPhi.cc
1 /***************************************************************************
2  *
3  * $Id: StPhi.cc,v 1.2 2013/04/08 19:57:17 jwebb Exp $
4  *
5  * Author: Thomas Ullrich, Apr 2000 (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: StPhi.cc,v $
17  * Revision 1.2 2013/04/08 19:57:17 jwebb
18  * Updated mass and lifetime of the phi to more recent PDG values.
19  *
20  * Revision 1.1 2000/04/06 22:23:16 ullrich
21  * Initial Revision
22  *
23  **************************************************************************/
24 #include "StPhi.hh"
25 #include "PhysicalConstants.h"
26 
27 StPhi::StPhi(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  : StMeson(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 StPhi StPhi::mPhi(
60  "phi", 1019.446*MeV, 4.43*MeV, 0.,
61  2, -1, -1,
62  0, 0, -1,
63  "meson", 0, 0, 333,
64  false, 1.545e-13 *nanosecond
65  );
Definition: StPhi.hh:26