Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
examples
extended
radioactivedecay
rdecay01
src
examples/extended/radioactivedecay/rdecay01/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
// $Id: DetectorConstruction.cc 98257 2016-07-04 17:39:46Z gcosmo $
30
//
31
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33
34
#include "DetectorConstruction.hh"
35
36
#include "
G4NistManager.hh
"
37
#include "
G4Box.hh
"
38
#include "
G4LogicalVolume.hh
"
39
#include "
G4PVPlacement.hh
"
40
#include "
G4SystemOfUnits.hh
"
41
42
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43
44
DetectorConstruction::DetectorConstruction
()
45
:
G4VUserDetectorConstruction
()
46
{
47
fWorldSize
= 20*
mm
;
48
}
49
50
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
51
52
DetectorConstruction::~DetectorConstruction
()
53
{}
54
55
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
56
57
G4VPhysicalVolume
*
DetectorConstruction::Construct
()
58
{
59
//
60
// define a material
61
//
62
G4Material
* Air =
63
G4NistManager::Instance
()->
FindOrBuildMaterial
(
"G4_AIR"
);
64
65
//
66
// World
67
//
68
G4Box
*
69
solidWorld =
new
G4Box
(
"World"
,
//its name
70
fWorldSize
/2,
fWorldSize
/2,
fWorldSize
/2);
//its size
71
72
G4LogicalVolume
*
73
logicWorld =
new
G4LogicalVolume
(solidWorld,
//its solid
74
Air,
//its material
75
"World"
);
//its name
76
G4VPhysicalVolume
*
77
physiWorld =
new
G4PVPlacement
(0,
//no rotation
78
G4ThreeVector
(),
//at (0,0,0)
79
logicWorld,
//its logical volume
80
"World"
,
//its name
81
0,
//its mother volume
82
false
,
//no boolean operation
83
0);
//copy number
84
85
//
86
//always return the physical World
87
//
88
return
physiWorld;
89
}
90
91
//....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
DetectorConstruction::fWorldSize
G4double fWorldSize
Definition:
examples/extended/electromagnetic/TestEm15/include/DetectorConstruction.hh:81
mm
static constexpr double mm
Definition:
G4SIunits.hh:115
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
G4LogicalVolume.hh
G4PVPlacement.hh
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
G4VUserDetectorConstruction
Definition:
G4VUserDetectorConstruction.hh:50
G4NistManager.hh
G4NistManager::Instance
static G4NistManager * Instance()
Definition:
G4NistManager.cc:71
다음에 의해 생성됨 :
1.8.5