Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-06-04 04:35:19

0001 #ifndef CMSAntiSQ_h
0002 #define CMSAntiSQ_h 1
0003 
0004 #include "globals.hh"
0005 #include "G4ios.hh"
0006 #include "G4ParticleDefinition.hh"
0007 
0008 // ######################################################################
0009 // ###                      ANTI-SEXAQUARK                            ###
0010 // ######################################################################
0011 
0012 class CMSAntiSQ : public G4ParticleDefinition {
0013 private:
0014   static CMSAntiSQ* theInstance;
0015   CMSAntiSQ() {}
0016   ~CMSAntiSQ() {}
0017 
0018 public:
0019   static CMSAntiSQ* Definition(double mass);
0020   static CMSAntiSQ* AntiSQ(double mass);
0021 };
0022 
0023 #endif