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
3c3bb3e4
Commit
3c3bb3e4
authored
7 years ago
by
Van Herck, Walter
Browse files
Options
Downloads
Patches
Plain Diff
Export polarization analysis of detector to Python
parent
0e3f6a8c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Core/Export/ExportToPython.cpp
+25
-29
25 additions, 29 deletions
Core/Export/ExportToPython.cpp
Core/Export/ExportToPython.h
+1
-0
1 addition, 0 deletions
Core/Export/ExportToPython.h
with
26 additions
and
29 deletions
Core/Export/ExportToPython.cpp
+
25
−
29
View file @
3c3bb3e4
...
@@ -54,7 +54,6 @@ using namespace PythonFormatting;
...
@@ -54,7 +54,6 @@ using namespace PythonFormatting;
using
namespace
INodeUtils
;
using
namespace
INodeUtils
;
namespace
{
namespace
{
const
std
::
string
preamble
=
const
std
::
string
preamble
=
"import numpy
\n
"
"import numpy
\n
"
"import bornagain as ba
\n
"
"import bornagain as ba
\n
"
...
@@ -80,14 +79,11 @@ namespace {
...
@@ -80,14 +79,11 @@ namespace {
throw
Exceptions
::
RuntimeErrorException
(
throw
Exceptions
::
RuntimeErrorException
(
"ExportToPython::defineMasks() -> Error. Unknown detector units."
);
"ExportToPython::defineMasks() -> Error. Unknown detector units."
);
}
}
}
// namespace
}
// namespace
ExportToPython
::
ExportToPython
(){}
ExportToPython
::
ExportToPython
(){}
ExportToPython
::~
ExportToPython
()
ExportToPython
::~
ExportToPython
(){}
{
}
std
::
string
ExportToPython
::
generateSampleCode
(
const
MultiLayer
&
multilayer
)
std
::
string
ExportToPython
::
generateSampleCode
(
const
MultiLayer
&
multilayer
)
{
{
...
@@ -121,6 +117,7 @@ std::string ExportToPython::defineGetSimulation(const GISASSimulation* simulatio
...
@@ -121,6 +117,7 @@ std::string ExportToPython::defineGetSimulation(const GISASSimulation* simulatio
result
<<
indent
()
<<
"simulation = ba.GISASSimulation()
\n
"
;
result
<<
indent
()
<<
"simulation = ba.GISASSimulation()
\n
"
;
result
<<
defineDetector
(
simulation
);
result
<<
defineDetector
(
simulation
);
result
<<
defineDetectorResolutionFunction
(
simulation
);
result
<<
defineDetectorResolutionFunction
(
simulation
);
result
<<
defineDetectorPolarizationAnalysis
(
simulation
);
result
<<
defineBeam
(
simulation
);
result
<<
defineBeam
(
simulation
);
result
<<
defineParameterDistributions
(
simulation
);
result
<<
defineParameterDistributions
(
simulation
);
result
<<
defineMasks
(
simulation
);
result
<<
defineMasks
(
simulation
);
...
@@ -183,7 +180,7 @@ std::string ExportToPython::defineGetSample() const
...
@@ -183,7 +180,7 @@ std::string ExportToPython::defineGetSample() const
+
defineRoughnesses
()
+
defineRoughnesses
()
+
addLayoutsToLayers
()
+
addLayoutsToLayers
()
+
defineMultiLayers
()
+
defineMultiLayers
()
+
"
\n
"
;
+
"
\n
"
;
}
}
std
::
string
ExportToPython
::
defineMaterials
()
const
std
::
string
ExportToPython
::
defineMaterials
()
const
...
@@ -465,7 +462,6 @@ std::string ExportToPython::defineInterferenceFunctions() const
...
@@ -465,7 +462,6 @@ std::string ExportToPython::defineInterferenceFunctions() const
if
(
dynamic_cast
<
const
InterferenceFunctionNone
*>
(
interference
))
if
(
dynamic_cast
<
const
InterferenceFunctionNone
*>
(
interference
))
result
<<
indent
()
<<
it
->
second
<<
" = ba.InterferenceFunctionNone()
\n
"
;
result
<<
indent
()
<<
it
->
second
<<
" = ba.InterferenceFunctionNone()
\n
"
;
else
if
(
auto
p_lattice_1d
else
if
(
auto
p_lattice_1d
=
dynamic_cast
<
const
InterferenceFunction1DLattice
*>
(
interference
))
{
=
dynamic_cast
<
const
InterferenceFunction1DLattice
*>
(
interference
))
{
const
Lattice1DParameters
latticeParameters
=
p_lattice_1d
->
getLatticeParameters
();
const
Lattice1DParameters
latticeParameters
=
p_lattice_1d
->
getLatticeParameters
();
...
@@ -480,7 +476,6 @@ std::string ExportToPython::defineInterferenceFunctions() const
...
@@ -480,7 +476,6 @@ std::string ExportToPython::defineInterferenceFunctions() const
<<
"("
<<
argumentList
(
pdf
)
<<
")
\n
"
<<
"("
<<
argumentList
(
pdf
)
<<
")
\n
"
<<
indent
()
<<
it
->
second
<<
".setDecayFunction("
<<
it
->
second
<<
"_pdf)
\n
"
;
<<
indent
()
<<
it
->
second
<<
".setDecayFunction("
<<
it
->
second
<<
"_pdf)
\n
"
;
}
}
else
if
(
auto
p_para_radial
else
if
(
auto
p_para_radial
=
dynamic_cast
<
const
InterferenceFunctionRadialParaCrystal
*>
(
interference
))
{
=
dynamic_cast
<
const
InterferenceFunctionRadialParaCrystal
*>
(
interference
))
{
result
<<
indent
()
<<
it
->
second
<<
" = ba.InterferenceFunctionRadialParaCrystal("
result
<<
indent
()
<<
it
->
second
<<
" = ba.InterferenceFunctionRadialParaCrystal("
...
@@ -503,7 +498,6 @@ std::string ExportToPython::defineInterferenceFunctions() const
...
@@ -503,7 +498,6 @@ std::string ExportToPython::defineInterferenceFunctions() const
<<
indent
()
<<
it
->
second
<<
".setProbabilityDistribution("
<<
it
->
second
<<
indent
()
<<
it
->
second
<<
".setProbabilityDistribution("
<<
it
->
second
<<
"_pdf)
\n
"
;
<<
"_pdf)
\n
"
;
}
}
else
if
(
auto
p_lattice_2d
else
if
(
auto
p_lattice_2d
=
dynamic_cast
<
const
InterferenceFunction2DLattice
*>
(
interference
))
{
=
dynamic_cast
<
const
InterferenceFunction2DLattice
*>
(
interference
))
{
const
Lattice2D
&
lattice
=
p_lattice_2d
->
lattice
();
const
Lattice2D
&
lattice
=
p_lattice_2d
->
lattice
();
...
@@ -522,7 +516,6 @@ std::string ExportToPython::defineInterferenceFunctions() const
...
@@ -522,7 +516,6 @@ std::string ExportToPython::defineInterferenceFunctions() const
if
(
p_lattice_2d
->
integrationOverXi
()
==
true
)
if
(
p_lattice_2d
->
integrationOverXi
()
==
true
)
result
<<
indent
()
<<
it
->
second
<<
".setIntegrationOverXi(True)
\n
"
;
result
<<
indent
()
<<
it
->
second
<<
".setIntegrationOverXi(True)
\n
"
;
}
}
else
if
(
auto
p_para_2d
else
if
(
auto
p_para_2d
=
dynamic_cast
<
const
InterferenceFunction2DParaCrystal
*>
(
interference
))
{
=
dynamic_cast
<
const
InterferenceFunction2DParaCrystal
*>
(
interference
))
{
std
::
vector
<
double
>
domainSize
=
p_para_2d
->
domainSizes
();
std
::
vector
<
double
>
domainSize
=
p_para_2d
->
domainSizes
();
...
@@ -542,7 +535,6 @@ std::string ExportToPython::defineInterferenceFunctions() const
...
@@ -542,7 +535,6 @@ std::string ExportToPython::defineInterferenceFunctions() const
result
<<
indent
()
<<
it
->
second
<<
".setDomainSizes("
result
<<
indent
()
<<
it
->
second
<<
".setDomainSizes("
<<
printNm
(
domainSize
[
0
])
<<
", "
<<
printNm
(
domainSize
[
0
])
<<
", "
<<
printNm
(
domainSize
[
1
])
<<
")
\n
"
;
<<
printNm
(
domainSize
[
1
])
<<
")
\n
"
;
if
(
p_para_2d
->
integrationOverXi
()
==
true
)
if
(
p_para_2d
->
integrationOverXi
()
==
true
)
result
<<
indent
()
<<
it
->
second
<<
".setIntegrationOverXi(True)
\n
"
;
result
<<
indent
()
<<
it
->
second
<<
".setIntegrationOverXi(True)
\n
"
;
...
@@ -558,11 +550,9 @@ std::string ExportToPython::defineInterferenceFunctions() const
...
@@ -558,11 +550,9 @@ std::string ExportToPython::defineInterferenceFunctions() const
result
<<
indent
()
<<
it
->
second
<<
"_pdf_2 = ba."
<<
pdf
->
getName
()
result
<<
indent
()
<<
it
->
second
<<
"_pdf_2 = ba."
<<
pdf
->
getName
()
<<
"("
<<
argumentList
(
pdf
)
<<
")
\n
"
;
<<
"("
<<
argumentList
(
pdf
)
<<
")
\n
"
;
result
<<
indent
()
<<
it
->
second
<<
".setProbabilityDistributions("
<<
it
->
second
result
<<
indent
()
<<
it
->
second
<<
".setProbabilityDistributions("
<<
it
->
second
<<
"_pdf_1, "
<<
it
->
second
<<
"_pdf_2)
\n
"
;
<<
"_pdf_1, "
<<
it
->
second
<<
"_pdf_2)
\n
"
;
}
}
else
else
throw
Exceptions
::
NotImplementedException
(
throw
Exceptions
::
NotImplementedException
(
"Bug: ExportToPython::defineInterferenceFunctions() called with unexpected "
"Bug: ExportToPython::defineInterferenceFunctions() called with unexpected "
...
@@ -591,7 +581,6 @@ std::string ExportToPython::defineParticleLayouts() const
...
@@ -591,7 +581,6 @@ std::string ExportToPython::defineParticleLayouts() const
<<
m_label
->
labelParticle
(
p_particle
)
<<
", "
<<
m_label
->
labelParticle
(
p_particle
)
<<
", "
<<
printDouble
(
abundance
)
<<
")
\n
"
;
<<
printDouble
(
abundance
)
<<
")
\n
"
;
}
}
if
(
auto
p_iff
=
OnlyChildOfType
<
IInterferenceFunction
>
(
*
particleLayout
)
)
if
(
auto
p_iff
=
OnlyChildOfType
<
IInterferenceFunction
>
(
*
particleLayout
)
)
result
<<
indent
()
<<
it
->
second
<<
".setInterferenceFunction("
result
<<
indent
()
<<
it
->
second
<<
".setInterferenceFunction("
<<
m_label
->
labelInterferenceFunction
(
p_iff
)
<<
")
\n
"
;
<<
m_label
->
labelInterferenceFunction
(
p_iff
)
<<
")
\n
"
;
...
@@ -664,9 +653,7 @@ std::string ExportToPython::defineMultiLayers() const
...
@@ -664,9 +653,7 @@ std::string ExportToPython::defineMultiLayers() const
result
<<
indent
()
<<
it
->
second
<<
".setExternalField("
result
<<
indent
()
<<
it
->
second
<<
".setExternalField("
<<
field_name
<<
")
\n
"
;
<<
field_name
<<
")
\n
"
;
}
}
size_t
numberOfLayers
=
it
->
first
->
numberOfLayers
();
size_t
numberOfLayers
=
it
->
first
->
numberOfLayers
();
if
(
numberOfLayers
)
{
if
(
numberOfLayers
)
{
result
<<
indent
()
<<
it
->
second
<<
".addLayer("
result
<<
indent
()
<<
it
->
second
<<
".addLayer("
<<
m_label
->
labelLayer
(
it
->
first
->
layer
(
0
))
<<
")
\n
"
;
<<
m_label
->
labelLayer
(
it
->
first
->
layer
(
0
))
<<
")
\n
"
;
...
@@ -697,7 +684,6 @@ std::string ExportToPython::defineDetector(const GISASSimulation* simulation) co
...
@@ -697,7 +684,6 @@ std::string ExportToPython::defineDetector(const GISASSimulation* simulation) co
if
(
iDetector
->
getDimension
()
!=
2
)
if
(
iDetector
->
getDimension
()
!=
2
)
throw
Exceptions
::
RuntimeErrorException
(
"ExportToPython::defineDetector: "
throw
Exceptions
::
RuntimeErrorException
(
"ExportToPython::defineDetector: "
"detector must be two-dimensional for GISAS"
);
"detector must be two-dimensional for GISAS"
);
std
::
ostringstream
result
;
std
::
ostringstream
result
;
result
<<
std
::
setprecision
(
12
);
result
<<
std
::
setprecision
(
12
);
...
@@ -710,7 +696,6 @@ std::string ExportToPython::defineDetector(const GISASSimulation* simulation) co
...
@@ -710,7 +696,6 @@ std::string ExportToPython::defineDetector(const GISASSimulation* simulation) co
<<
printDegrees
(
detector
->
getAxis
(
index
).
getMax
());
<<
printDegrees
(
detector
->
getAxis
(
index
).
getMax
());
}
}
result
<<
")
\n
"
;
result
<<
")
\n
"
;
}
else
if
(
auto
detector
=
dynamic_cast
<
const
RectangularDetector
*>
(
iDetector
))
{
}
else
if
(
auto
detector
=
dynamic_cast
<
const
RectangularDetector
*>
(
iDetector
))
{
result
<<
indent
()
<<
"
\n
"
;
result
<<
indent
()
<<
"
\n
"
;
result
<<
indent
()
<<
"detector = ba.RectangularDetector("
result
<<
indent
()
<<
"detector = ba.RectangularDetector("
...
@@ -726,29 +711,24 @@ std::string ExportToPython::defineDetector(const GISASSimulation* simulation) co
...
@@ -726,29 +711,24 @@ std::string ExportToPython::defineDetector(const GISASSimulation* simulation) co
if
(
!
isDefaultDirection
(
detector
->
getDirectionVector
()))
if
(
!
isDefaultDirection
(
detector
->
getDirectionVector
()))
result
<<
", "
<<
printKvector
(
detector
->
getDirectionVector
());
result
<<
", "
<<
printKvector
(
detector
->
getDirectionVector
());
result
<<
")
\n
"
;
result
<<
")
\n
"
;
}
else
if
(
detector
->
getDetectorArrangment
()
}
else
if
(
detector
->
getDetectorArrangment
()
==
RectangularDetector
::
PERPENDICULAR_TO_SAMPLE
)
{
==
RectangularDetector
::
PERPENDICULAR_TO_SAMPLE
)
{
result
<<
indent
()
<<
"detector.setPerpendicularToSampleX("
result
<<
indent
()
<<
"detector.setPerpendicularToSampleX("
<<
printDouble
(
detector
->
getDistance
())
<<
", "
<<
printDouble
(
detector
->
getDistance
())
<<
", "
<<
printDouble
(
detector
->
getU0
())
<<
", "
<<
printDouble
(
detector
->
getU0
())
<<
", "
<<
printDouble
(
detector
->
getV0
())
<<
")
\n
"
;
<<
printDouble
(
detector
->
getV0
())
<<
")
\n
"
;
}
else
if
(
detector
->
getDetectorArrangment
()
}
else
if
(
detector
->
getDetectorArrangment
()
==
RectangularDetector
::
PERPENDICULAR_TO_DIRECT_BEAM
)
{
==
RectangularDetector
::
PERPENDICULAR_TO_DIRECT_BEAM
)
{
result
<<
indent
()
<<
"detector.setPerpendicularToDirectBeam("
result
<<
indent
()
<<
"detector.setPerpendicularToDirectBeam("
<<
printDouble
(
detector
->
getDistance
())
<<
", "
<<
printDouble
(
detector
->
getDistance
())
<<
", "
<<
printDouble
(
detector
->
getU0
())
<<
", "
<<
printDouble
(
detector
->
getU0
())
<<
", "
<<
printDouble
(
detector
->
getV0
())
<<
")
\n
"
;
<<
printDouble
(
detector
->
getV0
())
<<
")
\n
"
;
}
else
if
(
detector
->
getDetectorArrangment
()
}
else
if
(
detector
->
getDetectorArrangment
()
==
RectangularDetector
::
PERPENDICULAR_TO_REFLECTED_BEAM
)
{
==
RectangularDetector
::
PERPENDICULAR_TO_REFLECTED_BEAM
)
{
result
<<
indent
()
<<
"detector.setPerpendicularToReflectedBeam("
result
<<
indent
()
<<
"detector.setPerpendicularToReflectedBeam("
<<
printDouble
(
detector
->
getDistance
())
<<
", "
<<
printDouble
(
detector
->
getDistance
())
<<
", "
<<
printDouble
(
detector
->
getU0
())
<<
", "
<<
printDouble
(
detector
->
getU0
())
<<
", "
<<
printDouble
(
detector
->
getV0
())
<<
")
\n
"
;
<<
printDouble
(
detector
->
getV0
())
<<
")
\n
"
;
}
else
if
(
detector
->
getDetectorArrangment
()
}
else
if
(
detector
->
getDetectorArrangment
()
==
RectangularDetector
::
PERPENDICULAR_TO_REFLECTED_BEAM_DPOS
)
{
==
RectangularDetector
::
PERPENDICULAR_TO_REFLECTED_BEAM_DPOS
)
{
result
<<
indent
()
<<
"detector.setPerpendicularToReflectedBeam("
result
<<
indent
()
<<
"detector.setPerpendicularToReflectedBeam("
...
@@ -756,16 +736,13 @@ std::string ExportToPython::defineDetector(const GISASSimulation* simulation) co
...
@@ -756,16 +736,13 @@ std::string ExportToPython::defineDetector(const GISASSimulation* simulation) co
result
<<
indent
()
<<
"detector.setDirectBeamPosition("
result
<<
indent
()
<<
"detector.setDirectBeamPosition("
<<
printDouble
(
detector
->
getDirectBeamU0
())
<<
", "
<<
printDouble
(
detector
->
getDirectBeamU0
())
<<
", "
<<
printDouble
(
detector
->
getDirectBeamV0
())
<<
")
\n
"
;
<<
printDouble
(
detector
->
getDirectBeamV0
())
<<
")
\n
"
;
}
else
}
else
throw
Exceptions
::
RuntimeErrorException
(
throw
Exceptions
::
RuntimeErrorException
(
"ExportToPython::defineDetector: unknown alignment"
);
"ExportToPython::defineDetector: unknown alignment"
);
result
<<
indent
()
<<
"simulation.setDetector(detector)
\n
"
;
result
<<
indent
()
<<
"simulation.setDetector(detector)
\n
"
;
}
else
}
else
throw
Exceptions
::
RuntimeErrorException
(
"ExportToPython::defineDetector: unknown detector"
);
throw
Exceptions
::
RuntimeErrorException
(
"ExportToPython::defineDetector: unknown detector"
);
if
(
iDetector
->
regionOfInterest
())
{
if
(
iDetector
->
regionOfInterest
())
{
result
<<
indent
()
<<
"simulation.setRegionOfInterest("
result
<<
indent
()
<<
"simulation.setRegionOfInterest("
<<
printFunc
(
iDetector
)(
iDetector
->
regionOfInterest
()
->
getXlow
())
<<
", "
<<
printFunc
(
iDetector
)(
iDetector
->
regionOfInterest
()
->
getXlow
())
<<
", "
...
@@ -774,7 +751,6 @@ std::string ExportToPython::defineDetector(const GISASSimulation* simulation) co
...
@@ -774,7 +751,6 @@ std::string ExportToPython::defineDetector(const GISASSimulation* simulation) co
<<
printFunc
(
iDetector
)(
iDetector
->
regionOfInterest
()
->
getYup
())
<<
")
\n
"
;
<<
printFunc
(
iDetector
)(
iDetector
->
regionOfInterest
()
->
getYup
())
<<
")
\n
"
;
}
}
result
<<
indent
()
<<
"
\n
"
;
result
<<
indent
()
<<
"
\n
"
;
return
result
.
str
();
return
result
.
str
();
}
}
...
@@ -801,7 +777,29 @@ std::string ExportToPython::defineDetectorResolutionFunction(
...
@@ -801,7 +777,29 @@ std::string ExportToPython::defineDetectorResolutionFunction(
"ExportToPython::defineDetectorResolutionFunction() -> Error. "
"ExportToPython::defineDetectorResolutionFunction() -> Error. "
"Not a ConvolutionDetectorResolution function"
);
"Not a ConvolutionDetectorResolution function"
);
}
}
return
result
.
str
();
}
std
::
string
ExportToPython
::
defineDetectorPolarizationAnalysis
(
const
GISASSimulation
*
simulation
)
const
{
std
::
ostringstream
result
;
const
IDetector2D
*
detector
=
simulation
->
getInstrument
().
getDetector
();
kvector_t
analyzer_direction
=
detector
->
analyzerDirection
();
double
analyzer_efficiency
=
detector
->
analyzerEfficiency
();
double
analyzer_total_transmission
=
detector
->
analyzerTotalTransmission
();
if
(
analyzer_direction
.
mag
()
>
0.0
)
{
std
::
string
direction_name
=
"analyzer_direction"
;
result
<<
indent
()
<<
direction_name
<<
" = kvector_t("
<<
printDouble
(
analyzer_direction
.
x
())
<<
", "
<<
printDouble
(
analyzer_direction
.
y
())
<<
", "
<<
printDouble
(
analyzer_direction
.
z
())
<<
")
\n
"
;
result
<<
indent
()
<<
"simulation.setAnalyzerProperties("
<<
direction_name
<<
", "
<<
printDouble
(
analyzer_efficiency
)
<<
", "
<<
printDouble
(
analyzer_total_transmission
)
<<
")
\n
"
;
}
return
result
.
str
();
return
result
.
str
();
}
}
...
@@ -875,7 +873,6 @@ std::string ExportToPython::defineMasks(const GISASSimulation* simulation) const
...
@@ -875,7 +873,6 @@ std::string ExportToPython::defineMasks(const GISASSimulation* simulation) const
}
}
result
<<
"
\n
"
;
result
<<
"
\n
"
;
}
}
return
result
.
str
();
return
result
.
str
();
}
}
...
@@ -915,7 +912,6 @@ std::string ExportToPython::defineMain(ExportToPython::EMainType mainType)
...
@@ -915,7 +912,6 @@ std::string ExportToPython::defineMain(ExportToPython::EMainType mainType)
}
else
{
}
else
{
throw
std
::
runtime_error
(
"ExportToPython::defineMain() -> Error. Unknown main type."
);
throw
std
::
runtime_error
(
"ExportToPython::defineMain() -> Error. Unknown main type."
);
}
}
return
result
;
return
result
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Core/Export/ExportToPython.h
+
1
−
0
View file @
3c3bb3e4
...
@@ -64,6 +64,7 @@ private:
...
@@ -64,6 +64,7 @@ private:
std
::
string
defineMultiLayers
()
const
;
std
::
string
defineMultiLayers
()
const
;
std
::
string
defineDetector
(
const
GISASSimulation
*
simulation
)
const
;
std
::
string
defineDetector
(
const
GISASSimulation
*
simulation
)
const
;
std
::
string
defineDetectorResolutionFunction
(
const
GISASSimulation
*
simulation
)
const
;
std
::
string
defineDetectorResolutionFunction
(
const
GISASSimulation
*
simulation
)
const
;
std
::
string
defineDetectorPolarizationAnalysis
(
const
GISASSimulation
*
simulation
)
const
;
std
::
string
defineBeam
(
const
GISASSimulation
*
simulation
)
const
;
std
::
string
defineBeam
(
const
GISASSimulation
*
simulation
)
const
;
std
::
string
defineParameterDistributions
(
const
GISASSimulation
*
simulation
)
const
;
std
::
string
defineParameterDistributions
(
const
GISASSimulation
*
simulation
)
const
;
std
::
string
defineMasks
(
const
GISASSimulation
*
simulation
)
const
;
std
::
string
defineMasks
(
const
GISASSimulation
*
simulation
)
const
;
...
...
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