Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-07-09 05:00:33

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