Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
•
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
examples
extended
optical
LXe
src
LXePMTHit.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
//
26
// $Id: LXePMTHit.cc 110138 2018-05-16 07:31:43Z gcosmo $
27
//
30
//
31
//
32
#include "
LXePMTHit.hh
"
33
#include "
G4ios.hh
"
34
#include "
G4VVisManager.hh
"
35
#include "
G4Colour.hh
"
36
#include "
G4VisAttributes.hh
"
37
#include "
G4LogicalVolume.hh
"
38
#include "
G4VPhysicalVolume.hh
"
39
40
G4ThreadLocal
G4Allocator<LXePMTHit>
*
LXePMTHitAllocator
=0;
41
42
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43
44
LXePMTHit::LXePMTHit
()
45
: fPmtNumber(-1),fPhotons(0),fPhysVol(nullptr),fDrawit(false) {}
46
47
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
48
49
LXePMTHit::~LXePMTHit
() {}
50
51
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
52
53
LXePMTHit::LXePMTHit
(
const
LXePMTHit
&
right
) :
G4VHit
()
54
{
55
fPmtNumber
=right.
fPmtNumber
;
56
fPhotons
=right.
fPhotons
;
57
fPhysVol
=right.
fPhysVol
;
58
fDrawit
=right.
fDrawit
;
59
}
60
61
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
62
63
const
LXePMTHit
&
LXePMTHit::operator=
(
const
LXePMTHit
&
right
){
64
fPmtNumber
= right.
fPmtNumber
;
65
fPhotons
=right.
fPhotons
;
66
fPhysVol
=right.
fPhysVol
;
67
fDrawit
=right.
fDrawit
;
68
return
*
this
;
69
}
70
71
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
72
73
G4int
LXePMTHit::operator==
(
const
LXePMTHit
&
right
)
const
{
74
return
(
fPmtNumber
==right.
fPmtNumber
);
75
}
76
77
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
78
79
void
LXePMTHit::Draw
(){
80
if
(
fDrawit
&&
fPhysVol
){
//ReDraw only the PMTs that have hit counts > 0
81
//Also need a physical volume to be able to draw anything
82
G4VVisManager
* pVVisManager =
G4VVisManager::GetConcreteInstance
();
83
if
(pVVisManager){
//Make sure that the VisManager exists
84
G4VisAttributes
attribs(
G4Colour
(1.,0.,0.));
85
attribs.
SetForceSolid
(
true
);
86
G4RotationMatrix
rot;
87
if
(
fPhysVol
->
GetRotation
())
//If a rotation is defined use it
88
rot=*(
fPhysVol
->
GetRotation
());
89
G4Transform3D
trans(rot,
fPhysVol
->
GetTranslation
());
//Create transform
90
pVVisManager->
Draw
(*
fPhysVol
,attribs,trans);
//Draw it
91
}
92
}
93
}
94
95
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
96
97
void
LXePMTHit::Print
() {}
G4Colour.hh
right
Definition:
F04UserTrackInformation.hh:37
G4VVisManager::Draw
virtual void Draw(const G4Circle &, const G4Transform3D &objectTransformation=G4Transform3D())=0
HepGeom::Transform3D
Definition:
Transform3D.h:171
G4Colour
Definition:
G4Colour.hh:83
G4ios.hh
G4VHit
Definition:
G4VHit.hh:48
CLHEP::HepRotation
Definition:
Rotation.h:47
G4VVisManager
Definition:
G4VVisManager.hh:93
G4VPhysicalVolume::GetTranslation
const G4ThreeVector & GetTranslation() const
Definition:
G4VPhysicalVolume.cc:139
G4ThreadLocal
#define G4ThreadLocal
Definition:
tls.hh:69
LXePMTHit
Definition:
LXePMTHit.hh:48
G4VVisManager.hh
G4VVisManager::GetConcreteInstance
static G4VVisManager * GetConcreteInstance()
Definition:
G4VVisManager.cc:39
LXePMTHit::LXePMTHit
LXePMTHit()
Definition:
LXePMTHit.cc:44
LXePMTHit::operator==
G4int operator==(const LXePMTHit &right) const
Definition:
LXePMTHit.cc:73
G4VPhysicalVolume.hh
LXePMTHit::fDrawit
G4bool fDrawit
Definition:
LXePMTHit.hh:89
LXePMTHit::fPhotons
G4int fPhotons
Definition:
LXePMTHit.hh:86
G4VisAttributes
Definition:
G4VisAttributes.hh:69
G4VisAttributes::SetForceSolid
void SetForceSolid(G4bool=true)
Definition:
G4VisAttributes.cc:175
LXePMTHit::operator=
const LXePMTHit & operator=(const LXePMTHit &right)
Definition:
LXePMTHit.cc:63
G4LogicalVolume.hh
G4int
int G4int
Definition:
G4Types.hh:78
LXePMTHit::Draw
virtual void Draw()
Definition:
LXePMTHit.cc:79
LXePMTHit::~LXePMTHit
virtual ~LXePMTHit()
Definition:
LXePMTHit.cc:49
G4VisAttributes.hh
LXePMTHit::fPhysVol
G4VPhysicalVolume * fPhysVol
Definition:
LXePMTHit.hh:88
G4VPhysicalVolume::GetRotation
const G4RotationMatrix * GetRotation() const
Definition:
G4VPhysicalVolume.cc:149
LXePMTHitAllocator
G4ThreadLocal G4Allocator< LXePMTHit > * LXePMTHitAllocator
Definition:
LXePMTHit.cc:40
G4Allocator
Definition:
G4Allocator.hh:67
LXePMTHit.hh
Definition of the LXePMTHit class.
LXePMTHit::Print
virtual void Print()
Definition:
LXePMTHit.cc:97
LXePMTHit::fPmtNumber
G4int fPmtNumber
Definition:
LXePMTHit.hh:85
다음에 의해 생성됨 :
1.8.5