StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StIon.hh
1 /***************************************************************************
2  *
3  * $Id: StIon.hh,v 1.1 1999/05/14 18:49:31 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: StIon.hh,v $
17  * Revision 1.1 1999/05/14 18:49:31 ullrich
18  * Initial Revision
19  *
20  **************************************************************************/
21 #ifndef StIon_hh
22 #define StIon_hh
23 
24 #include "StParticleDefinition.hh"
25 
26 class StIon : public StParticleDefinition {
27 public:
28  StIon(const string & aName,
29  double mass,
30  double width,
31  double charge,
32  int iSpin,
33  int iParity,
34  int iConjugation,
35  int iIsospin,
36  int iIsospinZ,
37  int gParity,
38  const string & pType,
39  int lepton,
40  int baryon,
41  int encoding,
42  bool stable,
43  double lifetime)
44  : StParticleDefinition(aName, mass, width, charge, iSpin, iParity,
45  iConjugation, iIsospin, iIsospinZ, gParity,
46  pType, lepton, baryon, encoding, stable,
47  lifetime) {/* noop */};
48  virtual ~StIon() {/* noop */};
49 
50 private:
51  const StIon & operator=(const StIon& m) {return m;}
52 };
53 
54 #endif
Definition: StIon.hh:26