Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
examples
extended
optical
wls
include
WLSUserTrackInformation.hh
이 파일의 문서화 페이지로 가기
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: WLSUserTrackInformation.hh 99622 2016-09-29 10:16:04Z gcosmo $
27
//
30
//
31
32
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
33
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
34
35
#ifndef WLSUserTrackInformation_h
36
#define WLSUserTrackInformation_h 1
37
38
#include "
G4VUserTrackInformation.hh
"
39
40
#include "
G4ThreeVector.hh
"
41
42
enum
TrackStatus
{
undefined
=0,
43
left
=1,
right
=2,
defined
= 3,
44
EscapedFromSide
=4,
EscapedFromReadOut
=8,
45
ReflectedAtMirror
=16,
ReflectedAtReadOut
=32,
46
murderee
=64,
InsideOfFiber
=128,
OutsideOfFiber
=256};
47
48
/*TrackStatus:
49
undefined:
50
left: track is going -z
51
right: track is going +z
52
defined: left or right flag is on (Can't be Set)
53
EscapedFromSide: photon escaped through the side of the fiber
54
EscapedFromReadOut: photon escaped through the read-out end of the fiber
55
ReflectedAtMirror: photon has been reflected by the mirror at far end
56
ReflectedAtReadOut: photon has been reflected at the read-out end
57
murderee photon is artificially killed
58
InsideOfFiber Flag is on if the photon is inside of fiber
59
OutsideOfFiber Flag is on if the photon is outside of fiber
60
*/
61
62
class
WLSUserTrackInformation
:
public
G4VUserTrackInformation
63
{
64
65
public
:
66
67
WLSUserTrackInformation
();
68
virtual
~WLSUserTrackInformation
();
69
70
const
G4ThreeVector
&
GetExitPosition
()
const
{
return
fExitPosition
; }
71
void
SetExitPosition
(
const
G4ThreeVector
&
pos
) {
fExitPosition
=
pos
; }
72
73
// Try adding a status flag and return if it is successful or not
74
// Cannot Add Undefine or a flag that conflicts with another flag
75
// Return true if the addition of flag is successful, false otherwise
76
G4bool
AddStatusFlag
(
TrackStatus
s
);
77
78
// Check if a certain flag is on
79
G4bool
IsStatus
(
TrackStatus
s
)
80
{
return
s ==
undefined
? !(
fStatus
&=
defined
) :
fStatus
& s; }
81
82
private
:
83
84
G4int
fStatus
;
85
G4ThreeVector
fExitPosition
;
86
87
};
88
89
#endif
right
Definition:
F04UserTrackInformation.hh:37
ReflectedAtMirror
Definition:
WLSUserTrackInformation.hh:45
EscapedFromReadOut
Definition:
WLSUserTrackInformation.hh:44
pos
static const G4double pos
Definition:
G4ElectroNuclearCrossSection.cc:66
WLSUserTrackInformation::fStatus
G4int fStatus
Definition:
WLSUserTrackInformation.hh:84
WLSUserTrackInformation::WLSUserTrackInformation
WLSUserTrackInformation()
Definition:
WLSUserTrackInformation.cc:39
InsideOfFiber
Definition:
WLSUserTrackInformation.hh:46
defined
Definition:
WLSUserTrackInformation.hh:43
WLSUserTrackInformation::IsStatus
G4bool IsStatus(TrackStatus s)
Definition:
WLSUserTrackInformation.hh:79
TrackStatus
TrackStatus
Definition:
F04UserTrackInformation.hh:37
s
const XML_Char * s
Definition:
expat.h:262
G4bool
bool G4bool
Definition:
G4Types.hh:79
WLSUserTrackInformation::~WLSUserTrackInformation
virtual ~WLSUserTrackInformation()
Definition:
WLSUserTrackInformation.cc:47
EscapedFromSide
Definition:
WLSUserTrackInformation.hh:44
WLSUserTrackInformation::fExitPosition
G4ThreeVector fExitPosition
Definition:
WLSUserTrackInformation.hh:85
G4VUserTrackInformation.hh
G4VUserTrackInformation
Definition:
G4VUserTrackInformation.hh:60
WLSUserTrackInformation::SetExitPosition
void SetExitPosition(const G4ThreeVector &pos)
Definition:
WLSUserTrackInformation.hh:71
undefined
Definition:
F04UserTrackInformation.hh:37
WLSUserTrackInformation
Definition:
WLSUserTrackInformation.hh:62
G4ThreeVector.hh
CLHEP::Hep3Vector
Definition:
ThreeVector.h:41
G4int
int G4int
Definition:
G4Types.hh:78
left
Definition:
F04UserTrackInformation.hh:37
OutsideOfFiber
Definition:
WLSUserTrackInformation.hh:46
murderee
Definition:
WLSUserTrackInformation.hh:46
WLSUserTrackInformation::GetExitPosition
const G4ThreeVector & GetExitPosition() const
Definition:
WLSUserTrackInformation.hh:70
ReflectedAtReadOut
Definition:
WLSUserTrackInformation.hh:45
WLSUserTrackInformation::AddStatusFlag
G4bool AddStatusFlag(TrackStatus s)
Definition:
WLSUserTrackInformation.cc:51
다음에 의해 생성됨 :
1.8.5