00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef StIon_hh
00022 #define StIon_hh
00023
00024 #include "StParticleDefinition.hh"
00025
00026 class StIon : public StParticleDefinition {
00027 public:
00028 StIon(const string & aName,
00029 double mass,
00030 double width,
00031 double charge,
00032 int iSpin,
00033 int iParity,
00034 int iConjugation,
00035 int iIsospin,
00036 int iIsospinZ,
00037 int gParity,
00038 const string & pType,
00039 int lepton,
00040 int baryon,
00041 int encoding,
00042 bool stable,
00043 double lifetime)
00044 : StParticleDefinition(aName, mass, width, charge, iSpin, iParity,
00045 iConjugation, iIsospin, iIsospinZ, gParity,
00046 pType, lepton, baryon, encoding, stable,
00047 lifetime) {};
00048 virtual ~StIon() {};
00049
00050 private:
00051 const StIon & operator=(const StIon& m) {return m;}
00052 };
00053
00054 #endif