Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:58:15

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 // --------------------------------------------------------------
0027 //  GEANT 4 class implementation file
0028 //
0029 //      History: first implementation, based on object model of
0030 //      10 oct 1998  H.Kurashige
0031 // ---------------------------------------------------------------
0032 #ifndef G4ExcitedBaryonConstructor_h
0033 #define G4ExcitedBaryonConstructor_h 1
0034 
0035 #include "globals.hh"
0036 class G4DecayTable;
0037 
0038 class G4ExcitedBaryonConstructor
0039 {
0040     // This class is a utility class for construction
0041     // short lived particles
0042 
0043   public:
0044     G4ExcitedBaryonConstructor(G4int nStates = 0, G4int isoSpin = 0);
0045     virtual ~G4ExcitedBaryonConstructor() = default;
0046 
0047     virtual void Construct(G4int indexOfState = -1);
0048 
0049   protected:
0050     virtual void ConstructParticle(G4int indexOfState);
0051     virtual void ConstructAntiParticle(G4int indexOfState);
0052 
0053     virtual G4double GetCharge(G4int iIsoSpin3);
0054     virtual G4int GetEncoding(G4int iIsoSpin3, G4int idxState);
0055 
0056     // following methods are pure virtual
0057     // thes methods should be implemented in derived classes
0058     virtual G4bool Exist(G4int) = 0;
0059     virtual G4int GetQuarkContents(G4int, G4int) = 0;
0060     virtual G4String GetName(G4int, G4int) = 0;
0061     virtual G4String GetMultipletName(G4int) = 0;
0062     virtual G4double GetMass(G4int state, G4int iso) = 0;
0063     virtual G4double GetWidth(G4int state, G4int iso) = 0;
0064     virtual G4int GetiSpin(G4int) = 0;
0065     virtual G4int GetiParity(G4int) = 0;
0066     virtual G4int GetEncodingOffset(G4int) = 0;
0067     virtual G4DecayTable* CreateDecayTable(const G4String&, G4int, G4int, G4bool) = 0;
0068 
0069   protected:
0070     G4int NumberOfStates;
0071     G4int iIsoSpin;
0072 
0073     const G4String type;
0074     const G4int iConjugation{0};
0075     const G4int iGParity{0};
0076     const G4int leptonNumber{0};
0077     const G4int baryonNumber{1};
0078 };
0079 
0080 #endif