Files
geant4/source/processes/hadronic/models/neutron_hp/include/G4NeutronHPEnergyDistribution.hh
T
2016-06-09 15:37:50 +02:00

138 lines
4.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. *
// ********************************************************************
//
//
// $Id: G4NeutronHPEnergyDistribution.hh,v 1.11 2007/06/06 12:45:13 ahoward Exp $
// GEANT4 tag $Name: geant4-09-01 $
//
#ifndef G4NeutronHPEnergyDistribution_h
#define G4NeutronHPEnergyDistribution_h 1
#include "globals.hh"
#include "G4ios.hh"
#include <fstream>
#include "G4NeutronHPArbitaryTab.hh"
#include "G4NeutronHPEvapSpectrum.hh"
#include "G4NeutronHPSimpleEvapSpectrum.hh"
#include "G4NeutronHPFissionSpectrum.hh"
#include "G4NeutronHPWattSpectrum.hh"
#include "G4NeutronHPMadlandNixSpectrum.hh"
#include "G4VNeutronHPEDis.hh"
#include "Randomize.hh"
// we will need a List of these .... one per term.
class G4NeutronHPEnergyDistribution
{
public:
G4NeutronHPEnergyDistribution()
{
theEnergyDistribution = 0;
theNumberOfPartials = 0;
theRepresentationType = 0;
}
~G4NeutronHPEnergyDistribution()
{
if(theEnergyDistribution != 0)
{
for(G4int i=0; i<theNumberOfPartials; i++)
{
delete theEnergyDistribution[i];
}
delete [] theEnergyDistribution;
}
}
inline void Init(std::ifstream & theData)
{
G4double dummy;
theData >> dummy >> theNumberOfPartials;
theEnergyDistribution = new G4VNeutronHPEDis * [theNumberOfPartials];
for(G4int i=0; i<theNumberOfPartials; i++)
{
theData >> theRepresentationType;
switch(theRepresentationType)
{
case 1:
theEnergyDistribution[i] = new G4NeutronHPArbitaryTab;
break;
case 5:
theEnergyDistribution[i] = new G4NeutronHPEvapSpectrum;
break;
case 7:
theEnergyDistribution[i] = new G4NeutronHPFissionSpectrum;
break;
case 9:
theEnergyDistribution[i] = new G4NeutronHPSimpleEvapSpectrum;
break;
case 11:
theEnergyDistribution[i] = new G4NeutronHPWattSpectrum;
break;
case 12:
theEnergyDistribution[i] = new G4NeutronHPMadlandNixSpectrum;
break;
}
theEnergyDistribution[i]->Init(theData);
}
}
inline G4double Sample(G4double anEnergy, G4int & it)
{
G4double result = 0;
it = 0;
if (theNumberOfPartials != 0)
{
G4double sum=0;
G4double * running = new G4double[theNumberOfPartials];
running[0] = 0;
G4int i;
for (i=0; i<theNumberOfPartials; i++)
{
if (i!=0) running[i]=running[i-1];
running[i]+=theEnergyDistribution[i]->GetFractionalProbability(anEnergy);
}
sum = running[theNumberOfPartials-1];
G4double random = G4UniformRand();
for(i=0; i<theNumberOfPartials; i++)
{
it = i;
if(running[i]/sum>random) break;
}
delete [] running;
if(it==theNumberOfPartials) it--;
result = theEnergyDistribution[it]->Sample(anEnergy);
}
return result;
}
private:
G4int theNumberOfPartials;
G4int theRepresentationType;
G4VNeutronHPEDis ** theEnergyDistribution;
};
#endif