Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!63673
Clean up unused doLongPixels property in TotPixelClusterSplitter
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Clean up unused doLongPixels property in TotPixelClusterSplitter
tstreble/athena:TotPixelClusClean
into
23.0
Overview
3
Commits
1
Pipelines
1
Changes
2
Merged
Thomas Strebler
requested to merge
tstreble/athena:TotPixelClusClean
into
23.0
1 year ago
Overview
3
Commits
1
Pipelines
1
Changes
2
Expand
Self-explanatory
0
0
Merge request reports
Compare
23.0
23.0 (base)
and
latest version
latest version
918142fd
1 commit,
1 year ago
2 files
+
1
−
14
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
InnerDetector/InDetRecTools/SiClusterizationTool/SiClusterizationTool/TotPixelClusterSplitter.h
+
0
−
12
Options
@@ -58,11 +58,6 @@ namespace InDet
inline
void
setMinPixels
(
unsigned
int
minPix
);
inline
void
setMaxPixels
(
unsigned
int
maxPix
);
/** Use the value "true" to activate code that will handle long normal pixels as well as short normal pixels.
The current default value for m_doLongPixels is "true".
*/
inline
void
setDoLongPixels
(
bool
yesOrNo
);
private:
/** Determine a pixel's type. Even numbers have normal eta-pitch, odd numbers have long eta pitch.
@@ -95,8 +90,6 @@ namespace InDet
/** Maximum size of cluster for which splitting will be attempted. */
unsigned
int
m_maxPixels
;
/** Indicates whether or not to consider long pixels. */
bool
m_doLongPixels
;
};
inline
void
TotPixelClusterSplitter
::
setMinPixels
(
unsigned
int
minPix
)
@@ -111,11 +104,6 @@ namespace InDet
return
;
}
inline
void
TotPixelClusterSplitter
::
setDoLongPixels
(
bool
yesOrNo
)
{
m_doLongPixels
=
yesOrNo
;
return
;
}
}
#endif
Loading