Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
8f22f432
Commit
8f22f432
authored
1 year ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
FixedBinAxis w/o members
parent
089c8c8a
No related branches found
No related tags found
1 merge request
!1621
Scale (IAxis) now without children
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Base/Axis/FixedBinAxis.cpp
+0
-3
0 additions, 3 deletions
Base/Axis/FixedBinAxis.cpp
Base/Axis/FixedBinAxis.h
+0
-5
0 additions, 5 deletions
Base/Axis/FixedBinAxis.h
with
0 additions
and
8 deletions
Base/Axis/FixedBinAxis.cpp
+
0
−
3
View file @
8f22f432
...
...
@@ -36,9 +36,6 @@ std::vector<Bin1D> bounds2bins(size_t N, double start, double end)
FixedBinAxis
::
FixedBinAxis
(
const
std
::
string
&
name
,
size_t
nbins
,
double
start
,
double
end
)
:
IAxis
(
name
,
bounds2bins
(
nbins
,
start
,
end
))
,
m_nbins
(
nbins
)
,
m_start
(
start
)
,
m_end
(
end
)
{
}
...
...
This diff is collapsed.
Click to expand it.
Base/Axis/FixedBinAxis.h
+
0
−
5
View file @
8f22f432
...
...
@@ -27,11 +27,6 @@ public:
//! @param start low edge of first bin
//! @param end upper edge of last bin
FixedBinAxis
(
const
std
::
string
&
name
,
size_t
nbins
,
double
start
,
double
end
);
private:
size_t
m_nbins
;
double
m_start
;
double
m_end
;
};
IAxis
*
newFixedBinAxis
(
const
std
::
string
&
name
,
size_t
nbins
,
double
start
,
double
end
);
...
...
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