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