128 lines
3.9 KiB
C++
128 lines
3.9 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: G4StatMFMacroTemperature.hh,v 1.3 2006/06/29 20:24:21 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-09-01 $
|
|
//
|
|
// Hadronic Process: Nuclear De-excitations
|
|
// by V. Lara
|
|
|
|
#ifndef G4StatMFMacroTemperature_h
|
|
#define G4StatMFMacroTemperature_h 1
|
|
|
|
#include "G4StatMFParameters.hh"
|
|
#include "G4VStatMFMacroCluster.hh"
|
|
#include "G4StatMFMacroChemicalPotential.hh"
|
|
#include "G4Solver.hh"
|
|
|
|
|
|
|
|
class G4StatMFMacroTemperature {
|
|
|
|
public:
|
|
|
|
G4StatMFMacroTemperature(const G4double anA, const G4double aZ,
|
|
const G4double ExEnergy, const G4double FreeE0,
|
|
const G4double kappa,
|
|
std::vector<G4VStatMFMacroCluster*> * ClusterVector) :
|
|
theA(anA),
|
|
theZ(aZ),
|
|
_ExEnergy(ExEnergy),
|
|
_FreeInternalE0(FreeE0),
|
|
_Kappa(kappa),
|
|
_MeanMultiplicity(0.0),
|
|
_MeanTemperature(0.0),
|
|
_ChemPotentialMu(0.0),
|
|
_ChemPotentialNu(0.0),
|
|
_theClusters(ClusterVector)
|
|
{};
|
|
|
|
~G4StatMFMacroTemperature() {};
|
|
|
|
G4double operator()(const G4double T)
|
|
{ return (_ExEnergy - this->FragsExcitEnergy(T))/_ExEnergy; }
|
|
|
|
private:
|
|
// Default constructor
|
|
G4StatMFMacroTemperature() {};
|
|
|
|
// copy constructor
|
|
G4StatMFMacroTemperature(const G4StatMFMacroTemperature &) {};
|
|
|
|
|
|
// operators
|
|
G4StatMFMacroTemperature & operator=(const G4StatMFMacroTemperature & right);
|
|
G4bool operator==(const G4StatMFMacroTemperature & right) const;
|
|
G4bool operator!=(const G4StatMFMacroTemperature & right) const;
|
|
|
|
public:
|
|
|
|
G4double GetMeanMultiplicity(void) const {return _MeanMultiplicity;}
|
|
|
|
G4double GetChemicalPotentialMu(void) const {return _ChemPotentialMu;}
|
|
|
|
G4double GetChemicalPotentialNu(void) const {return _ChemPotentialNu;}
|
|
|
|
G4double GetTemperature(void) const {return _MeanTemperature;}
|
|
|
|
G4double GetEntropy(void) const {return _MeanEntropy;}
|
|
|
|
G4double CalcTemperature(void);
|
|
|
|
private:
|
|
|
|
G4double FragsExcitEnergy(const G4double T);
|
|
|
|
void CalcChemicalPotentialNu(const G4double T);
|
|
|
|
private:
|
|
|
|
G4double theA;
|
|
|
|
G4double theZ;
|
|
|
|
G4double _ExEnergy;
|
|
|
|
G4double _FreeInternalE0;
|
|
|
|
G4double _Kappa;
|
|
|
|
G4double _MeanMultiplicity;
|
|
|
|
G4double _MeanTemperature;
|
|
|
|
G4double _ChemPotentialMu;
|
|
|
|
G4double _ChemPotentialNu;
|
|
|
|
G4double _MeanEntropy;
|
|
|
|
std::vector<G4VStatMFMacroCluster*> * _theClusters;
|
|
|
|
|
|
};
|
|
#endif
|