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
c47b5b26
Commit
c47b5b26
authored
8 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
ad-hoc repair for polmagcylinders2.py
parent
88ec7ee3
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Tests/Functional/PyCore/legacy/polmagcylinders2.py
+15
-5
15 additions, 5 deletions
Tests/Functional/PyCore/legacy/polmagcylinders2.py
Tests/Functional/PyCore/legacy/utils.py
+1
-2
1 addition, 2 deletions
Tests/Functional/PyCore/legacy/utils.py
with
16 additions
and
7 deletions
Tests/Functional/PyCore/legacy/polmagcylinders2.py
+
15
−
5
View file @
c47b5b26
...
@@ -5,7 +5,6 @@ import os
...
@@ -5,7 +5,6 @@ import os
import
numpy
import
numpy
import
gzip
import
gzip
from
utils
import
get_difference
from
utils
import
get_difference
from
utils
import
get_reference_data
from
libBornAgainCore
import
*
from
libBornAgainCore
import
*
...
@@ -51,6 +50,13 @@ def getSimulationIntensity(rho_beam, efficiency):
...
@@ -51,6 +50,13 @@ def getSimulationIntensity(rho_beam, efficiency):
return
simulation
.
getIntensityData
()
return
simulation
.
getIntensityData
()
# TODO: revert to some standard solution. For other tests, get_reference_data comes from utils.py.
def
get_reference_data
(
filename
):
"""
read and return reference data from file
"""
return
IntensityDataIOFactory
.
readIntensityData
(
"
@REFERENCE_DIR@/Special/
"
+
filename
)
# --------------------------------------------------------------
# --------------------------------------------------------------
# run test and analyse test results
# run test and analyse test results
# --------------------------------------------------------------
# --------------------------------------------------------------
...
@@ -63,10 +69,14 @@ def run_test():
...
@@ -63,10 +69,14 @@ def run_test():
# IntensityDataIOFactory.writeIntensityData(getSimulationIntensity(zmin, 1.0), 'polmagcylinders2_reference_10.int')
# IntensityDataIOFactory.writeIntensityData(getSimulationIntensity(zmin, 1.0), 'polmagcylinders2_reference_10.int')
# IntensityDataIOFactory.writeIntensityData(getSimulationIntensity(zmin, -1.0), 'polmagcylinders2_reference_11.int')
# IntensityDataIOFactory.writeIntensityData(getSimulationIntensity(zmin, -1.0), 'polmagcylinders2_reference_11.int')
diff
=
0.0
diff
=
0.0
diff
+=
get_difference
(
getSimulationIntensity
(
zplus
,
1.0
).
getArray
(),
get_reference_data
(
'
polmagcylinders2_reference_00.int.gz
'
).
getArray
())
diff
+=
get_difference
(
getSimulationIntensity
(
zplus
,
1.0
).
getArray
(),
diff
+=
get_difference
(
getSimulationIntensity
(
zplus
,
-
1.0
).
getArray
(),
get_reference_data
(
'
polmagcylinders2_reference_01.int.gz
'
).
getArray
())
get_reference_data
(
'
polmagcylinders2_reference_00.int.gz
'
).
getArray
())
diff
+=
get_difference
(
getSimulationIntensity
(
zmin
,
1.0
).
getArray
(),
get_reference_data
(
'
polmagcylinders2_reference_10.int.gz
'
).
getArray
())
diff
+=
get_difference
(
getSimulationIntensity
(
zplus
,
-
1.0
).
getArray
(),
diff
+=
get_difference
(
getSimulationIntensity
(
zmin
,
-
1.0
).
getArray
(),
get_reference_data
(
'
polmagcylinders2_reference_11.int.gz
'
).
getArray
())
get_reference_data
(
'
polmagcylinders2_reference_01.int.gz
'
).
getArray
())
diff
+=
get_difference
(
getSimulationIntensity
(
zmin
,
1.0
).
getArray
(),
get_reference_data
(
'
polmagcylinders2_reference_10.int.gz
'
).
getArray
())
diff
+=
get_difference
(
getSimulationIntensity
(
zmin
,
-
1.0
).
getArray
(),
get_reference_data
(
'
polmagcylinders2_reference_11.int.gz
'
).
getArray
())
diff
/=
4.0
diff
/=
4.0
status
=
"
OK
"
status
=
"
OK
"
...
...
This diff is collapsed.
Click to expand it.
Tests/Functional/PyCore/legacy/utils.py
+
1
−
2
View file @
c47b5b26
...
@@ -36,8 +36,7 @@ def get_reference_data(filename):
...
@@ -36,8 +36,7 @@ def get_reference_data(filename):
"""
"""
read and return reference data from file
read and return reference data from file
"""
"""
return
IntensityDataIOFactory
.
readIntensityData
(
return
IntensityDataIOFactory
.
readIntensityData
(
"
@REFERENCE_DIR@/legacy/
"
+
filename
)
"
@REFERENCE_DIR@/legacy/
"
+
filename
)
def
get_simulation_MiniGISAS
(
sample
=
None
):
def
get_simulation_MiniGISAS
(
sample
=
None
):
...
...
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