Skip to content
Snippets Groups Projects
Commit 72fa99a4 authored by jwspence's avatar jwspence
Browse files

Implemented Pb pilot detector geometry

parent 8ce44110
Branches pilot
No related tags found
No related merge requests found
......@@ -186,7 +186,7 @@ void DetectorConstruction::DefineMaterials()
G4VPhysicalVolume* DetectorConstruction::DefineVolumes()
{
// Geometry parameters
fNofLayers = 1000; // temporary
fNofLayers = 100; // Pilot
G4double absoThickness = 1.*mm;
G4double emulThickness = 0.05*mm;
G4double baseThickness = 0.20*mm;
......@@ -212,8 +212,8 @@ G4VPhysicalVolume* DetectorConstruction::DefineVolumes()
// Get materials
auto defaultMaterial = G4Material::GetMaterial("Galactic");
auto absorberMaterial = G4Material::GetMaterial("G4_W"); //Tungsten
//auto absorberMaterial = G4Material::GetMaterial("G4_Pb"); //Lead
//auto absorberMaterial = G4Material::GetMaterial("G4_W"); //Tungsten
auto absorberMaterial = G4Material::GetMaterial("G4_Pb"); //Lead
auto emulsionMaterial = G4Material::GetMaterial("EmulsionMaterial");
auto baseMaterial = G4Material::GetMaterial("BaseMaterial");
auto sctMaterial = G4Material::GetMaterial("G4_Si"); //Silicon
......@@ -387,7 +387,7 @@ G4VPhysicalVolume* DetectorConstruction::DefineVolumes()
defaultMaterial, // its material
"Station"); // its name
new G4PVPlacement(
/* new G4PVPlacement(
0, // no rotation
G4ThreeVector(0., 0., calorThickness/2),
stationLV, // its logical volume
......@@ -396,7 +396,7 @@ G4VPhysicalVolume* DetectorConstruction::DefineVolumes()
false, // no boolean operation
0, // copy number
fCheckOverlaps); // checking overlaps
*/
//
// Plane
//
......
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