Geant4
10.03.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
WLSUserTrackInformation.hh
Go to the documentation of this file.
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
CLHEP::Hep3Vector
Definition:
ThreeVector.h:41
TrackStatus
TrackStatus
Definition:
F04UserTrackInformation.hh:37
right
Definition:
F04UserTrackInformation.hh:37
WLSUserTrackInformation::AddStatusFlag
G4bool AddStatusFlag(TrackStatus s)
Definition:
WLSUserTrackInformation.cc:51
undefined
Definition:
F04UserTrackInformation.hh:37
WLSUserTrackInformation::SetExitPosition
void SetExitPosition(const G4ThreeVector &pos)
Definition:
WLSUserTrackInformation.hh:71
G4VUserTrackInformation
Definition:
G4VUserTrackInformation.hh:60
G4VUserTrackInformation.hh
OutsideOfFiber
Definition:
WLSUserTrackInformation.hh:46
WLSUserTrackInformation::IsStatus
G4bool IsStatus(TrackStatus s)
Definition:
WLSUserTrackInformation.hh:79
murderee
Definition:
WLSUserTrackInformation.hh:46
InsideOfFiber
Definition:
WLSUserTrackInformation.hh:46
EscapedFromSide
Definition:
WLSUserTrackInformation.hh:44
G4int
int G4int
Definition:
G4Types.hh:78
s
const XML_Char * s
Definition:
expat.h:262
ReflectedAtMirror
Definition:
WLSUserTrackInformation.hh:45
WLSUserTrackInformation::WLSUserTrackInformation
WLSUserTrackInformation()
Definition:
WLSUserTrackInformation.cc:39
G4bool
bool G4bool
Definition:
G4Types.hh:79
WLSUserTrackInformation
Definition:
WLSUserTrackInformation.hh:62
EscapedFromReadOut
Definition:
WLSUserTrackInformation.hh:44
WLSUserTrackInformation::GetExitPosition
const G4ThreeVector & GetExitPosition() const
Definition:
WLSUserTrackInformation.hh:70
G4ThreeVector.hh
ReflectedAtReadOut
Definition:
WLSUserTrackInformation.hh:45
pos
static const G4double pos
Definition:
G4ElectroNuclearCrossSection.cc:66
defined
Definition:
WLSUserTrackInformation.hh:43
WLSUserTrackInformation::~WLSUserTrackInformation
virtual ~WLSUserTrackInformation()
Definition:
WLSUserTrackInformation.cc:47
left
Definition:
F04UserTrackInformation.hh:37
source
geant4.10.03.p02
examples
extended
optical
wls
include
WLSUserTrackInformation.hh
Generated on Tue Nov 28 2017 21:43:16 for Geant4 by
1.8.5