00001 /*************************************************************************** 00002 * 00003 * $Id: StAntiLambda1520.hh,v 1.1 2010/03/22 21:22:40 jwebb Exp $ 00004 * 00005 * Author: Thomas Ullrich, May 99 (based on Geant4 code, see below) 00006 *************************************************************************** 00007 * 00008 * The design of the StParticleDefinition class and all concrete 00009 * classes derived from it is largely based on the design of the 00010 * G4ParticleDefinition class from Geant4 (RD44). 00011 * Although the code is in large parts different (modified or rewritten) 00012 * and adapted to the STAR framework the basic idea stays the same. 00013 * 00014 *************************************************************************** 00015 * 00016 * $Log: StAntiLambda1520.hh,v $ 00017 * Revision 1.1 2010/03/22 21:22:40 jwebb 00018 * Added the Lambda 1520 and antiparticle. 00019 * 00020 * Revision 1.1 1999/05/14 18:49:43 ullrich 00021 * Initial Revision 00022 * 00023 **************************************************************************/ 00024 #ifndef StAntiLambda1520_hh 00025 #define StAntiLambda1520_hh 00026 00027 #include "StBaryon.hh" 00028 00029 class StAntiLambda1520 : public StBaryon { 00030 public: 00031 static StAntiLambda1520* instance() {return &mAntiLambda1520;} 00032 static StAntiLambda1520* antiLambda1520() {return &mAntiLambda1520;} 00033 00034 private: 00035 static StAntiLambda1520 mAntiLambda1520; 00036 00037 StAntiLambda1520(const string & aName, 00038 double mass, 00039 double width, 00040 double charge, 00041 int iSpin, 00042 int iParity, 00043 int iConjugation, 00044 int iIsospin, 00045 int iIsospinZ, 00046 int gParity, 00047 const string & pType, 00048 int lepton, 00049 int baryon, 00050 int encoding, 00051 bool stable, 00052 double lifetime); 00053 }; 00054 00055 #endif
1.5.9