Files
geant4/source/materials/include/G4UCNMicroRoughnessHelper.hh
T
2016-06-30 14:12:05 +02:00

185 lines
6.0 KiB
C++
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// ********************************************************************
// * 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. *
// ********************************************************************
//
//
//---------------------------------------------------------------------------
//
// ClassName: G4UCNMicroRoughnessHelper
//
// Class description:
//
// This file contains the headers of various functions all related to the
// calculation of microroughness.
// see A. Steyerl, Z. Physik 254 (1972) 169.
//
// Angular cut: for angles which are closer to the specular direction than a
// certain value (0.01°), the probability is set to 0 in order to avoid a
// hang-up at the generation of the polar angle due to a very sharp angular
// distribution
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
// 12-05-14, adopted from Stefan Heule (PSI) Thesis by P.Gumplinger
// http://ucn.web.psi.ch/papers/stefanheule_thesis2008.pdf
// reported in F. Atchison et al., Eur. Phys. J. A 44, 2329 (2010)
// Thanks to Geza Zsigmond
#ifndef G4MICROROUGHNESSHELPER_HH
#define G4MICROROUGHNESSHELPER_HH 1
#include "G4Types.hh"
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
class G4UCNMicroRoughnessHelper
{
public: // with description
static G4UCNMicroRoughnessHelper* GetInstance();
protected:
G4UCNMicroRoughnessHelper();
~G4UCNMicroRoughnessHelper();
public: // with description
// Transmitted intensity with k-vector in vacuum
// arguments:
// 1) cos(theta)^2,
// 2) (k_l/k)^2
G4double S2(G4double, G4double) const;
// Transmitted intensity with k-vector within the medium
// arguments:
// 1) cos(theta')^2,
// 2) (k_l/k')^2
G4double SS2(G4double, G4double) const;
// Fourier-tranform of the autocorrelation function with k-vector in vacuum
// arguments:
// 1) k^2,
// 2) theta_i,
// 3) theta_o,
// 4) phi_o,
// 5) b^2,
// 6) w^2,
// 7) angular cut
G4double Fmu(G4double, G4double, G4double,
G4double, G4double, G4double, G4double) const;
// Fourier-tranform of the autocorrelation function with k-vector within
// the medium
// arguments:
// 1) k,
// 2) k',
// 3) theta_i,
// 4) theta'_o,
// 5) phi'_o,
// 6) b^2,
// 7) w^2,
// 8) angular cut
// 9) theta_refract
G4double FmuS(G4double, G4double, G4double, G4double,
G4double, G4double, G4double, G4double, G4double) const;
// Integral probability for non-specular reflection
// arguments:
// 1) E,
// 2) V_F,
// 3) theta_i,
// 4) number of angles theta_o for which the probability is calculated,
// 5) number of angles phi_o for which the probability is calculated,
// 6) b^2,
// 7) w^2,
// 8) pointer to G4double array with max values of the probability,
// 9) angular cut
G4double IntIplus(G4double, G4double, G4double, G4int, G4int,
G4double, G4double, G4double*, G4double) const;
// Probability of non-specular reflection with the microroughness model
// arguments:
// 1) E,
// 2) V_F,
// 3) theta_i,
// 4) theta_o,
// 5) phi_o,
// 6) b,
// 7) w,
// 8) angular cut
G4double ProbIplus (G4double, G4double, G4double, G4double,
G4double, G4double, G4double, G4double) const;
// Integral probability for non-specular transmission
// arguments:
// 1) E,
// 2) V_F,
// 3) theta_i,
// 4) number of angles theta_o for which the probability is calculated,
// 5) number of angles phi_o for which the probability is calculated,
// 6) b^2,
// 7) w^2,
// 8) pointer to G4double array with max values of the probability,
// 9) angular cut
G4double IntIminus(G4double, G4double, G4double, G4int, G4int,
G4double, G4double, G4double*, G4double) const;
// Probability of non-specular transmission with the microroughness model
// arguments:
// 1) E,
// 2) V_F,
// 3) theta_i,
// 4) theta'_o,
// 5) phi'_o,
// 6) b,
// 7) w,
// 8) angular cut
G4double ProbIminus (G4double, G4double, G4double, G4double,
G4double, G4double, G4double, G4double) const;
private:
static G4UCNMicroRoughnessHelper* fpInstance;
};
#endif // G4MICROROUGHNESSHELPER_HH