Skip to content
Snippets Groups Projects
Commit 3eb2d29d authored by flavigny's avatar flavigny
Browse files

Added solid "Be" to list of Material in MaterialManager

parent 87fc4060
No related branches found
No related tags found
No related merge requests found
......@@ -739,6 +739,15 @@ G4Material* MaterialManager::GetMaterialFromLibrary(string Name,
}
// Misc
else if (Name == "Be") {
if (!density)
density = 1.848 * g / cm3;
G4Material* material = new G4Material("NPS_" + Name, density, 1);
material->AddElement(GetElementFromLibrary("Be"), 1);
m_Material[Name] = material;
return material;
}
else if (Name == "Al") {
if (!density)
density = 2.702 * g / cm3;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment