100 lines
3.4 KiB
C++
100 lines
3.4 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 "G4ios.hh"
|
|
#include <fstream>
|
|
#include "globals.hh"
|
|
#include "G4Neutron.hh"
|
|
#include "G4ParticleHPInterpolator.hh"
|
|
#include "G4ParticleHPVector.hh"
|
|
#include "G4VParticleHPEnergyAngular.hh"
|
|
#include "G4ReactionProduct.hh"
|
|
#include "G4InterpolationManager.hh"
|
|
|
|
class G4ParticleHPLabAngularEnergy : public G4VParticleHPEnergyAngular
|
|
{
|
|
public:
|
|
|
|
G4ParticleHPLabAngularEnergy()
|
|
{
|
|
theEnergies = 0;
|
|
theData = 0;
|
|
nCosTh = 0;
|
|
theSecondManager = 0;
|
|
nEnergies = -1;
|
|
currentMeanEnergy = -1.0;
|
|
}
|
|
~G4ParticleHPLabAngularEnergy()
|
|
{
|
|
if(theEnergies != 0) delete [] theEnergies;
|
|
if(nCosTh != 0) delete [] nCosTh;
|
|
if(theData != 0)
|
|
{
|
|
for(G4int i=0; i<nEnergies; i++)
|
|
delete [] theData[i];
|
|
delete [] theData;
|
|
}
|
|
if(theSecondManager != 0) delete [] theSecondManager;
|
|
}
|
|
|
|
public:
|
|
|
|
void Init(std::istream & aDataFile);
|
|
G4ReactionProduct * Sample(G4double anEnergy, G4double massCode, G4double mass);
|
|
G4double MeanEnergyOfThisInteraction()
|
|
{
|
|
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
|