Files
geant4/source/processes/hadronic/models/de_excitation/multifragmentation/include/G4StatMFMacroCanonical.hh
T
2016-06-09 14:44:26 +02:00

123 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. *
// ********************************************************************
//
//
//
// Hadronic Process: Nuclear De-excitations
// by V. Lara
#ifndef G4StatMFMacroCanonical_h
#define G4StatMFMacroCanonical_h 1
#include "G4Fragment.hh"
#include "G4StatMFFragment.hh"
#include "G4VStatMFEnsemble.hh"
#include "G4VStatMFMacroCluster.hh"
#include "G4StatMFMacroNucleon.hh"
#include "G4StatMFMacroBiNucleon.hh"
#include "G4StatMFMacroTriNucleon.hh"
#include "G4StatMFMacroTetraNucleon.hh"
#include "G4StatMFMacroMultiNucleon.hh"
#include "G4StatMFParameters.hh"
#include "G4StatMFChannel.hh"
#include "G4StatMFMacroTemperature.hh"
#include "Randomize.hh"
class G4StatMFMacroCanonical : public G4VStatMFEnsemble {
public:
// G4StatMFMacroCanonical class must be initialized with a G4Fragment.
G4StatMFMacroCanonical(G4Fragment const & theFragment);
// destructor
~G4StatMFMacroCanonical();
private:
// default constructor
G4StatMFMacroCanonical() {};
// copy constructor
G4StatMFMacroCanonical(const G4StatMFMacroCanonical &) : G4VStatMFEnsemble() {};
// operators
G4StatMFMacroCanonical & operator=(const G4StatMFMacroCanonical & right);
G4bool operator==(const G4StatMFMacroCanonical & right) const;
G4bool operator!=(const G4StatMFMacroCanonical & right) const;
public:
// Choice of fragment atomic numbers and charges.
G4StatMFChannel * ChooseAandZ(const G4Fragment &theFragment);
private:
// Initailization method
void Initialize(const G4Fragment & theFragment);
//
void CalculateTemperature(const G4Fragment & theFragment);
// Determines fragments multiplicities and compute total fragment multiplicity
G4double ChooseA(const G4double A, std::vector<G4double> & ANumbers);
// Samples charges of fragments
G4StatMFChannel * ChooseZ(const G4int & Z,
std::vector<G4double> & FragmentsA);
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Chemical Potential \mu
G4double _ChemPotentialMu;
// Chemical Potential \nu
G4double _ChemPotentialNu;
// Parameter Kappa
G4double _Kappa;
// Clusters
std::vector<G4VStatMFMacroCluster*> _theClusters;
struct DeleteFragment
{
template<typename T>
void operator()(const T* ptr) const
{
delete ptr;
}
};
};
#endif