Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CEPCSW
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
maxt@ihep.ac.cn
CEPCSW
Commits
d5600e3c
Commit
d5600e3c
authored
4 years ago
by
myliu@ihep.ac.cn
Browse files
Options
Downloads
Patches
Plain Diff
The default centimeter unit in DD4hep
parent
4679662a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Detector/DetSegmentation/DetSegmentation/GridDriftChamber.h
+3
-2
3 additions, 2 deletions
Detector/DetSegmentation/DetSegmentation/GridDriftChamber.h
Detector/DetSegmentation/src/GridDriftChamber.cpp
+2
-2
2 additions, 2 deletions
Detector/DetSegmentation/src/GridDriftChamber.cpp
with
5 additions
and
4 deletions
Detector/DetSegmentation/DetSegmentation/GridDriftChamber.h
+
3
−
2
View file @
d5600e3c
...
...
@@ -23,7 +23,7 @@ typedef struct Layer
double
eps
;
double
offset
;
Layer
(){};
Layer
(
double
x
,
double
y
,
double
z
,
double
k
)
:
layerphi
(
x
),
R
(
y
),
eps
(
z
),
offset
(
k
){}
;
Layer
(
double
x
,
double
y
,
double
z
,
double
k
)
:
layerphi
(
x
),
R
(
y
),
eps
(
z
),
offset
(
k
){}
bool
operator
<
(
const
Layer
&
a
)
const
{
return
layerphi
<
a
.
layerphi
;
...
...
@@ -46,7 +46,7 @@ public:
const
VolumeID
&
aVolumeID
)
const
;
virtual
double
distanceTrackWire
(
const
CellID
&
cID
,
const
TVector3
&
hit_start
/*, const TVector3& hit_end*/
)
const
;
double
phi
(
const
CellID
&
cID
)
const
;
//
double phi(const CellID& cID) const;
inline
double
cell_Size
()
const
{
return
m_cellSize
;
}
inline
double
epsilon0
()
const
{
return
m_epsilon0
;
}
inline
double
detectorLength
()
const
{
return
m_detectorLength
;
}
...
...
@@ -122,6 +122,7 @@ public:
protected
:
double
phi
(
const
CellID
&
cID
)
const
;
std
::
map
<
int
,
LAYER
>
layer_params
;
// <layer, {layerphi, R, eps, offset}>
std
::
map
<
int
,
std
::
vector
<
std
::
pair
<
TVector3
,
TVector3
>
>>
m_wiresPositions
;
// < layer, vec<WireMidpoint, WireDirection> >
...
...
This diff is collapsed.
Click to expand it.
Detector/DetSegmentation/src/GridDriftChamber.cpp
+
2
−
2
View file @
d5600e3c
...
...
@@ -81,8 +81,8 @@ double GridDriftChamber::distanceTrackWire(const CellID& cID, const TVector3& hi
double
phi_start
=
phi
(
cID
);
double
phi_end
=
phi_start
+
returnAlpha
();
TVector3
Wstart
=
10
*
returnWirePosition
(
phi_start
,
-
1
);
//
Convert from cm to mm
TVector3
Wend
=
10
*
returnWirePosition
(
phi_end
,
1
);
//
Convert from cm to mm
TVector3
Wstart
=
returnWirePosition
(
phi_start
,
-
1
);
//
The default centimeter unit in DD4hep
TVector3
Wend
=
returnWirePosition
(
phi_end
,
1
);
//
The default centimeter unit in DD4hep
// TVector3 a = hit_end - hit_start;
TVector3
b
=
Wend
-
Wstart
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment