Import Geant4 5.0.0 source tree
This commit is contained in:
@@ -1,3 +1,26 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * 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. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// Window - AIR + glass ************************************************
|
||||
|
||||
G4double glassThick = 3.0*mm;
|
||||
@@ -65,12 +88,13 @@
|
||||
|
||||
// panel hole in wall between Al and "lab": ******************************
|
||||
|
||||
G4double panelholePosX = sidepanelPosX;
|
||||
G4double panelholePosY = 0.5*(worldLength - holeThick) - panelThick;
|
||||
G4double panelholePosZ = sidepanelPosZ;
|
||||
G4double panelholePosX = sidepanelPosX;
|
||||
G4double panelholeThick = wallThick - panelThick;
|
||||
G4double panelholePosY = 0.5*(worldLength - panelholeThick) - panelThick;
|
||||
G4double panelholePosZ = sidepanelPosZ;
|
||||
|
||||
G4Box* panelhole_box = new G4Box
|
||||
("panelhole_box",0.5*sidepanelWidth, 0.5*holeThick, 0.5*windowHeight );
|
||||
("panelhole_box",0.5*sidepanelWidth, 0.5*panelholeThick, 0.5*windowHeight );
|
||||
panelhole_log = new G4LogicalVolume
|
||||
(panelhole_box, lab_mat, "panelhole_log");
|
||||
|
||||
@@ -105,11 +129,11 @@
|
||||
// door hole in wall between glass and "lab": ******************************
|
||||
|
||||
G4double doorwindowPosX = doorglassPosX;
|
||||
G4double doorwindowPosY = 0.5*(worldLength - holeThick) - panelThick;
|
||||
G4double doorwindowPosY = 0.5*(worldLength - panelholeThick) - panelThick;
|
||||
G4double doorwindowPosZ = doorglassPosZ;
|
||||
|
||||
G4Box* doorwindow_box = new G4Box
|
||||
("doorwindow_box",0.5*doorwindowWidth, 0.5*holeThick, 0.5*doorwindowHeight );
|
||||
("doorwindow_box",0.5*doorwindowWidth, 0.5*panelholeThick, 0.5*doorwindowHeight );
|
||||
doorwindow_log = new G4LogicalVolume
|
||||
(doorwindow_box, lab_mat, "doorwindow_log");
|
||||
doorwindow_phys = new G4PVPlacement
|
||||
|
||||
Reference in New Issue
Block a user