Files
geant4/source/processes/hadronic/models/particle_hp/include/G4ParticleHPLabAngularEnergy.hh
2023-06-30 09:09:57 +02:00

93 lines
3.5 KiB
C++

//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
// P. Arce, June-2014 Conversion neutron_hp to particle_hp
//
#ifndef G4ParticleHPLabAngularEnergy_h
#define G4ParticleHPLabAngularEnergy_h 1
#include "G4InterpolationManager.hh"
#include "G4Neutron.hh"
#include "G4ParticleHPInterpolator.hh"
#include "G4ParticleHPVector.hh"
#include "G4ReactionProduct.hh"
#include "G4VParticleHPEnergyAngular.hh"
#include "G4ios.hh"
#include "globals.hh"
#include <fstream>
class G4ParticleHPLabAngularEnergy : public G4VParticleHPEnergyAngular
{
public:
G4ParticleHPLabAngularEnergy()
{
theEnergies = nullptr;
theData = nullptr;
nCosTh = nullptr;
theSecondManager = nullptr;
nEnergies = -1;
currentMeanEnergy = -1.0;
}
~G4ParticleHPLabAngularEnergy() override
{
delete[] theEnergies;
delete[] nCosTh;
if (theData != nullptr) {
for (G4int i = 0; i < nEnergies; i++)
delete[] theData[i];
delete[] theData;
}
delete[] theSecondManager;
}
public:
void Init(std::istream& aDataFile) override;
G4ReactionProduct* Sample(G4double anEnergy, G4double massCode, G4double mass) override;
G4double MeanEnergyOfThisInteraction() override { return currentMeanEnergy; }
private:
// number of incoming neutron energies
G4int nEnergies;
// Interpol between neutron energies
G4InterpolationManager theManager;
// Incoming neutron energies
G4double* theEnergies;
// number of directioncosines; parallel to theEnergies
G4int* nCosTh;
// knows the interpolation between these stores
G4InterpolationManager* theSecondManager;
// vectors of secondary energy, haufigkeit; parallel to theEnergies
G4ParticleHPVector** theData;
// utility interpolator
G4ParticleHPInterpolator theInt;
// cashed value of mean secondary energy in this event.
G4double currentMeanEnergy;
};
#endif