Geant4 Cross Reference |
1 // 2 // ******************************************************************** 3 // * License and Disclaimer * 4 // * * 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. * 10 // * * 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitation of liability. * 17 // * * 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************************************** 25 // 26 // 27 // P. Arce, June-2014 Conversion neutron_hp to particle_hp 28 // V. Ivanchenko, July-2023 Basic revision of particle HP classes 29 // 30 31 #ifndef G4ParticleHPInelasticBaseFS_h 32 #define G4ParticleHPInelasticBaseFS_h 1 33 34 #include "G4HadFinalState.hh" 35 #include "G4HadProjectile.hh" 36 #include "G4Nucleus.hh" 37 #include "G4ParticleHPAngular.hh" 38 #include "G4ParticleHPDeExGammas.hh" 39 #include "G4ParticleHPEnAngCorrelation.hh" 40 #include "G4ParticleHPEnergyDistribution.hh" 41 #include "G4ParticleHPFinalState.hh" 42 #include "G4ParticleHPPhotonDist.hh" 43 #include "G4ParticleHPNBodyPhaseSpace.hh" 44 #include "globals.hh" 45 46 class G4ParticleHPInelasticBaseFS : public G4ParticleHPFinalState 47 { 48 public: 49 50 G4ParticleHPInelasticBaseFS(); 51 ~G4ParticleHPInelasticBaseFS() override; 52 53 void Init(G4double A, G4double Z, G4int M, const G4String& dirName, 54 const G4String& bit, G4ParticleDefinition*) override; 55 56 void BaseApply(const G4HadProjectile& theTrack, G4ParticleDefinition** theDefs, G4int nDef); 57 58 void InitGammas(G4double AR, G4double ZR); 59 60 G4HadFinalState* ApplyYourself(const G4HadProjectile& theTrack) override = 0; 61 62 G4ParticleHPFinalState* New() override = 0; 63 64 G4double GetXsec(G4double anEnergy) const override 65 { 66 return std::max(0., theXsection->GetY(anEnergy)); 67 } 68 69 G4ParticleHPVector* GetXsec() const override { return theXsection; } 70 71 G4ParticleHPInelasticBaseFS& operator=(const G4ParticleHPInelasticBaseFS& right) = delete; 72 G4ParticleHPInelasticBaseFS(const G4ParticleHPInelasticBaseFS&) = delete; 73 74 protected: 75 76 G4ParticleHPVector* theXsection; 77 G4ParticleHPEnergyDistribution* theEnergyDistribution{nullptr}; 78 G4ParticleHPAngular* theAngularDistribution{nullptr}; 79 G4ParticleHPEnAngCorrelation* theEnergyAngData{nullptr}; 80 81 G4ParticleHPPhotonDist* theFinalStatePhotons{nullptr}; 82 G4double theNuclearMassDifference{0.0}; 83 G4double Qvalue{0.0}; 84 85 G4ParticleHPDeExGammas theGammas; 86 G4String gammaPath{""}; 87 }; 88 89 #endif 90