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
Haoyu Shi
CEPCSW
Commits
7401c2da
"README" did not exist on "066451fe7d54a44d692329a26075386a40819341"
Commit
7401c2da
authored
3 weeks ago
by
guofangyi@ihep.ac.cn
Committed by
lintao@ihep.ac.cn
3 weeks ago
Browse files
Options
Downloads
Patches
Plain Diff
Update PFA reclustering parameters & correct PFO energy with mass hypothesis
parent
604c6d09
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
Reconstruction/RecPFACyber/src/Algorithm/PFOReclusteringAlg.cpp
+2
-2
2 additions, 2 deletions
...truction/RecPFACyber/src/Algorithm/PFOReclusteringAlg.cpp
Reconstruction/RecPFACyber/src/Tools/OutputCreator.cpp
+2
-2
2 additions, 2 deletions
Reconstruction/RecPFACyber/src/Tools/OutputCreator.cpp
with
4 additions
and
4 deletions
Reconstruction/RecPFACyber/src/Algorithm/PFOReclusteringAlg.cpp
+
2
−
2
View file @
7401c2da
...
...
@@ -17,8 +17,8 @@ StatusCode PFOReclusteringAlg::ReadSettings(Settings& m_settings){
if
(
settings
.
map_floatPars
.
find
(
"SplitSigma"
)
==
settings
.
map_floatPars
.
end
())
settings
.
map_floatPars
[
"SplitSigma"
]
=
0.2
;
if
(
settings
.
map_floatPars
.
find
(
"NeutralMergeSigma"
)
==
settings
.
map_floatPars
.
end
())
settings
.
map_floatPars
[
"NeutralMergeSigma"
]
=
0.
;
if
(
settings
.
map_floatPars
.
find
(
"VirtualMergeSigma"
)
==
settings
.
map_floatPars
.
end
())
settings
.
map_floatPars
[
"VirtualMergeSigma"
]
=
0.4
;
if
(
settings
.
map_floatPars
.
find
(
"MinAngleForNeuMerge"
)
==
settings
.
map_floatPars
.
end
())
settings
.
map_floatPars
[
"MinAngleForNeuMerge"
]
=
0.
20
;
if
(
settings
.
map_floatPars
.
find
(
"MinAngleForVirMerge"
)
==
settings
.
map_floatPars
.
end
())
settings
.
map_floatPars
[
"MinAngleForVirMerge"
]
=
0.2
4
;
if
(
settings
.
map_floatPars
.
find
(
"MinAngleForNeuMerge"
)
==
settings
.
map_floatPars
.
end
())
settings
.
map_floatPars
[
"MinAngleForNeuMerge"
]
=
0.
18
;
if
(
settings
.
map_floatPars
.
find
(
"MinAngleForVirMerge"
)
==
settings
.
map_floatPars
.
end
())
settings
.
map_floatPars
[
"MinAngleForVirMerge"
]
=
0.2
0
;
return
StatusCode
::
SUCCESS
;
...
...
This diff is collapsed.
Click to expand it.
Reconstruction/RecPFACyber/src/Tools/OutputCreator.cpp
+
2
−
2
View file @
7401c2da
...
...
@@ -160,8 +160,8 @@ namespace Cyber{
TVector3
p3vec
=
vec_trks
[
trkIndex
]
->
getP3
();
edm4hep
::
Vector3f
p3
(
p3vec
.
x
(),
p3vec
.
y
(),
p3vec
.
z
());
m_pfo
.
setMomentum
(
p3
);
m_pfo
.
set
Energy
(
vec_trks
[
trkIndex
]
->
getMomentum
()
);
m_pfo
.
set
Mass
(
139.57039
);
//TODO: all charged particles are set to pion mass.
m_pfo
.
set
Mass
(
0.139570
);
//TODO: all charged particles are set to pion mass.
m_pfo
.
set
Energy
(
sqrt
(
vec_trks
[
trkIndex
]
->
getMomentum
()
*
vec_trks
[
trkIndex
]
->
getMomentum
()
+
0.139570
*
0.139570
)
);
}
else
{
TVector3
p3vec
=
vec_Pos
*
(
(
EcalClusE
+
HcalClusE
)
/
vec_Pos
.
Mag
()
);
...
...
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