// // ******************************************************************** // * 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: G4CascadeSampler.hh,v 1.4 2010/08/03 23:09:36 mkelsey Exp $ // GEANT4 tag: $Name: hadr-casc-V09-03-85 $ // // 20100506 M. Kelsey -- Move functionality of G4CascadeChannel here, // use as base class to G4CascadeFunctions. // 20100512 M. Kelsey -- Make this templated on energy and multiplicity // binning, as base to new sampler. // 20100803 M. Kelsey -- Add print function for debugging. #ifndef G4_CASCADE_SAMPLER_HH #define G4_CASCADE_SAMPLER_HH #include #include "globals.hh" #include "G4CascadeInterpolator.hh" template class G4CascadeSampler { public: enum { energyBins=NBINS, multBins=NMULT }; // For use in function arguments G4CascadeSampler(const G4double (&ebins)[energyBins]) : interpolator(ebins), energyScale(ebins) {} virtual ~G4CascadeSampler() {} virtual G4double findCrossSection(double ke, const G4double (&xsec)[energyBins]) const; virtual G4int findMultiplicity(G4double ke, const G4double xmult[][energyBins]) const; virtual G4int findFinalStateIndex(G4int mult, G4double ke, const G4int index[], const G4double xsec[][energyBins]) const; virtual void print() const; private: // Optional start/stop arguments default to inclusive arrays void fillSigmaBuffer(G4double ke, const G4double x[][energyBins], G4int startBin=0, G4int stopBin=multBins) const; G4int sampleFlat() const; G4CascadeInterpolator interpolator; mutable std::vector sigmaBuf; const G4double (&energyScale)[energyBins]; }; #include "G4CascadeSampler.icc" #endif /* G4_CASCADE_SAMPLER_HH */