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