StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StPionPlus.hh
1 /***************************************************************************
2  *
3  * $Id: StPionPlus.hh,v 1.1 1999/05/14 18:50:03 ullrich 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: StPionPlus.hh,v $
17  * Revision 1.1 1999/05/14 18:50:03 ullrich
18  * Initial Revision
19  *
20  **************************************************************************/
21 #ifndef StPionPlus_hh
22 #define StPionPlus_hh
23 
24 #include "StMeson.hh"
25 
26 class StPionPlus : public StMeson {
27 public:
28  static StPionPlus* instance() {return &mPionPlus;}
29  static StPionPlus* pionPlus() {return &mPionPlus;}
30 
31 private:
32  static StPionPlus mPionPlus;
33 
34  StPionPlus(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