Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4tgbMaterialMixtureByWeight Class Reference

#include <G4tgbMaterialMixtureByWeight.hh>

Inheritance diagram for G4tgbMaterialMixtureByWeight:

Public Member Functions

 G4tgbMaterialMixtureByWeight ()
 G4tgbMaterialMixtureByWeight (G4tgrMaterial *tgr)
 ~G4tgbMaterialMixtureByWeight ()
G4MaterialBuildG4Material ()
Public Member Functions inherited from G4tgbMaterialMixture
 G4tgbMaterialMixture ()
virtual ~G4tgbMaterialMixture ()
virtual const G4StringGetComponent (G4int i) const
virtual G4double GetFraction (G4int i) const
G4tgbMaterialMixtureoperator= (const G4tgbMaterialMixture &)
Public Member Functions inherited from G4tgbMaterial
 G4tgbMaterial ()
virtual ~G4tgbMaterial ()
 G4tgbMaterial (G4tgrMaterial *tgr)
const G4StringGetName () const
G4double GetDensity () const
G4int GetNumberOfMaterials () const
G4double GetA () const
G4double GetZ () const
const G4StringGetType () const
G4tgrMaterialGetTgrMate () const

Additional Inherited Members

Protected Member Functions inherited from G4tgbMaterialMixture
virtual void TransformToFractionsByWeight ()
Protected Attributes inherited from G4tgbMaterial
G4tgrMaterialtheTgrMate = nullptr
G4MaterialtheG4Mate = nullptr

Detailed Description

Definition at line 40 of file G4tgbMaterialMixtureByWeight.hh.

Constructor & Destructor Documentation

◆ G4tgbMaterialMixtureByWeight() [1/2]

G4tgbMaterialMixtureByWeight::G4tgbMaterialMixtureByWeight ( )

Definition at line 39 of file G4tgbMaterialMixtureByWeight.cc.

40{
41}

◆ G4tgbMaterialMixtureByWeight() [2/2]

G4tgbMaterialMixtureByWeight::G4tgbMaterialMixtureByWeight ( G4tgrMaterial * tgr)

Definition at line 49 of file G4tgbMaterialMixtureByWeight.cc.

50{
51 theTgrMate = hg;
52}
G4tgrMaterial * theTgrMate

◆ ~G4tgbMaterialMixtureByWeight()

G4tgbMaterialMixtureByWeight::~G4tgbMaterialMixtureByWeight ( )

Definition at line 44 of file G4tgbMaterialMixtureByWeight.cc.

45{
46}

Member Function Documentation

◆ BuildG4Material()

G4Material * G4tgbMaterialMixtureByWeight::BuildG4Material ( )
virtual

Implements G4tgbMaterial.

Definition at line 55 of file G4tgbMaterialMixtureByWeight.cc.

56{
57 //----- construct new G4Material with component materials (a mixture)
58 G4Material* mate =
59 new G4Material(theTgrMate->GetName(), theTgrMate->GetDensity(),
60 theTgrMate->GetNumberOfComponents(), theTgrMate->GetState(),
61 theTgrMate->GetTemperature(), theTgrMate->GetPressure());
62#ifdef G4VERBOSE
64 {
65 G4cout << " G4tgbMaterialMixtureByWeight::BuildG4Material() -"
66 << " Constructing new G4Material:"
67 << " " << theTgrMate->GetName() << " "
68 << theTgrMate->GetDensity() / g * cm3 << " "
69 << theTgrMate->GetNumberOfComponents() << " "
70 << theTgrMate->GetState() << " " << theTgrMate->GetTemperature()
71 << " " << theTgrMate->GetPressure() << G4endl;
72 }
73#endif
74
75 //--- Add components
76 G4Element* compElem;
77 G4Material* compMate;
78 G4tgbMaterialMgr* mf = G4tgbMaterialMgr::GetInstance();
79
80 for(G4int ii = 0; ii < theTgrMate->GetNumberOfComponents(); ++ii)
81 {
82 // Look if this component is an element
83 compElem = mf->FindOrBuildG4Element(GetComponent(ii), false);
84 if(compElem != nullptr)
85 {
86 mate->AddElement(compElem, GetFraction(ii));
87 }
88 else // If it is not an element, it must be a material
89 {
90 compMate = mf->FindOrBuildG4Material(GetComponent(ii));
91 if(compMate != nullptr)
92 {
93 // If it is a material add it by weight fraction
94 mate->AddMaterial(compMate, GetFraction(ii));
95 }
96 else
97 {
98 G4String ErrMessage = "Component " + GetComponent(ii) +
99 " of material " + theTgrMate->GetName() + "\n" +
100 "is not an element nor a material !";
101 G4Exception("G4tgbMaterialMixtureByWeight::BuildG4Material()",
102 "InvalidSetup", FatalException, ErrMessage);
103 }
104 }
105 }
106
107#ifdef G4VERBOSE
109 {
110 G4cout << " Constructing new G4Material by weight: " << *mate << G4endl;
111 G4cout << " TEMPERATURE " << mate->GetTemperature() / kelvin << " kelvin "
112 << G4endl;
113 }
114#endif
115
116 return mate;
117}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
G4double GetTemperature() const
void AddElement(G4Element *elm, G4int nAtoms)
void AddMaterial(G4Material *material, G4double fraction)
G4Element * FindOrBuildG4Element(const G4String &name, G4bool bMustExist=true)
G4Material * FindOrBuildG4Material(const G4String &name, G4bool bMustExist=true)
static G4tgbMaterialMgr * GetInstance()
virtual G4double GetFraction(G4int i) const
virtual const G4String & GetComponent(G4int i) const
static G4int GetVerboseLevel()

The documentation for this class was generated from the following files: