110 lines
4.3 KiB
C++
110 lines
4.3 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. *
|
|
// ********************************************************************
|
|
//
|
|
/*
|
|
* File: G4ShiftedGaussian.hh
|
|
* Author: B. Wendt (wendbryc@isu.edu)
|
|
*
|
|
* Created on July 20, 2011, 11:55 AM
|
|
*/
|
|
|
|
#ifndef G4SHIFTEDGAUSSIAN_HH
|
|
#define G4SHIFTEDGAUSSIAN_HH
|
|
|
|
#include "globals.hh"
|
|
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
/** G4ShiftedGaussian is a class for storing the shifted values used for
|
|
* sampling a Gaussian distribution and returning only positive values; it is
|
|
* integrated into G4FPYSamplingOps
|
|
*/
|
|
class G4ShiftedGaussian
|
|
{
|
|
public:
|
|
// Constructor definition
|
|
/** Default constructor
|
|
* - Usage: No arguments required
|
|
* - Notes:
|
|
*/
|
|
G4ShiftedGaussian();
|
|
/** Overloaded constructor
|
|
* - Usage:
|
|
* - \p Verbosity: Verbosity level
|
|
* - Notes:
|
|
*/
|
|
G4ShiftedGaussian(G4int Verbosity);
|
|
|
|
protected:
|
|
/** Initialize is a common function called by all constructors. */
|
|
void Initialize();
|
|
|
|
public:
|
|
// Functions
|
|
/** Returns the shifted mean that correlates to a \p RequestedMean and
|
|
* \p RequestedStdDev pair. 0 is returned if there is no associated value.
|
|
*/
|
|
G4double G4FindShiftedMean(G4double RequestedMean, G4double RequestedStdDev);
|
|
/** Inserts a \p ShiftedMean indexed by the \p RequestedMean and
|
|
* \p RequestedStdDev
|
|
*/
|
|
void G4InsertShiftedMean(G4double ShiftedMean, G4double RequestedMean,
|
|
G4double RequestedStdDev);
|
|
/** Sets the verbosity levels
|
|
* - Usage:
|
|
* - \p WhichVerbosity: Combination of levels
|
|
*
|
|
* - Notes:
|
|
* - \p SILENT: All verbose output is repressed
|
|
* - \p UPDATES: Only high-level internal changes are reported
|
|
* - \p DAUGHTER_INFO: Displays information about daughter product sampling
|
|
* - \p NEUTRON_INFO: Displays information about neutron sampling
|
|
* - \p GAMMA_INFO: Displays information about gamma sampling
|
|
* - \p ALPHA_INFO: Displays information about alpha sampling
|
|
* - \p MOMENTUM_INFO: Displays information about momentum balancing
|
|
* - \p EXTRAPOLATION_INTERPOLATION_INFO: Displays information about any data extrapolation
|
|
* or interpolation that occurs
|
|
* - \p DEBUG: Reports program flow as it steps through functions
|
|
* - \p PRINT_ALL: Displays any and all output
|
|
*/
|
|
void G4SetVerbosity(G4int WhatVerbosity);
|
|
|
|
protected:
|
|
/** Contains the adjusted mean of the POSITIVE only Gaussian distribution
|
|
* associated with a \p RequestedMean and \p RequestedStdDev pair.
|
|
*/
|
|
std::vector<std::pair<std::pair<G4double, G4double>, G4double>> ShiftedMean_;
|
|
/** Verbosity level */
|
|
G4int Verbosity_;
|
|
|
|
// Destructor function(s)
|
|
public:
|
|
/** Default deconstructor. */
|
|
~G4ShiftedGaussian();
|
|
};
|
|
|
|
#endif /* G4SHIFTEDGAUSSIAN_HH */
|