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
ac98d49c
Commit
ac98d49c
authored
6 months ago
by
FU Chengdong
Browse files
Options
Downloads
Patches
Plain Diff
SIM:add time smear option for silicon
parent
c248f55d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Digitisers/SimpleDigi/src/PlanarDigiAlg.cpp
+7
-2
7 additions, 2 deletions
Digitisers/SimpleDigi/src/PlanarDigiAlg.cpp
Digitisers/SimpleDigi/src/PlanarDigiAlg.h
+2
-0
2 additions, 0 deletions
Digitisers/SimpleDigi/src/PlanarDigiAlg.h
with
9 additions
and
2 deletions
Digitisers/SimpleDigi/src/PlanarDigiAlg.cpp
+
7
−
2
View file @
ac98d49c
...
...
@@ -232,7 +232,7 @@ StatusCode PlanarDigiAlg::execute()
<<
" V[0] = "
<<
v_direction
[
0
]
<<
" V[1] = "
<<
v_direction
[
1
]
<<
endmsg
;
float
resU
(
0
),
resV
(
0
);
float
resU
(
0
),
resV
(
0
)
,
resT
(
0
)
;
if
(
!
_parameterize
)
{
if
(
(
_resU
.
size
()
>
1
&&
layer
>
_resU
.
size
()
-
1
)
||
(
_resV
.
size
()
>
1
&&
layer
>
_resV
.
size
()
-
1
)
)
{
...
...
@@ -260,6 +260,10 @@ StatusCode PlanarDigiAlg::execute()
resV
=
_parV
[
0
]
+
_parV
[
1
]
*
y
+
_parV
[
2
]
*
exp
(
-
_parV
[
9
]
*
y
)
*
cos
(
_parV
[
3
]
*
y
+
_parV
[
4
])
+
_parV
[
5
]
*
exp
(
-
0.5
*
pow
(((
y
-
_parV
[
6
])
/
_parV
[
7
]),
2
))
+
_parV
[
8
]
*
pow
(
y
,
0.5
);
}
// parameterize only for position now, todo
resT
=
(
_resT
.
size
()
>
1
?
_resT
.
value
().
at
(
layer
)
:
_resT
.
value
().
at
(
0
)
);
// from ps (input unit) to ns (record unit, Geant4)
resT
*=
CLHEP
::
ps
/
CLHEP
::
ns
;
debug
()
<<
" --- will smear hit with resU = "
<<
resU
<<
" and resV = "
<<
resV
<<
endmsg
;
...
...
@@ -380,7 +384,8 @@ StatusCode PlanarDigiAlg::execute()
trkHit
.
setType
(
UTIL
::
set_bit
(
trkHit
.
getType
()
,
UTIL
::
ILDTrkHitTypeBit
::
ONE_DIMENSIONAL
)
)
;
}
trkHit
.
setEDep
(
SimTHit
.
getEDep
()
);
trkHit
.
setTime
(
SimTHit
.
getTime
()
);
trkHit
.
setTime
(
SimTHit
.
getTime
()
+
gsl_ran_gaussian
(
_rng
,
resT
)
);
// make the relation
auto
rel
=
relCol
->
create
();
...
...
This diff is collapsed.
Click to expand it.
Digitisers/SimpleDigi/src/PlanarDigiAlg.h
+
2
−
0
View file @
ac98d49c
...
...
@@ -77,6 +77,8 @@ protected:
Gaudi
::
Property
<
FloatVec
>
_resU
{
this
,
"ResolutionU"
,
{
0.0040
}
};
// resolution in direction of v - either one per layer or one for all layers
Gaudi
::
Property
<
FloatVec
>
_resV
{
this
,
"ResolutionV"
,
{
0.0040
}
};
// resolution of t - either one per layer or one for all layers, unit - ps
Gaudi
::
Property
<
FloatVec
>
_resT
{
this
,
"ResolutionT"
,
{
0.
}
};
// whether hits are 1D strip hits
Gaudi
::
Property
<
bool
>
_isStrip
{
this
,
"IsStrip"
,
false
};
// whether use Planar tag for type and cov, if true, CEPCConf::TrkHitTypeBit::PLANAR bit is set as true
...
...
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