Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
G4CascadeSampler.hh
Go to the documentation of this file.
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// $Id$
27//
28// 20100506 M. Kelsey -- Move functionality of G4CascadeChannel here,
29// use as base class to G4CascadeFunctions<T>.
30// 20100512 M. Kelsey -- Make this templated on energy and multiplicity
31// binning, as base to new sampler.
32// 20100803 M. Kelsey -- Add print function for debugging.
33// 20110923 M. Kelsey -- Add optional ostream& argument to print()
34
35#ifndef G4_CASCADE_SAMPLER_HH
36#define G4_CASCADE_SAMPLER_HH
37
38#include "globals.hh"
40#include <iosfwd>
41#include <vector>
42
43template <int NBINS, int NMULT>
45public:
46 enum { energyBins=NBINS, multBins=NMULT }; // For use in function arguments
47
49 : interpolator(ebins), energyScale(ebins) {}
50
51 virtual ~G4CascadeSampler() {}
52
53 virtual G4double
54 findCrossSection(double ke, const G4double (&xsec)[energyBins]) const;
55
56 virtual G4int
57 findMultiplicity(G4double ke, const G4double xmult[][energyBins]) const;
58
59 virtual G4int
60 findFinalStateIndex(G4int mult, G4double ke, const G4int index[],
61 const G4double xsec[][energyBins]) const;
62
63 virtual void print(std::ostream& os) const;
64
65private:
66 // Optional start/stop arguments default to inclusive arrays
67 void fillSigmaBuffer(G4double ke, const G4double x[][energyBins],
68 G4int startBin=0, G4int stopBin=multBins) const;
69
70 G4int sampleFlat() const;
71
73 mutable std::vector<G4double> sigmaBuf;
74 const G4double (&energyScale)[energyBins];
75};
76
77#include "G4CascadeSampler.icc"
78
79#endif /* G4_CASCADE_SAMPLER_HH */
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
G4CascadeSampler(const G4double(&ebins)[energyBins])
virtual G4int findFinalStateIndex(G4int mult, G4double ke, const G4int index[], const G4double xsec[][energyBins]) const
virtual void print(std::ostream &os) const
virtual G4int findMultiplicity(G4double ke, const G4double xmult[][energyBins]) const
virtual G4double findCrossSection(double ke, const G4double(&xsec)[energyBins]) const
virtual ~G4CascadeSampler()