128 lines
4.1 KiB
C++
128 lines
4.1 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: G4BohrFluctuations.hh,v 1.3 2007/09/27 13:53:11 vnivanch Exp $
|
|
// GEANT4 tag $Name: geant4-09-01 $
|
|
//
|
|
// -------------------------------------------------------------------
|
|
//
|
|
// GEANT4 Class header file
|
|
//
|
|
//
|
|
// File name: G4BohrFluctuations
|
|
//
|
|
// Author: Vladimir Ivanchenko
|
|
//
|
|
// Creation date: 02.04.2003
|
|
//
|
|
// Modifications:
|
|
//
|
|
// 16-10-03 Changed interface to Initialisation (V.Ivanchenko)
|
|
//
|
|
// Class Description:
|
|
//
|
|
// Implementation of Gaussion energy loss Fluctuations
|
|
|
|
// -------------------------------------------------------------------
|
|
//
|
|
|
|
#ifndef G4BohrFluctuations_h
|
|
#define G4BohrFluctuations_h 1
|
|
|
|
|
|
#include "G4VEmFluctuationModel.hh"
|
|
#include "G4Material.hh"
|
|
#include "G4DynamicParticle.hh"
|
|
|
|
class G4BohrFluctuations : public G4VEmFluctuationModel
|
|
{
|
|
|
|
public:
|
|
|
|
G4BohrFluctuations(const G4String& nam = "BohrFluc");
|
|
|
|
virtual ~G4BohrFluctuations();
|
|
|
|
G4double SampleFluctuations(const G4Material*,
|
|
const G4DynamicParticle*,
|
|
G4double&,
|
|
G4double&,
|
|
G4double&);
|
|
|
|
G4double Dispersion( const G4Material*,
|
|
const G4DynamicParticle*,
|
|
G4double&,
|
|
G4double&);
|
|
|
|
void InitialiseMe(const G4ParticleDefinition*);
|
|
|
|
protected:
|
|
|
|
private:
|
|
|
|
// hide assignment operator
|
|
G4BohrFluctuations & operator=(const G4BohrFluctuations &right);
|
|
G4BohrFluctuations(const G4BohrFluctuations&);
|
|
|
|
const G4ParticleDefinition* particle;
|
|
|
|
G4double particleMass;
|
|
G4double chargeSquare;
|
|
|
|
G4double minNumberInteractionsBohr;
|
|
G4double minFraction;
|
|
G4double xmin;
|
|
G4double minLoss;
|
|
// cash
|
|
G4double kineticEnergy;
|
|
G4double beta2;
|
|
};
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
|
|
inline G4double G4BohrFluctuations::Dispersion(
|
|
const G4Material* material,
|
|
const G4DynamicParticle* dp,
|
|
G4double& tmax,
|
|
G4double& length)
|
|
{
|
|
if(!particle) InitialiseMe(dp->GetDefinition());
|
|
|
|
G4double electronDensity = material->GetElectronDensity();
|
|
kineticEnergy = dp->GetKineticEnergy();
|
|
G4double etot = kineticEnergy + particleMass;
|
|
beta2 = kineticEnergy*(kineticEnergy + 2.0*particleMass)/(etot*etot);
|
|
G4double siga = (1.0/beta2 - 0.5) * twopi_mc2_rcl2 * tmax * length
|
|
* electronDensity * chargeSquare;
|
|
|
|
return siga;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
#endif
|
|
|