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