Geant4
11.1.1
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4UItokenNum.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
// G4UItokenNum
27
//
28
// Description:
29
//
30
// Namespace with enumerator of tokens
31
32
// Author: Makoto Asai, 1998
33
// --------------------------------------------------------------------
34
#ifndef G4UItokenNum_hh
35
#define G4UItokenNum_hh 1
36
37
#include "
globals.hh
"
38
39
namespace
G4UItokenNum
40
{
41
enum
tokenNum
42
{
43
NONE
= 0,
44
IDENTIFIER
= 257,
45
CONSTINT
= 258,
46
CONSTDOUBLE
= 259,
47
CONSTCHAR
= 260,
48
CONSTSTRING
= 261,
49
GT
= 262,
50
GE
= 263,
51
LT
= 264,
52
LE
= 265,
53
EQ
= 266,
54
NE
= 267,
55
// LOGICALNOT = 268,
56
CONSTLONG
= 268,
57
LOGICALOR
= 269,
58
LOGICALAND
= 270,
59
SCAREAMER
= 33,
60
LPAREN
= 40,
61
PLUS
= 43,
62
MINUS
= 45
63
};
64
65
using
yystype
=
struct
yystype
66
{
67
tokenNum
type{
tokenNum::NONE
};
68
G4double
D
{ 0.0 };
69
G4int
I
{ 0 };
70
G4long
L
{ 0 };
71
char
C
{
' '
};
72
G4String
S
;
73
74
yystype
()
75
:
S
(
""
)
76
{}
77
G4bool
operator==
(
const
yystype
& right)
const
{
return
this
== &right; }
78
yystype
&
operator=
(
const
yystype
& right)
79
{
80
if
(&right ==
this
)
81
{
82
return
*
this
;
83
}
84
type = right.type;
85
D
= right.D;
86
I
= right.I;
87
L
= right.L;
88
C
= right.C;
89
S
= right.S;
90
return
*
this
;
91
}
92
yystype
(
const
yystype
& right) { *
this
= right; }
93
};
94
}
// namespace G4UItokenNum
95
96
#endif
G4double
double G4double
Definition:
G4Types.hh:83
G4long
long G4long
Definition:
G4Types.hh:87
G4bool
bool G4bool
Definition:
G4Types.hh:86
G4int
int G4int
Definition:
G4Types.hh:85
G4String
Definition:
G4String.hh:62
globals.hh
G4UItokenNum
Definition:
G4UItokenNum.hh:40
G4UItokenNum::C
char C
Definition:
G4UItokenNum.hh:71
G4UItokenNum::I
G4int I
Definition:
G4UItokenNum.hh:69
G4UItokenNum::D
G4double D
Definition:
G4UItokenNum.hh:68
G4UItokenNum::yystype
yystype { tokenNum type{ tokenNum::NONE } yystype
Definition:
G4UItokenNum.hh:67
G4UItokenNum::S
G4String S
Definition:
G4UItokenNum.hh:72
G4UItokenNum::tokenNum
tokenNum
Definition:
G4UItokenNum.hh:42
G4UItokenNum::PLUS
@ PLUS
Definition:
G4UItokenNum.hh:61
G4UItokenNum::CONSTLONG
@ CONSTLONG
Definition:
G4UItokenNum.hh:56
G4UItokenNum::LT
@ LT
Definition:
G4UItokenNum.hh:51
G4UItokenNum::MINUS
@ MINUS
Definition:
G4UItokenNum.hh:62
G4UItokenNum::NONE
@ NONE
Definition:
G4UItokenNum.hh:43
G4UItokenNum::SCAREAMER
@ SCAREAMER
Definition:
G4UItokenNum.hh:59
G4UItokenNum::GT
@ GT
Definition:
G4UItokenNum.hh:49
G4UItokenNum::IDENTIFIER
@ IDENTIFIER
Definition:
G4UItokenNum.hh:44
G4UItokenNum::NE
@ NE
Definition:
G4UItokenNum.hh:54
G4UItokenNum::EQ
@ EQ
Definition:
G4UItokenNum.hh:53
G4UItokenNum::CONSTDOUBLE
@ CONSTDOUBLE
Definition:
G4UItokenNum.hh:46
G4UItokenNum::LOGICALAND
@ LOGICALAND
Definition:
G4UItokenNum.hh:58
G4UItokenNum::GE
@ GE
Definition:
G4UItokenNum.hh:50
G4UItokenNum::LE
@ LE
Definition:
G4UItokenNum.hh:52
G4UItokenNum::CONSTCHAR
@ CONSTCHAR
Definition:
G4UItokenNum.hh:47
G4UItokenNum::LPAREN
@ LPAREN
Definition:
G4UItokenNum.hh:60
G4UItokenNum::LOGICALOR
@ LOGICALOR
Definition:
G4UItokenNum.hh:57
G4UItokenNum::CONSTSTRING
@ CONSTSTRING
Definition:
G4UItokenNum.hh:48
G4UItokenNum::CONSTINT
@ CONSTINT
Definition:
G4UItokenNum.hh:45
G4UItokenNum::L
G4long L
Definition:
G4UItokenNum.hh:70
G4UItokenNum::operator=
yystype & operator=(const yystype &right)
Definition:
G4UItokenNum.hh:78
G4UItokenNum::operator==
G4bool operator==(const yystype &right) const
Definition:
G4UItokenNum.hh:77
geant4-v11.1.1
source
intercoms
include
G4UItokenNum.hh
Generated by
1.9.6