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
fcdd6190
Commit
fcdd6190
authored
1 year ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
for backward compatibility
parent
e35f4c00
No related branches found
Branches containing commit
No related tags found
1 merge request
!2189
Detector2D now parameterized through width and center in phi,alpha (#854)
Pipeline
#122128
failed
1 year ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
GUI/Model/Descriptor/SpanProperty.cpp
+4
-2
4 additions, 2 deletions
GUI/Model/Descriptor/SpanProperty.cpp
with
4 additions
and
2 deletions
GUI/Model/Descriptor/SpanProperty.cpp
+
4
−
2
View file @
fcdd6190
...
...
@@ -22,7 +22,9 @@ namespace Tag {
const
QString
Nbins
(
"Nbins"
);
const
QString
Width
(
"Width"
);
const
QString
Center
(
"Center"
);
const
QString
ExpandGroupbox
(
"ExpandGroupbox"
);
// obsolete since v22.0
const
QString
Min
(
"Min"
);
// from AxisProperty pre v22
const
QString
Max
(
"Max"
);
// from AxisProperty pre v22
const
QString
ExpandGroupbox
(
"ExpandGroupbox"
);
// from AxisProperty pre v22
}
// namespace Tag
}
// namespace
...
...
@@ -48,7 +50,7 @@ Scale SpanProperty::createAxis(const std::string& name) const
void
SpanProperty
::
writeTo
(
QXmlStreamWriter
*
w
)
const
{
XML
::
writeAttribute
(
w
,
XML
::
Attrib
::
version
,
uint
(
2
));
XML
::
writeAttribute
(
w
,
XML
::
Attrib
::
version
,
uint
(
3
));
// forked from AxesProperty v3
// nbins
w
->
writeStartElement
(
Tag
::
Nbins
);
...
...
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