BOSS
7.0.4
BESIII Offline Software System
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
x
z
Typedefs
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
v
Enumerations
_
e
f
g
h
i
l
m
o
p
r
s
t
Enumerator
a
b
c
d
e
f
i
k
l
m
n
o
p
r
s
t
u
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
v
w
Enumerations
b
c
d
e
f
g
h
i
k
l
m
n
p
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
w
x
Files
File List
File Members
All
!
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
!
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
!
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
w
z
Enumerations
d
e
g
h
p
r
s
t
Enumerator
a
b
c
d
e
f
g
h
i
k
m
n
o
p
r
s
t
u
w
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
Muc/MucGeoCreateAlg/MucGeoCreateAlg-00-01-00/MucGeoCreateAlg/MucRpc.h
Go to the documentation of this file.
1
//------------------------------------------------------------------------------|
2
// [File ]: MucRpc.h |
3
// [Brief ]: Head file of MUC geometry Rpc class |
4
// [Author]: Xie Yuguang, <ygxie@mail.ihep.ac.cn> |
5
// [Date ]: May 22, 2005 |
6
//------------------------------------------------------------------------------|
7
8
#ifndef MUC_RPC_H
9
#define MUC_RPC_H
10
11
#include<iostream>
12
13
#include "MucGeoCreateAlg/MucEntity.h"
14
#include "MucGeoCreateAlg/MucRpc.h"
15
#include "MucGeoCreateAlg/MucGas.h"
16
#include "MucGeoCreateAlg/MucBakelite.h"
17
18
using namespace
std
;
19
20
class
MucRpc
:
public
MucEntity
21
{
22
public
:
23
MucRpc
(
int
part,
int
segment,
int
layer,
int
upDown,
int
id
);
24
MucRpc
(
const
MucRpc
&other );
25
MucRpc
&
operator =
(
const
MucRpc
&other );
26
virtual
~MucRpc
();
27
28
double
GetPhi
();
29
MucGas
*
GetGas
();
30
MucBakelite
*
GetBakelite
(
int
id
);
31
32
// virtual void SetAlignment( double dx, double dy, double dz );
33
34
protected
:
35
virtual
void
Init
();
36
37
void
SetPhi
();
38
virtual
void
SetTheta
();
39
virtual
void
SetRc
();
40
virtual
void
SetRin
();
41
virtual
void
SetRout
();
42
43
virtual
void
SetThin
();
44
virtual
void
SetW
();
45
virtual
void
SetH
();
46
virtual
void
SetL
();
47
virtual
void
SetWu
();
48
virtual
void
SetWd
();
49
50
int
SetEndcapRpcInBes
();
51
int
SetBarrelRpcInLoc
();
52
53
virtual
void
SetLocOrgInBes
();
54
virtual
void
SetObjOrgInBes
();
55
virtual
void
SetObjOrgInLoc
();
56
57
private
:
58
59
double
m_Phi;
// inclination angle of BES x axis and Loc x axis
60
MucGas
* m_MucGas;
61
MucBakelite
* m_MucBakelite;
62
63
};
64
65
#endif
66
MucBakelite
Definition:
InstallArea/include/MucGeoCreateAlg/MucGeoCreateAlg/MucBakelite.h:19
MucEntity
Definition:
InstallArea/include/MucGeoCreateAlg/MucGeoCreateAlg/MucEntity.h:19
MucGas
Definition:
InstallArea/include/MucGeoCreateAlg/MucGeoCreateAlg/MucGas.h:19
MucRpc
Definition:
InstallArea/include/MucGeoCreateAlg/MucGeoCreateAlg/MucRpc.h:21
MucRpc::GetPhi
double GetPhi()
MucRpc::GetGas
MucGas * GetGas()
MucRpc::operator=
MucRpc & operator=(const MucRpc &other)
Definition:
MucRpc.cxx:34
MucRpc::SetL
virtual void SetL()
MucRpc::SetObjOrgInBes
virtual void SetObjOrgInBes()
MucRpc::SetRout
virtual void SetRout()
MucRpc::SetH
virtual void SetH()
MucRpc::SetPhi
void SetPhi()
MucRpc::SetBarrelRpcInLoc
int SetBarrelRpcInLoc()
MucRpc::SetLocOrgInBes
virtual void SetLocOrgInBes()
MucRpc::SetRc
virtual void SetRc()
MucRpc::MucRpc
MucRpc(const MucRpc &other)
MucRpc::Init
virtual void Init()
MucRpc::SetRin
virtual void SetRin()
MucRpc::SetEndcapRpcInBes
int SetEndcapRpcInBes()
MucRpc::~MucRpc
virtual ~MucRpc()
MucRpc::SetW
virtual void SetW()
MucRpc::SetWd
virtual void SetWd()
MucRpc::SetTheta
virtual void SetTheta()
MucRpc::GetBakelite
MucBakelite * GetBakelite(int id)
MucRpc::SetObjOrgInLoc
virtual void SetObjOrgInLoc()
MucRpc::SetThin
virtual void SetThin()
MucRpc::MucRpc
MucRpc(int part, int segment, int layer, int upDown, int id)
MucRpc::SetWu
virtual void SetWu()
std
Definition:
Event/RootEventData/RootEventData-00-03-80/RootEventData/RootEventData_rootcint.cxx:16
source
Muc
MucGeoCreateAlg
MucGeoCreateAlg-00-01-00
MucGeoCreateAlg
MucRpc.h
Generated by
1.9.6