Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Automate
Agent sessions
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!41297
Sweep: Make MM Threshold Striplength Dependent
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Sweep: Make MM Threshold Striplength Dependent
pscholer/athena:thresholdVsStripLength_master
into
master
Overview
3
Commits
1
Pipelines
1
Changes
5
Merged
Sweep: Make MM Threshold Striplength Dependent
Patrick Scholer
requested to merge
pscholer/athena:thresholdVsStripLength_master
into
master
Mar 4, 2021
Overview
3
Commits
1
Pipelines
1
Changes
5
Make MM threshold strip length dependent
See merge request
!41091 (merged)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
fba7c1ed
1 commit,
Mar 4, 2021
5 files
+
104
−
35
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
MuonSpectrometer/MuonDigitization/MM_Digitization/MM_Digitization/MM_DigitizationTool.h
+
6
−
0
View file @ fba7c1ed
Edit in single-file editor
Open in Web IDE
Show full file
@@ -173,6 +173,9 @@ class MM_DigitizationTool : public PileUpToolBase {
// Temporary until moving away from TRandom
Gaudi
::
Property
<
unsigned
long
int
>
m_randomSeed
{
this
,
"RandomSeed"
,
42
,
""
};
Gaudi
::
Property
<
bool
>
m_useThresholdScaling
{
this
,
"useThresholdScaling"
,
true
,
"Use a strip length dependent threshold in MM digitiation"
};
Gaudi
::
Property
<
float
>
m_thresholdScaleFactor
{
this
,
"thresholdScaleFactor"
,
9.0
,
"Use x times the strip length dependent noise as MM threshold"
};
Gaudi
::
Property
<
double
>
m_correctShift
{
this
,
"correctShift"
,
-
0.244
,
"purely empirical shift to fix the z positions of clusters"
};
// 12/20 pscholer
TFile
*
m_file
{};
@@ -215,6 +218,9 @@ class MM_DigitizationTool : public PileUpToolBase {
std
::
vector
<
int
>
m_n_StrRespID
;
std
::
vector
<
float
>
m_n_StrRespCharge
;
std
::
vector
<
float
>
m_n_StrRespTime
;
float
m_noiseSlope
;
float
m_noiseIntercept
;
};
#endif // MM_DigitizationTool
Loading