Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
examples
extended
eventgenerator
GunGPS
src
examples/extended/eventgenerator/GunGPS/src/DetectorConstruction.cc
이 파일의 문서화 페이지로 가기
1
//
2
// ********************************************************************
3
// * License and Disclaimer *
4
// * *
5
// * The Geant4 software is copyright of the Copyright Holders of *
6
// * the Geant4 Collaboration. It is provided under the terms and *
7
// * conditions of the Geant4 Software License, included in the file *
8
// * LICENSE and available at http://cern.ch/geant4/license . These *
9
// * include a list of copyright holders. *
10
// * *
11
// * Neither the authors of this software system, nor their employing *
12
// * institutes,nor the agencies providing financial support for this *
13
// * work make any representation or warranty, express or implied, *
14
// * regarding this software system or assume any liability for its *
15
// * use. Please see the license in the file LICENSE and URL above *
16
// * for the full disclaimer and the limitation of liability. *
17
// * *
18
// * This code implementation is the result of the scientific and *
19
// * technical work of the GEANT4 collaboration. *
20
// * By using, copying, modifying or distributing the software (or *
21
// * any work based on the software) you agree to acknowledge its *
22
// * use in resulting scientific publications, and indicate your *
23
// * acceptance of all terms of the Geant4 Software license. *
24
// ********************************************************************
25
//
28
//
29
//
30
// $Id: DetectorConstruction.cc 68734 2013-04-05 09:47:02Z gcosmo $
31
//
32
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34
35
#include "DetectorConstruction.hh"
36
37
#include "
G4NistManager.hh
"
38
#include "
G4Box.hh
"
39
#include "
G4LogicalVolume.hh
"
40
#include "
G4PVPlacement.hh
"
41
#include "
G4SystemOfUnits.hh
"
42
43
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
44
45
DetectorConstruction::DetectorConstruction
()
46
:
G4VUserDetectorConstruction
(),fWorldSizeXY(0),fWorldSizeZ(0)
47
{
48
fWorldSizeXY
= 2*
cm
;
49
fWorldSizeZ
= 2*
cm
;
50
}
51
52
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
53
54
DetectorConstruction::~DetectorConstruction
()
55
{}
56
57
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
58
59
G4VPhysicalVolume
*
DetectorConstruction::Construct
()
60
{
61
//
62
// define a material
63
//
64
G4Material
* Air =
65
G4NistManager::Instance
()->
FindOrBuildMaterial
(
"G4_AIR"
);
66
67
//
68
// World
69
//
70
G4Box
*
71
solidWorld =
new
G4Box
(
"World"
,
//its name
72
fWorldSizeXY
/2,
fWorldSizeXY
/2,
fWorldSizeZ
/2);
//its size
73
74
G4LogicalVolume
*
75
logicWorld =
new
G4LogicalVolume
(solidWorld,
//its solid
76
Air,
//its material
77
"World"
);
//its name
78
G4VPhysicalVolume
*
79
physiWorld =
new
G4PVPlacement
(0,
//no rotation
80
G4ThreeVector
(),
//at (0,0,0)
81
logicWorld,
//its logical volume
82
"World"
,
//its name
83
0,
//its mother volume
84
false
,
//no boolean operation
85
0);
//copy number
86
87
//
88
//always return the physical World
89
//
90
return
physiWorld;
91
}
92
93
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
DetectorConstruction::~DetectorConstruction
~DetectorConstruction()
Definition:
environments/g4py/examples/demos/TestEm0/module/DetectorConstruction.cc:65
G4ThreeVector
CLHEP::Hep3Vector G4ThreeVector
Definition:
G4ThreeVector.hh:42
G4Material
Definition:
G4Material.hh:121
DetectorConstruction::Construct
G4VPhysicalVolume * Construct()
Definition:
environments/g4py/examples/demos/TestEm0/module/DetectorConstruction.cc:70
G4Box
Definition:
G4Box.hh:64
G4NistManager::FindOrBuildMaterial
G4Material * FindOrBuildMaterial(const G4String &name, G4bool isotopes=true, G4bool warning=false)
Definition:
G4NistManager.hh:478
G4SystemOfUnits.hh
G4Box.hh
DetectorConstruction::fWorldSizeZ
G4double fWorldSizeZ
Definition:
examples/advanced/microbeam/include/DetectorConstruction.hh:103
G4LogicalVolume.hh
G4PVPlacement.hh
DetectorConstruction::fWorldSizeXY
G4double fWorldSizeXY
Definition:
examples/advanced/microbeam/include/DetectorConstruction.hh:102
DetectorConstruction::DetectorConstruction
DetectorConstruction()
Definition:
environments/g4py/examples/demos/TestEm0/module/DetectorConstruction.cc:54
G4PVPlacement
Definition:
G4PVPlacement.hh:51
G4LogicalVolume
Definition:
G4LogicalVolume.hh:190
G4VPhysicalVolume
Definition:
G4VPhysicalVolume.hh:82
cm
static constexpr double cm
Definition:
G4SIunits.hh:119
G4VUserDetectorConstruction
Definition:
G4VUserDetectorConstruction.hh:50
G4NistManager.hh
G4NistManager::Instance
static G4NistManager * Instance()
Definition:
G4NistManager.cc:71
다음에 의해 생성됨 :
1.8.5