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
4cd1a195
Commit
4cd1a195
authored
2 years ago
by
Mikhail Svechnikov
Browse files
Options
Downloads
Patches
Plain Diff
FitSuiteItem: rm unused func
parent
3ce5c31e
No related branches found
Branches containing commit
No related tags found
1 merge request
!1026
GUI: simplify access to SessionItem properties
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GUI/Model/Job/FitSuiteItem.cpp
+0
-10
0 additions, 10 deletions
GUI/Model/Job/FitSuiteItem.cpp
GUI/Model/Job/FitSuiteItem.h
+0
-2
0 additions, 2 deletions
GUI/Model/Job/FitSuiteItem.h
with
0 additions
and
12 deletions
GUI/Model/Job/FitSuiteItem.cpp
+
0
−
10
View file @
4cd1a195
...
@@ -68,11 +68,6 @@ void FitSuiteItem::setUpdateInterval(const int interval)
...
@@ -68,11 +68,6 @@ void FitSuiteItem::setUpdateInterval(const int interval)
emit
updateIntervalChanged
(
interval
);
emit
updateIntervalChanged
(
interval
);
}
}
bool
FitSuiteItem
::
isUpdateIntervalPropertyName
(
const
QString
&
name
)
{
return
name
==
P_UPDATE_INTERVAL
;
}
int
FitSuiteItem
::
iterationCount
()
const
int
FitSuiteItem
::
iterationCount
()
const
{
{
return
getItemValue
(
P_ITERATION_COUNT
).
toInt
();
return
getItemValue
(
P_ITERATION_COUNT
).
toInt
();
...
@@ -84,11 +79,6 @@ void FitSuiteItem::setIterationCount(const int count)
...
@@ -84,11 +79,6 @@ void FitSuiteItem::setIterationCount(const int count)
emit
iterationCountChanged
(
count
);
emit
iterationCountChanged
(
count
);
}
}
bool
FitSuiteItem
::
isIterationCountPropertyName
(
const
QString
&
name
)
{
return
name
==
P_ITERATION_COUNT
;
}
double
FitSuiteItem
::
chi2
()
const
double
FitSuiteItem
::
chi2
()
const
{
{
return
getItemValue
(
P_CHI2
).
toDouble
();
return
getItemValue
(
P_CHI2
).
toDouble
();
...
...
This diff is collapsed.
Click to expand it.
GUI/Model/Job/FitSuiteItem.h
+
0
−
2
View file @
4cd1a195
...
@@ -42,11 +42,9 @@ public:
...
@@ -42,11 +42,9 @@ public:
int
updateInterval
()
const
;
int
updateInterval
()
const
;
void
setUpdateInterval
(
int
interval
);
void
setUpdateInterval
(
int
interval
);
static
bool
isUpdateIntervalPropertyName
(
const
QString
&
name
);
int
iterationCount
()
const
;
int
iterationCount
()
const
;
void
setIterationCount
(
int
count
);
void
setIterationCount
(
int
count
);
static
bool
isIterationCountPropertyName
(
const
QString
&
name
);
double
chi2
()
const
;
double
chi2
()
const
;
void
setChi2
(
double
chi2
);
void
setChi2
(
double
chi2
);
...
...
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