87 lines
2.7 KiB
C++
87 lines
2.7 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * 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. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: G4VStatMFEnsemble.hh,v 1.1 2003/08/26 18:47:27 lara Exp $
|
|
// GEANT4 tag $Name: geant4-06-00-patch-01 $
|
|
//
|
|
// Hadronic Process: Nuclear De-excitations
|
|
// by V. Lara
|
|
|
|
|
|
#ifndef G4VStatMFEnsemble_h
|
|
#define G4VStatMFEnsemble_h 1
|
|
|
|
#include "G4StatMFParameters.hh"
|
|
#include "G4StatMFChannel.hh"
|
|
|
|
class G4VStatMFEnsemble {
|
|
|
|
public:
|
|
// Default Constructor
|
|
G4VStatMFEnsemble() :
|
|
__FreeInternalE0(0.0),
|
|
__MeanTemperature(0.0),
|
|
__MeanEntropy(0.0),
|
|
__MeanMultiplicity(0.0)
|
|
{};
|
|
|
|
|
|
// Destructor
|
|
virtual ~G4VStatMFEnsemble() {};
|
|
|
|
|
|
private:
|
|
|
|
// Copy constructor
|
|
G4VStatMFEnsemble(const G4VStatMFEnsemble & right);
|
|
|
|
// operators
|
|
G4VStatMFEnsemble & operator=(const G4VStatMFEnsemble & right);
|
|
G4bool operator==(const G4VStatMFEnsemble & right) const;
|
|
G4bool operator!=(const G4VStatMFEnsemble & right) const;
|
|
|
|
public:
|
|
|
|
virtual G4StatMFChannel * ChooseAandZ(const G4Fragment & aFragment) = 0;
|
|
|
|
G4double GetMeanMultiplicity(void) const {return __MeanMultiplicity;}
|
|
|
|
G4double GetMeanTemperature(void) const {return __MeanTemperature;}
|
|
|
|
protected:
|
|
|
|
// Free internal energy at temperature T = 0
|
|
G4double __FreeInternalE0;
|
|
|
|
// Mean temperature
|
|
G4double __MeanTemperature;
|
|
|
|
// Mean Entropy
|
|
G4double __MeanEntropy;
|
|
|
|
// Mean Multiplicity
|
|
G4double __MeanMultiplicity;
|
|
};
|
|
|
|
#endif
|