138 lines
4.0 KiB
C++
138 lines
4.0 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: G4StatMFMicroCanonical.hh,v 1.3 2006/06/29 20:24:27 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-09-01 $
|
|
//
|
|
// Hadronic Process: Nuclear De-excitations
|
|
// by V. Lara
|
|
|
|
#ifndef G4StatMFMicroCanonical_h
|
|
#define G4StatMFMicroCanonical_h 1
|
|
|
|
#include <vector>
|
|
|
|
#include "G4VStatMFEnsemble.hh"
|
|
#include "G4StatMFMicroPartition.hh"
|
|
#include "G4StatMFMicroManager.hh"
|
|
#include "G4StatMFParameters.hh"
|
|
#include "G4StatMFChannel.hh"
|
|
|
|
#include "G4Fragment.hh"
|
|
#include "Randomize.hh"
|
|
|
|
|
|
class G4StatMFMicroCanonical : public G4VStatMFEnsemble {
|
|
|
|
public:
|
|
|
|
// G4StatMFMicroCanonical class must be initialized with a G4Fragment.
|
|
G4StatMFMicroCanonical(const G4Fragment & theFragment);
|
|
|
|
// destructor
|
|
~G4StatMFMicroCanonical();
|
|
|
|
private:
|
|
// default constructor
|
|
G4StatMFMicroCanonical() {};
|
|
|
|
|
|
// copy constructor
|
|
G4StatMFMicroCanonical(const G4StatMFMicroCanonical &right);
|
|
|
|
|
|
// operators
|
|
G4StatMFMicroCanonical & operator=(const G4StatMFMicroCanonical & right);
|
|
G4bool operator==(const G4StatMFMicroCanonical & right) const;
|
|
G4bool operator!=(const G4StatMFMicroCanonical & right) const;
|
|
|
|
|
|
public:
|
|
|
|
// Choice of fragment atomic numbers and charges.
|
|
G4StatMFChannel * ChooseAandZ(const G4Fragment & theFragment);
|
|
|
|
enum {MaxAllowedMultiplicity = 4};
|
|
|
|
private:
|
|
|
|
// Initailization method
|
|
void Initialize(const G4Fragment & theFragment);
|
|
|
|
// Calculate Entropy of Compound Nucleus
|
|
G4double CalcEntropyOfCompoundNucleus(const G4Fragment & theFragment, G4double & TConf);
|
|
|
|
|
|
G4double CalcFreeInternalEnergy(const G4Fragment & theFragment, const G4double T);
|
|
|
|
|
|
G4double CalcInvLevelDensity(const G4int anA);
|
|
|
|
|
|
// Data members
|
|
private:
|
|
|
|
// This is a vector of partitions managers for partitions of different
|
|
// multiplicities:
|
|
|
|
std::vector<G4StatMFMicroManager*> _ThePartitionManagerVector;
|
|
|
|
|
|
|
|
// Statistical weight of compound nucleus
|
|
G4double _WCompoundNucleus;
|
|
|
|
|
|
struct DeleteFragment
|
|
{
|
|
template<typename T>
|
|
void operator()(const T* ptr) const
|
|
{
|
|
delete ptr;
|
|
}
|
|
};
|
|
|
|
class SumProbabilities : public std::binary_function<G4double,G4double,G4double>
|
|
{
|
|
public:
|
|
SumProbabilities() : total(0.0) {}
|
|
G4double operator() (G4double& /* probSoFar*/, G4StatMFMicroManager*& manager)
|
|
{
|
|
total += manager->GetProbability();
|
|
return total;
|
|
}
|
|
|
|
G4double GetTotal() { return total; }
|
|
public:
|
|
G4double total;
|
|
|
|
};
|
|
|
|
|
|
};
|
|
|
|
#endif
|