Files
2025-12-05 08:54:02 +01:00

98 lines
3.4 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 G4StatMFMicroManager_h
#define G4StatMFMicroManager_h 1
#include "G4StatMFMicroPartition.hh"
#include "G4StatMFParameters.hh"
#include "G4StatMFChannel.hh"
#include "G4Fragment.hh"
#include "Randomize.hh"
class G4StatMFMicroManager {
public:
// G4StatMFMicroManager class must be initialized with a G4Fragment, multiplicity,
// free internal energy and the entropy of the compund nucleus.
G4StatMFMicroManager(const G4Fragment& theFragment, G4int multiplicity,
G4double FreeIntE, G4double SCompNuc);
~G4StatMFMicroManager();
// copy constructor
G4StatMFMicroManager(const G4StatMFMicroManager& right) = delete;
G4StatMFMicroManager & operator=(const G4StatMFMicroManager& right) = delete;
G4bool operator==(const G4StatMFMicroManager & right) const = delete;
G4bool operator!=(const G4StatMFMicroManager & right) const = delete;
// Choice of fragment atomic numbers and charges.
G4StatMFChannel* ChooseChannel(G4int A0, G4int Z0, G4double MeanT);
G4double GetProbability(void) const {return _WW;}
void Normalize(G4double Norm);
G4double GetMeanMultiplicity(void) const {return _MeanMultiplicity; }
G4double GetMeanTemperature(void) const {return _MeanTemperature; }
G4double GetMeanEntropy(void) const {return _MeanEntropy; }
private:
// Initailization method
void Initialize(const G4Fragment & theFragment, G4int m,
G4double FreeIntE, G4double SCompNuc);
G4bool MakePartition(G4int k, G4int* ANumbers);
// Partitions vector
std::vector<G4StatMFMicroPartition*> _Partition;
G4double _WW;
G4double _Normalization;
G4double _MeanMultiplicity;
G4double _MeanTemperature;
G4double _MeanEntropy;
};
#endif