From 47d2391f5cf911e203bacd3b840b69ec949d27ec Mon Sep 17 00:00:00 2001 From: Richard Salomon Date: Wed, 3 Jun 2026 15:41:06 +0200 Subject: [PATCH 1/6] Add KSIntSurfaceScattering to simulate scatterings on a surface This class adds the possibility to simulate scattering of an electron on a surface with a given probability for backscattering of the electron and a given probability for production of a secondary electron from the surface. Code originally by V. Hannen --- Kassiopeia/Bindings/CMakeLists.txt | 2 + .../Include/KSIntSurfaceScatteringBuilder.h | 47 ++++ .../Source/KSIntSurfaceScatteringBuilder.cxx | 25 ++ Kassiopeia/Interactions/CMakeLists.txt | 2 + .../Include/KSIntSurfaceScattering.h | 76 +++++ .../Source/KSIntSurfaceScattering.cxx | 264 ++++++++++++++++++ 6 files changed, 416 insertions(+) create mode 100644 Kassiopeia/Bindings/Interactions/Include/KSIntSurfaceScatteringBuilder.h create mode 100644 Kassiopeia/Bindings/Interactions/Source/KSIntSurfaceScatteringBuilder.cxx create mode 100644 Kassiopeia/Interactions/Include/KSIntSurfaceScattering.h create mode 100644 Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx diff --git a/Kassiopeia/Bindings/CMakeLists.txt b/Kassiopeia/Bindings/CMakeLists.txt index 2ab7c85d0..15b68070d 100644 --- a/Kassiopeia/Bindings/CMakeLists.txt +++ b/Kassiopeia/Bindings/CMakeLists.txt @@ -129,6 +129,7 @@ set( BINDINGS_HEADER_FILES Interactions/Include/KSIntSurfaceSpecularBuilder.h Interactions/Include/KSIntSurfaceUCNBuilder.h Interactions/Include/KSIntSurfaceDiffuseBuilder.h + Interactions/Include/KSIntSurfaceScatteringBuilder.h Interactions/Include/KSIntSurfaceMultiplicationBuilder.h Interactions/Include/KSIntSurfaceSpinFlipBuilder.h Interactions/Include/KESSSurfaceInteractionBuilder.h @@ -357,6 +358,7 @@ set( BINDINGS_SOURCE_FILES Interactions/Source/KSIntSurfaceSpecularBuilder.cxx Interactions/Source/KSIntSurfaceUCNBuilder.cxx Interactions/Source/KSIntSurfaceDiffuseBuilder.cxx + Interactions/Source/KSIntSurfaceScatteringBuilder.cxx Interactions/Source/KSIntSurfaceMultiplicationBuilder.cxx Interactions/Source/KSIntSurfaceSpinFlipBuilder.cxx Interactions/Source/KESSSurfaceInteractionBuilder.cxx diff --git a/Kassiopeia/Bindings/Interactions/Include/KSIntSurfaceScatteringBuilder.h b/Kassiopeia/Bindings/Interactions/Include/KSIntSurfaceScatteringBuilder.h new file mode 100644 index 000000000..f01113c39 --- /dev/null +++ b/Kassiopeia/Bindings/Interactions/Include/KSIntSurfaceScatteringBuilder.h @@ -0,0 +1,47 @@ +////////////////////////////////////////////////////////////////////////// +// Routine to simulate scattering of an electron on a surface with a given +// probability for backscattering of the electron and a given probability +// for production of a secondary electron from the surface. +////////////////////////////////////////////////////////////////////////// +#ifndef Kassiopeia_KSIntSurfaceScatteringBuilder_h_ +#define Kassiopeia_KSIntSurfaceScatteringBuilder_h_ + +#include "KComplexElement.hh" +#include "KSIntSurfaceScattering.h" + +using namespace Kassiopeia; +namespace katrin +{ + typedef KComplexElement KSIntSurfaceScatteringBuilder; + + template<> inline bool KSIntSurfaceScatteringBuilder::AddAttribute(KContainer* aContainer) + { + if (aContainer->GetName() == "name") { + aContainer->CopyTo(fObject, &KNamed::SetName); + return true; + } + if (aContainer->GetName() == "sec_electron_probability") { + aContainer->CopyTo(fObject, &KSIntSurfaceScattering::SetSecElectronProbability); + return true; + } + if (aContainer->GetName() == "sec_electron_mean_energy") { + aContainer->CopyTo(fObject, &KSIntSurfaceScattering::SetSecElectronMeanEnergy); + return true; + } + if (aContainer->GetName() == "scat_probability") { + aContainer->CopyTo(fObject, &KSIntSurfaceScattering::SetScatProbability); + return true; + } + if (aContainer->GetName() == "scat_loss_fraction") { + aContainer->CopyTo(fObject, &KSIntSurfaceScattering::SetScatLossFraction); + return true; + } + if (aContainer->GetName() == "side") { + aContainer->CopyTo(fObject, &KSIntSurfaceScattering::SetSide); + return true; + } + return false; + } +} // namespace katrin + +#endif diff --git a/Kassiopeia/Bindings/Interactions/Source/KSIntSurfaceScatteringBuilder.cxx b/Kassiopeia/Bindings/Interactions/Source/KSIntSurfaceScatteringBuilder.cxx new file mode 100644 index 000000000..0d18448a5 --- /dev/null +++ b/Kassiopeia/Bindings/Interactions/Source/KSIntSurfaceScatteringBuilder.cxx @@ -0,0 +1,25 @@ +////////////////////////////////////////////////////////////////////////// +// Routine to simulate scattering of an electron on a surface with a given +// probability for backscattering of the electron and a given probability +// for production of a secondary electron from the surface. +////////////////////////////////////////////////////////////////////////// +#include "KSIntSurfaceScatteringBuilder.h" + +#include "KSRootBuilder.h" + +using namespace Kassiopeia; +using namespace std; + +namespace katrin +{ + template<> KSIntSurfaceScatteringBuilder::~KComplexElement() = default; + + STATICINT sKSIntSurfaceScatteringStructure = KSIntSurfaceScatteringBuilder::Attribute("name") + + KSIntSurfaceScatteringBuilder::Attribute("sec_electron_probability") + + KSIntSurfaceScatteringBuilder::Attribute("sec_electron_mean_energy") + + KSIntSurfaceScatteringBuilder::Attribute("scat_probability") + + KSIntSurfaceScatteringBuilder::Attribute("scat_loss_fraction") + + KSIntSurfaceScatteringBuilder::Attribute("side"); + + STATICINT sKSIntSurfaceScatteringElement = KSRootBuilder::ComplexElement("ksint_surface_scattering"); +} // namespace katrin diff --git a/Kassiopeia/Interactions/CMakeLists.txt b/Kassiopeia/Interactions/CMakeLists.txt index cb9ee5b9c..9bd431944 100644 --- a/Kassiopeia/Interactions/CMakeLists.txt +++ b/Kassiopeia/Interactions/CMakeLists.txt @@ -29,6 +29,7 @@ set( INTERACTIONS_HEADER_BASENAMES KSIntSurfaceSpecular.h KSIntSurfaceUCN.h KSIntSurfaceDiffuse.h + KSIntSurfaceScattering.h KSIntSurfaceMultiplication.h KSIntSurfaceSpinFlip.h @@ -84,6 +85,7 @@ set( INTERACTIONS_SOURCE_BASENAMES KSIntSurfaceSpecular.cxx KSIntSurfaceUCN.cxx KSIntSurfaceDiffuse.cxx + KSIntSurfaceScattering.cxx KSIntSurfaceMultiplication.cxx KSIntSurfaceSpinFlip.cxx diff --git a/Kassiopeia/Interactions/Include/KSIntSurfaceScattering.h b/Kassiopeia/Interactions/Include/KSIntSurfaceScattering.h new file mode 100644 index 000000000..bbd0fb301 --- /dev/null +++ b/Kassiopeia/Interactions/Include/KSIntSurfaceScattering.h @@ -0,0 +1,76 @@ +////////////////////////////////////////////////////////////////////////// +// Routine to simulate scattering of an electron on a surface with a given +// probability for backscattering of the electron and a given probability +// for production of a secondary electron from the surface. +////////////////////////////////////////////////////////////////////////// +#ifndef Kassiopeia_KSIntSurfaceScattering_h_ +#define Kassiopeia_KSIntSurfaceScattering_h_ + +#include "KField.h" +#include "KSSurfaceInteraction.h" + +namespace Kassiopeia +{ + +class KSStep; + +class KSIntSurfaceScattering : public KSComponentTemplate +{ + public: + KSIntSurfaceScattering(); + KSIntSurfaceScattering(const KSIntSurfaceScattering& aCopy); + KSIntSurfaceScattering* Clone() const override; + ~KSIntSurfaceScattering() override; + + public: + void ExecuteInteraction(const KSParticle& anInitialParticle, + KSParticle& aFinalParticle, + KSParticleQueue& aSecondaries) override; + void CreateSecondaryElectron(const KSParticle& anInitialParticle, + KSParticle& aFinalParticle, + KSParticleQueue& aSecondaries); + void ExecuteReflection(const KSParticle& anInitialParticle, + KSParticle& aFinalParticle, + KSParticleQueue& aSecondaries); + + void SetSide(std::string side_name) + { + //default is both sides of the surface execute the interaction + fSideName = std::string("both"); + fPerformSideCheck = false; + + //top is the side on which the normal points outward + if (side_name == "top") { + fSideName = side_name; + fPerformSideCheck = true; + fSideSignIsNegative = true; + } + + //bottom is the side on which the normal std::vector points inward + if (side_name == "bottom") { + fSideName = side_name; + fPerformSideCheck = true; + fSideSignIsNegative = false; + } + } + + std::string GetSide() const + { + return fSideName; + }; + + public: + K_SET_GET(double, ScatProbability) + K_SET_GET(double, ScatLossFraction) + K_SET_GET(double, SecElectronProbability) + K_SET_GET(double, SecElectronMeanEnergy) + + private: + bool fPerformSideCheck; + bool fSideSignIsNegative; + std::string fSideName; +}; + +} // namespace Kassiopeia + +#endif diff --git a/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx b/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx new file mode 100644 index 000000000..1cd4d4b2b --- /dev/null +++ b/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx @@ -0,0 +1,264 @@ +////////////////////////////////////////////////////////////////////////// +// Routine to simulate scattering of an electron on a surface with a given +// probability for backscattering of the electron and a given probability +// for production of a secondary electron from the surface. +////////////////////////////////////////////////////////////////////////// +#include "KSIntSurfaceScattering.h" + +#include "KRandom.h" +#include "KSInteractionsMessage.h" +using katrin::KRandom; + +#include "KConst.h" + +#include + +using katrin::KThreeVector; + +namespace Kassiopeia +{ + +KSIntSurfaceScattering::KSIntSurfaceScattering() : + fScatProbability(0.3), + fScatLossFraction(0.0), + fSecElectronProbability(0.25), + fSecElectronMeanEnergy(4.0), + fSideName(std::string("top")) +{} + +KSIntSurfaceScattering::KSIntSurfaceScattering(const KSIntSurfaceScattering& aCopy) : + KSComponent(aCopy), + fScatProbability(aCopy.fScatProbability), + fScatLossFraction(aCopy.fScatLossFraction), + fSecElectronProbability(aCopy.fSecElectronProbability), + fSecElectronMeanEnergy(aCopy.fSecElectronMeanEnergy), + fSideName(aCopy.fSideName) +{} + +KSIntSurfaceScattering* KSIntSurfaceScattering::Clone() const +{ + return new KSIntSurfaceScattering(*this); +} + +KSIntSurfaceScattering::~KSIntSurfaceScattering() = default; + +void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParticle, + KSParticle& aFinalParticle, + KSParticleQueue& aSecondaries) +{ + double tChoice; + KSSurface* tCurrentSurface = anInitialParticle.GetCurrentSurface(); + + intmsg(eInfo) << "*************** initial particle" << eom; + anInitialParticle.Print(); + intmsg(eInfo) << "*************** initial particle kinetic energy = " << anInitialParticle.GetKineticEnergy_eV() << " eV" << eom; + + // figure out the basis directions for the particle ejection + // eject it with a diffuse 'Lambertian' distribution + KThreeVector tNormal; + if (anInitialParticle.GetCurrentSurface() != nullptr) { + tNormal = anInitialParticle.GetCurrentSurface()->Normal(anInitialParticle.GetPosition()); + } + else if (anInitialParticle.GetCurrentSide() != nullptr) { + tNormal = anInitialParticle.GetCurrentSide()->Normal(anInitialParticle.GetPosition()); + } + else { + intmsg(eError) << "surface diffuse interaction named <" << GetName() + << "> was given a particle with neither a surface nor a side set" << eom; + return; + } + + KThreeVector tInitialMomentum = anInitialParticle.GetMomentum(); + KThreeVector momDirection = tInitialMomentum.Unit(); + + double dot_prod = tInitialMomentum.Dot(tNormal); + KThreeVector tInitialNormalMomentum = dot_prod * tNormal; + + tInitialNormalMomentum = -1.0 * tInitialNormalMomentum; //reverse direction for reflection + KThreeVector tInitialTangentMomentum = tInitialMomentum - tInitialNormalMomentum; + + tInitialNormalMomentum = tInitialNormalMomentum.Unit(); + tInitialTangentMomentum = tInitialTangentMomentum.Unit(); + KThreeVector tInitialOrthogonalMomentum = tInitialTangentMomentum.Cross(tInitialNormalMomentum.Unit()); + + bool execute_interaction = true; + if (fPerformSideCheck) { + if (fSideSignIsNegative && dot_prod > 0) { + execute_interaction = false; + } + if (!fSideSignIsNegative && dot_prod < 0) { + execute_interaction = false; + } + } + + //only execute interaction if the specified side of this surface is active + if (execute_interaction) + { + tChoice = KRandom::GetInstance().Uniform(0., 1.); + if (tChoice < fSecElectronProbability) { + CreateSecondaryElectron(anInitialParticle, aFinalParticle, aSecondaries); + intmsg(eNormal) << " secondary electron production occurred on child surface <" << tCurrentSurface->GetName() << ">" << eom; + } + + tChoice = KRandom::GetInstance().Uniform(0., 1.); + if (tChoice < fScatProbability) + { + ExecuteReflection(anInitialParticle, aFinalParticle, aSecondaries); + intmsg(eNormal) << " backscattering occurred on child surface <" << tCurrentSurface->GetName() << ">" << eom; + } + else + { + //kill incoming electron + aFinalParticle = anInitialParticle; + aFinalParticle.SetActive(false); + aFinalParticle.AddLabel("absorbed"); + aFinalParticle.SetMomentum(-1.0 * anInitialParticle.GetMomentum()); + aFinalParticle.SetKineticEnergy(0); + intmsg(eNormal) << " particle absorption occurred on child surface <" << tCurrentSurface->GetName() << ">" << eom; + } + } + else + { + aFinalParticle = anInitialParticle; + aFinalParticle.AddLabel("transmitted"); + } + + intmsg(eInfo) << "*************** final particle" << eom; + aFinalParticle.Print(); + intmsg(eInfo) << "*************** secondaries" << eom; + for (KSParticle* sec : aSecondaries) sec->Print(); + + return; +} + + +// Secondary electron production from surface +void KSIntSurfaceScattering::CreateSecondaryElectron(const KSParticle& anInitialParticle, + KSParticle&, + KSParticleQueue& aSecondaries) +{ + // figure out the basis directions for the particle ejection + // eject it with a diffuse 'Lambertian' distribution + // + KThreeVector tNormal; + if (anInitialParticle.GetCurrentSurface() != nullptr) { + tNormal = anInitialParticle.GetCurrentSurface()->Normal(anInitialParticle.GetPosition()); + } + else if (anInitialParticle.GetCurrentSide() != nullptr) { + tNormal = anInitialParticle.GetCurrentSide()->Normal(anInitialParticle.GetPosition()); + } + else { + intmsg(eError) << "surface diffuse interaction named <" << GetName() + << "> was given a particle with neither a surface nor a side set" << eom; + return; + } + + KThreeVector tInitialMomentum = anInitialParticle.GetMomentum(); + KThreeVector momDirection = tInitialMomentum.Unit(); + + double dot_prod = tInitialMomentum.Dot(tNormal); + KThreeVector tInitialNormalMomentum = dot_prod * tNormal; + + tInitialNormalMomentum = -1.0 * tInitialNormalMomentum; //reverse direction for reflection + KThreeVector tInitialTangentMomentum = tInitialMomentum - tInitialNormalMomentum; + + tInitialNormalMomentum = tInitialNormalMomentum.Unit(); + tInitialTangentMomentum = tInitialTangentMomentum.Unit(); + KThreeVector tInitialOrthogonalMomentum = tInitialTangentMomentum.Cross(tInitialNormalMomentum.Unit()); + + // add new particle to queue + // + auto* tParticle = new KSParticle(anInitialParticle); + + //dice direction + double tAzimuthalAngle = KRandom::GetInstance().Uniform(0., 2. * katrin::KConst::Pi()); + double tSinTheta = + KRandom::GetInstance().Uniform(0., 0.5); //this is not a true lambertian (has cut-off angle) + double tCosTheta = std::sqrt((1.0 - tSinTheta) * (1.0 + tSinTheta)); + + KThreeVector tDirection; + tDirection = tCosTheta * tInitialNormalMomentum; + tDirection += tSinTheta * std::cos(tAzimuthalAngle) * tInitialTangentMomentum.Unit(); + tDirection += tSinTheta * std::sin(tAzimuthalAngle) * tInitialOrthogonalMomentum.Unit(); + + if (tDirection.Dot(momDirection) > 0) { + tDirection = -1.0 * tDirection; + } + + // secondary particles particles are emitted predominantly + // with very low energies, currently set constant + double tChildEnergy = fSecElectronMeanEnergy; + + KThreeVector pos = anInitialParticle.GetPosition(); + tParticle->SetPosition(pos); + + tParticle->SetMomentum(tDirection); + tParticle->SetKineticEnergy_eV(tChildEnergy); + tParticle->SetCurrentSurface(nullptr); + tParticle->AddLabel("secondary"); + aSecondaries.push_back(tParticle); + + return; +} + + +// Electron backscattering from surface, adapted from diffuse reflection +void KSIntSurfaceScattering::ExecuteReflection(const KSParticle& anInitialParticle, + KSParticle& aFinalParticle, + KSParticleQueue&) +{ + double tKineticEnergy = anInitialParticle.GetKineticEnergy(); + + // energy loss due to backscattering + tKineticEnergy *= (1.0 - fScatLossFraction); + + //prevent kinetic energy from going negative + if (tKineticEnergy < 0.0) { + intmsg(eError) << "surface diffuse interaction named <" << GetName() + << "> tried to give a particle a negative kinetic energy." << eom; + return; + } + + //generate angles for diffuse 'Lambertian' reflection direction + double tAzimuthalAngle = KRandom::GetInstance().Uniform(0., 2. * katrin::KConst::Pi()); + double tSinTheta = std::sqrt(KRandom::GetInstance().Uniform( + 0., + 1.)); // only KRandom::GetInstance().Uniform( 0., 1. ); is wrong: see http://www.sciencedirect.com/science/article/pii/S0042207X02001732 + double tCosTheta = std::sqrt((1.0 - tSinTheta) * (1.0 + tSinTheta)); + + KThreeVector tNormal; + if (anInitialParticle.GetCurrentSurface() != nullptr) { + tNormal = anInitialParticle.GetCurrentSurface()->Normal(anInitialParticle.GetPosition()); + } + else if (anInitialParticle.GetCurrentSide() != nullptr) { + tNormal = anInitialParticle.GetCurrentSide()->Normal(anInitialParticle.GetPosition()); + } + else { + intmsg(eError) << "surface diffuse interaction named <" << GetName() + << "> was given a particle with neither a surface nor a side set" << eom; + return; + } + + KThreeVector tInitialMomentum = anInitialParticle.GetMomentum(); + double tMomentumMagnitude = tInitialMomentum.Magnitude(); + + KThreeVector tInitialNormalMomentum = tInitialMomentum.Dot(tNormal) * tNormal; + KThreeVector tInitialTangentMomentum = tInitialMomentum - tInitialNormalMomentum; + KThreeVector tInitialOrthogonalMomentum = tInitialTangentMomentum.Cross(tInitialNormalMomentum.Unit()); + + //define reflected direction + KThreeVector tReflectedDirection = -1.0 * tCosTheta * tInitialNormalMomentum.Unit(); + tReflectedDirection += tSinTheta * std::cos(tAzimuthalAngle) * tInitialTangentMomentum.Unit(); + tReflectedDirection += tSinTheta * std::sin(tAzimuthalAngle) * tInitialOrthogonalMomentum.Unit(); + + KThreeVector tReflectedMomentum = tMomentumMagnitude * tReflectedDirection; + + aFinalParticle = anInitialParticle; + aFinalParticle.SetMomentum(tReflectedMomentum); + aFinalParticle.SetKineticEnergy(tKineticEnergy); + aFinalParticle.AddLabel("backscattered"); + + return; +} + +} // namespace Kassiopeia From 57d40c059c834dc0992dff67f5cae9a7f19caa02 Mon Sep 17 00:00:00 2001 From: Richard S <83545331+richeldichel@users.noreply.github.com> Date: Mon, 8 Jun 2026 09:55:07 +0200 Subject: [PATCH 2/6] KSIntSurfaceScattering: Apply minor fixes and suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../Include/KSIntSurfaceScattering.h | 1 + .../Source/KSIntSurfaceScattering.cxx | 45 ++++++++++--------- 2 files changed, 25 insertions(+), 21 deletions(-) diff --git a/Kassiopeia/Interactions/Include/KSIntSurfaceScattering.h b/Kassiopeia/Interactions/Include/KSIntSurfaceScattering.h index bbd0fb301..0cde15090 100644 --- a/Kassiopeia/Interactions/Include/KSIntSurfaceScattering.h +++ b/Kassiopeia/Interactions/Include/KSIntSurfaceScattering.h @@ -9,6 +9,7 @@ #include "KField.h" #include "KSSurfaceInteraction.h" +#include namespace Kassiopeia { diff --git a/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx b/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx index 1cd4d4b2b..5d6494568 100644 --- a/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx +++ b/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx @@ -23,7 +23,9 @@ KSIntSurfaceScattering::KSIntSurfaceScattering() : fScatLossFraction(0.0), fSecElectronProbability(0.25), fSecElectronMeanEnergy(4.0), - fSideName(std::string("top")) + fPerformSideCheck(false), + fSideSignIsNegative(false), + fSideName(std::string("both")) {} KSIntSurfaceScattering::KSIntSurfaceScattering(const KSIntSurfaceScattering& aCopy) : @@ -32,6 +34,8 @@ KSIntSurfaceScattering::KSIntSurfaceScattering(const KSIntSurfaceScattering& aCo fScatLossFraction(aCopy.fScatLossFraction), fSecElectronProbability(aCopy.fSecElectronProbability), fSecElectronMeanEnergy(aCopy.fSecElectronMeanEnergy), + fPerformSideCheck(aCopy.fPerformSideCheck), + fSideSignIsNegative(aCopy.fSideSignIsNegative), fSideName(aCopy.fSideName) {} @@ -49,9 +53,11 @@ void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParti double tChoice; KSSurface* tCurrentSurface = anInitialParticle.GetCurrentSurface(); - intmsg(eInfo) << "*************** initial particle" << eom; + intmsg_debug("*************** initial particle" << eom); +#ifdef Kassiopeia_ENABLE_DEBUG anInitialParticle.Print(); - intmsg(eInfo) << "*************** initial particle kinetic energy = " << anInitialParticle.GetKineticEnergy_eV() << " eV" << eom; +#endif + intmsg_debug("*************** initial particle kinetic energy = " << anInitialParticle.GetKineticEnergy_eV() << " eV" << eom); // figure out the basis directions for the particle ejection // eject it with a diffuse 'Lambertian' distribution @@ -68,19 +74,8 @@ void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParti return; } - KThreeVector tInitialMomentum = anInitialParticle.GetMomentum(); - KThreeVector momDirection = tInitialMomentum.Unit(); - - double dot_prod = tInitialMomentum.Dot(tNormal); - KThreeVector tInitialNormalMomentum = dot_prod * tNormal; - - tInitialNormalMomentum = -1.0 * tInitialNormalMomentum; //reverse direction for reflection - KThreeVector tInitialTangentMomentum = tInitialMomentum - tInitialNormalMomentum; - - tInitialNormalMomentum = tInitialNormalMomentum.Unit(); - tInitialTangentMomentum = tInitialTangentMomentum.Unit(); - KThreeVector tInitialOrthogonalMomentum = tInitialTangentMomentum.Cross(tInitialNormalMomentum.Unit()); - + const KThreeVector tInitialMomentum = anInitialParticle.GetMomentum(); + const double dot_prod = tInitialMomentum.Dot(tNormal); bool execute_interaction = true; if (fPerformSideCheck) { if (fSideSignIsNegative && dot_prod > 0) { @@ -97,14 +92,20 @@ void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParti tChoice = KRandom::GetInstance().Uniform(0., 1.); if (tChoice < fSecElectronProbability) { CreateSecondaryElectron(anInitialParticle, aFinalParticle, aSecondaries); - intmsg(eNormal) << " secondary electron production occurred on child surface <" << tCurrentSurface->GetName() << ">" << eom; + intmsg(eNormal) << " secondary electron production occurred on child surface <" + << (tCurrentSurface != nullptr ? tCurrentSurface->GetName() + : anInitialParticle.GetCurrentSide()->GetName()) + << ">" << eom; } tChoice = KRandom::GetInstance().Uniform(0., 1.); if (tChoice < fScatProbability) { ExecuteReflection(anInitialParticle, aFinalParticle, aSecondaries); - intmsg(eNormal) << " backscattering occurred on child surface <" << tCurrentSurface->GetName() << ">" << eom; + intmsg(eNormal) << " backscattering occurred on child surface <" + << (tCurrentSurface != nullptr ? tCurrentSurface->GetName() + : anInitialParticle.GetCurrentSide()->GetName()) + << ">" << eom; } else { @@ -112,9 +113,11 @@ void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParti aFinalParticle = anInitialParticle; aFinalParticle.SetActive(false); aFinalParticle.AddLabel("absorbed"); - aFinalParticle.SetMomentum(-1.0 * anInitialParticle.GetMomentum()); - aFinalParticle.SetKineticEnergy(0); - intmsg(eNormal) << " particle absorption occurred on child surface <" << tCurrentSurface->GetName() << ">" << eom; + aFinalParticle.SetMomentum(0., 0., 0.); + intmsg(eNormal) << " particle absorption occurred on child surface <" + << (tCurrentSurface != nullptr ? tCurrentSurface->GetName() + : anInitialParticle.GetCurrentSide()->GetName()) + << ">" << eom; } } else From 56ddce2ea33516c15b54fdb87f44a872754ad730 Mon Sep 17 00:00:00 2001 From: Richard Salomon Date: Mon, 8 Jun 2026 09:59:41 +0200 Subject: [PATCH 3/6] Wrap debug statements with #ifdef Kassiopeia_ENABLE_DEBUG --- .../Source/KSIntSurfaceScattering.cxx | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx b/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx index 5d6494568..f4e39d582 100644 --- a/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx +++ b/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx @@ -52,12 +52,13 @@ void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParti { double tChoice; KSSurface* tCurrentSurface = anInitialParticle.GetCurrentSurface(); - - intmsg_debug("*************** initial particle" << eom); + #ifdef Kassiopeia_ENABLE_DEBUG + intmsg_debug("*************** initial particle" << eom); anInitialParticle.Print(); -#endif + intmsg_debug("*************** initial particle kinetic energy = " << anInitialParticle.GetKineticEnergy_eV() << " eV" << eom); +#endif // figure out the basis directions for the particle ejection // eject it with a diffuse 'Lambertian' distribution @@ -125,12 +126,14 @@ void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParti aFinalParticle = anInitialParticle; aFinalParticle.AddLabel("transmitted"); } - - intmsg(eInfo) << "*************** final particle" << eom; + +#ifdef Kassiopeia_ENABLE_DEBUG + intmsg_debug("*************** final particle" << eom); aFinalParticle.Print(); - intmsg(eInfo) << "*************** secondaries" << eom; + intmsg_debug("*************** secondaries" << eom); for (KSParticle* sec : aSecondaries) sec->Print(); - +#endif + return; } From 62d986b848b3b869b08add488a2109359077dd27 Mon Sep 17 00:00:00 2001 From: Richard Salomon Date: Mon, 8 Jun 2026 10:10:22 +0200 Subject: [PATCH 4/6] Update bindings documentation Ran Scripts/gen-bindings-docs.sh to regenerate the documentation. The diff includes some other previous PRs. --- .../Bindings/bindings_Kassiopeia.svg | 25417 ++++++++-------- Documentation/Bindings/bindings_full.md | 18 +- Documentation/Bindings/bindings_full.rst | 54 +- Documentation/Bindings/bindings_full.svg | 6974 ++--- Documentation/Bindings/bindings_full.xml | 32 + .../Bindings/bindings_full_examples.md | 350 +- 6 files changed, 16621 insertions(+), 16224 deletions(-) diff --git a/Documentation/Bindings/bindings_Kassiopeia.svg b/Documentation/Bindings/bindings_Kassiopeia.svg index c892d2bc0..0524f42fe 100644 --- a/Documentation/Bindings/bindings_Kassiopeia.svg +++ b/Documentation/Bindings/bindings_Kassiopeia.svg @@ -4,25847 +4,26090 @@ - - + + %3 - + cluster_KSRoot - -KSRoot + +KSRoot cluster_KESSElasticElsepa - -KESSElasticElsepa + +KESSElasticElsepa cluster_KESSInelasticBetheFano - -KESSInelasticBetheFano + +KESSInelasticBetheFano cluster_KESSInelasticPenn - -KESSInelasticPenn + +KESSInelasticPenn cluster_KESSSurfaceInteraction - -KESSSurfaceInteraction + +KESSSurfaceInteraction cluster_KSCommandGroup - -KSCommandGroup + +KSCommandGroup cluster_KSCommandGroup - -KSCommandGroup + +KSCommandGroup cluster_KSCommandMemberData - -KSCommandMemberData + +KSCommandMemberData cluster_KSComponentDeltaData - -KSComponentDeltaData + +KSComponentDeltaData cluster_KSComponentIntegralData - -KSComponentIntegralData + +KSComponentIntegralData cluster_KSComponentMathData - -KSComponentMathData + +KSComponentMathData cluster_KSComponentMaximumData - -KSComponentMaximumData + +KSComponentMaximumData cluster_KSComponentMaximumAtData - -KSComponentMaximumAtData + +KSComponentMaximumAtData cluster_KSComponentMemberData - -KSComponentMemberData + +KSComponentMemberData cluster_KSComponentMinimumData - -KSComponentMinimumData + +KSComponentMinimumData cluster_KSComponentMinimumAtData - -KSComponentMinimumAtData + +KSComponentMinimumAtData cluster_KSRootElectricField - -KSRootElectricField + +KSRootElectricField cluster_KSRootEventModifier - -KSRootEventModifier + +KSRootEventModifier cluster_KSRootGenerator - -KSRootGenerator + +KSRootGenerator cluster_KSRootMagneticField - -KSRootMagneticField + +KSRootMagneticField cluster_KSRootRunModifier - -KSRootRunModifier + +KSRootRunModifier cluster_KSRootSpaceInteraction - -KSRootSpaceInteraction + +KSRootSpaceInteraction cluster_KSRootSpaceNavigator - -KSRootSpaceNavigator + +KSRootSpaceNavigator cluster_KSRootStepModifier - -KSRootStepModifier + +KSRootStepModifier cluster_KSRootSurfaceInteraction - -KSRootSurfaceInteraction + +KSRootSurfaceInteraction cluster_KSRootSurfaceNavigator - -KSRootSurfaceNavigator + +KSRootSurfaceNavigator cluster_KSRootTerminator - -KSRootTerminator + +KSRootTerminator cluster_KSRootTrackModifier - -KSRootTrackModifier + +KSRootTrackModifier cluster_KSRootTrajectory - -KSRootTrajectory + +KSRootTrajectory cluster_KSRootWriter - -KSRootWriter + +KSRootWriter cluster_KSSimulation - -KSSimulation + +KSSimulation cluster_KSGenDirectionSphericalComposite - -KSGenDirectionSphericalComposite + +KSGenDirectionSphericalComposite cluster_KSGenValueFermi - -KSGenValueFermi + +KSGenValueFermi cluster_KSGenValueFix - -KSGenValueFix + +KSGenValueFix cluster_KSGenValueFormula - -KSGenValueFormula + +KSGenValueFormula cluster_KSGenValueGauss - -KSGenValueGauss + +KSGenValueGauss cluster_KSGenValueGeneralizedGauss - -KSGenValueGeneralizedGauss + +KSGenValueGeneralizedGauss cluster_KSGenValueHistogram - -KSGenValueHistogram + +KSGenValueHistogram cluster_KSGenValueList - -KSGenValueList + +KSGenValueList cluster_KSGenValueSet - -KSGenValueSet + +KSGenValueSet cluster_KSGenValueUniform - -KSGenValueUniform + +KSGenValueUniform cluster_KSGenValueAngleCosine - -KSGenValueAngleCosine + +KSGenValueAngleCosine cluster_KSGenValueAngleSpherical - -KSGenValueAngleSpherical + +KSGenValueAngleSpherical cluster_KSGenValueFermi - -KSGenValueFermi + +KSGenValueFermi cluster_KSGenValueFix - -KSGenValueFix + +KSGenValueFix cluster_KSGenValueFormula - -KSGenValueFormula + +KSGenValueFormula cluster_KSGenValueGauss - -KSGenValueGauss + +KSGenValueGauss cluster_KSGenValueGeneralizedGauss - -KSGenValueGeneralizedGauss + +KSGenValueGeneralizedGauss cluster_KSGenValueHistogram - -KSGenValueHistogram + +KSGenValueHistogram cluster_KSGenValueList - -KSGenValueList + +KSGenValueList cluster_KSGenValueSet - -KSGenValueSet + +KSGenValueSet cluster_KSGenValueUniform - -KSGenValueUniform + +KSGenValueUniform cluster_KSGenValueAngleCosine - -KSGenValueAngleCosine + +KSGenValueAngleCosine cluster_KSGenValueAngleSpherical - -KSGenValueAngleSpherical + +KSGenValueAngleSpherical cluster_KSGenDirectionSphericalMagneticField - -KSGenDirectionSphericalMagneticField + +KSGenDirectionSphericalMagneticField cluster_KSGenDirectionSurfaceComposite - -KSGenDirectionSurfaceComposite + +KSGenDirectionSurfaceComposite cluster_KSGenEnergyBetaDecay - -KSGenEnergyBetaDecay + +KSGenEnergyBetaDecay cluster_KSGenEnergyBetaRecoil - -KSGenEnergyBetaRecoil + +KSGenEnergyBetaRecoil cluster_KSGenEnergyComposite - -KSGenEnergyComposite + +KSGenEnergyComposite cluster_KSGenValueFermi - -KSGenValueFermi + +KSGenValueFermi cluster_KSGenValueFix - -KSGenValueFix + +KSGenValueFix cluster_KSGenValueFormula - -KSGenValueFormula + +KSGenValueFormula cluster_KSGenValueGauss - -KSGenValueGauss + +KSGenValueGauss cluster_KSGenValueGeneralizedGauss - -KSGenValueGeneralizedGauss + +KSGenValueGeneralizedGauss cluster_KSGenValueHistogram - -KSGenValueHistogram + +KSGenValueHistogram cluster_KSGenValueList - -KSGenValueList + +KSGenValueList cluster_KSGenValueSet - -KSGenValueSet + +KSGenValueSet cluster_KSGenValueUniform - -KSGenValueUniform + +KSGenValueUniform cluster_KSGenValueBoltzmann - -KSGenValueBoltzmann + +KSGenValueBoltzmann cluster_KSGenValueBoltzmann - -KSGenValueBoltzmann + +KSGenValueBoltzmann cluster_KSGenEnergyKryptonEvent - -KSGenEnergyKryptonEvent + +KSGenEnergyKryptonEvent cluster_KSGenEnergyLeadEvent - -KSGenEnergyLeadEvent + +KSGenEnergyLeadEvent cluster_KSGenEnergyRadonEvent - -KSGenEnergyRadonEvent + +KSGenEnergyRadonEvent cluster_KSGenEnergyRydberg - -KSGenEnergyRydberg + +KSGenEnergyRydberg cluster_KSGenGeneratorComposite - -KSGenGeneratorComposite + +KSGenGeneratorComposite cluster_KSGenDirectionSphericalComposite - -KSGenDirectionSphericalComposite + +KSGenDirectionSphericalComposite cluster_KSGenValueFix - -KSGenValueFix + +KSGenValueFix cluster_KSGenValueFormula - -KSGenValueFormula + +KSGenValueFormula cluster_KSGenValueGauss - -KSGenValueGauss + +KSGenValueGauss cluster_KSGenValueHistogram - -KSGenValueHistogram + +KSGenValueHistogram cluster_KSGenValueList - -KSGenValueList + +KSGenValueList cluster_KSGenValueSet - -KSGenValueSet + +KSGenValueSet cluster_KSGenValueUniform - -KSGenValueUniform + +KSGenValueUniform cluster_KSGenDirectionSphericalMagneticField - -KSGenDirectionSphericalMagneticField + +KSGenDirectionSphericalMagneticField cluster_KSGenDirectionSurfaceComposite - -KSGenDirectionSurfaceComposite + +KSGenDirectionSurfaceComposite cluster_KSGenEnergyBetaDecay - -KSGenEnergyBetaDecay + +KSGenEnergyBetaDecay cluster_KSGenEnergyBetaRecoil - -KSGenEnergyBetaRecoil + +KSGenEnergyBetaRecoil cluster_KSGenEnergyComposite - -KSGenEnergyComposite + +KSGenEnergyComposite cluster_KSGenEnergyKryptonEvent - -KSGenEnergyKryptonEvent + +KSGenEnergyKryptonEvent cluster_KSGenEnergyLeadEvent - -KSGenEnergyLeadEvent + +KSGenEnergyLeadEvent cluster_KSGenEnergyRadonEvent - -KSGenEnergyRadonEvent + +KSGenEnergyRadonEvent cluster_KSGenEnergyRydberg - -KSGenEnergyRydberg + +KSGenEnergyRydberg cluster_KSGenLComposite - -KSGenLComposite + +KSGenLComposite cluster_KSGenValueFix - -KSGenValueFix + +KSGenValueFix cluster_KSGenValueFormula - -KSGenValueFormula + +KSGenValueFormula cluster_KSGenValueGauss - -KSGenValueGauss + +KSGenValueGauss cluster_KSGenValueList - -KSGenValueList + +KSGenValueList cluster_KSGenValueSet - -KSGenValueSet + +KSGenValueSet cluster_KSGenValueUniform - -KSGenValueUniform + +KSGenValueUniform cluster_KSGenLStatistical - -KSGenLStatistical + +KSGenLStatistical cluster_KSGenLUniformMaxN - -KSGenLUniformMaxN + +KSGenLUniformMaxN cluster_KSGenMomentumRectangularComposite - -KSGenMomentumRectangularComposite + +KSGenMomentumRectangularComposite cluster_KSGenValueFix - -KSGenValueFix + +KSGenValueFix cluster_KSGenValueFormula - -KSGenValueFormula + +KSGenValueFormula cluster_KSGenValueGauss - -KSGenValueGauss + +KSGenValueGauss cluster_KSGenValueHistogram - -KSGenValueHistogram + +KSGenValueHistogram cluster_KSGenValueList - -KSGenValueList + +KSGenValueList cluster_KSGenValueSet - -KSGenValueSet + +KSGenValueSet cluster_KSGenValueUniform - -KSGenValueUniform + +KSGenValueUniform cluster_KSGenNComposite - -KSGenNComposite + +KSGenNComposite cluster_KSGenValueFix - -KSGenValueFix + +KSGenValueFix cluster_KSGenValueFormula - -KSGenValueFormula + +KSGenValueFormula cluster_KSGenValueGauss - -KSGenValueGauss + +KSGenValueGauss cluster_KSGenValueList - -KSGenValueList + +KSGenValueList cluster_KSGenValueSet - -KSGenValueSet + +KSGenValueSet cluster_KSGenValueUniform - -KSGenValueUniform + +KSGenValueUniform cluster_KSGenValuePareto - -KSGenValuePareto + +KSGenValuePareto cluster_KSGenValuePareto - -KSGenValuePareto + +KSGenValuePareto cluster_KSGenPositionCylindricalComposite - -KSGenPositionCylindricalComposite + +KSGenPositionCylindricalComposite cluster_KSGenValueFix - -KSGenValueFix + +KSGenValueFix cluster_KSGenValueFormula - -KSGenValueFormula + +KSGenValueFormula cluster_KSGenValueGauss - -KSGenValueGauss + +KSGenValueGauss cluster_KSGenValueHistogram - -KSGenValueHistogram + +KSGenValueHistogram cluster_KSGenValueList - -KSGenValueList + +KSGenValueList cluster_KSGenValueSet - -KSGenValueSet + +KSGenValueSet cluster_KSGenValueUniform - -KSGenValueUniform + +KSGenValueUniform cluster_KSGenValueRadiusCylindrical - -KSGenValueRadiusCylindrical + +KSGenValueRadiusCylindrical cluster_KSGenValueRadiusFraction - -KSGenValueRadiusFraction + +KSGenValueRadiusFraction cluster_KSGenPositionFluxTube - -KSGenPositionFluxTube + +KSGenPositionFluxTube cluster_KSGenPositionFrustrumComposite - -KSGenPositionFrustrumComposite + +KSGenPositionFrustrumComposite cluster_KSGenValueFix - -KSGenValueFix + +KSGenValueFix cluster_KSGenValueZFrustrum - -KSGenValueZFrustrum + +KSGenValueZFrustrum cluster_KSGenPositionHomogeneousFluxTube - -KSGenPositionHomogeneousFluxTube + +KSGenPositionHomogeneousFluxTube cluster_KSGenPositionMask - -KSGenPositionMask + +KSGenPositionMask cluster_KSGenPositionMeshSurfaceRandom - -KSGenPositionMeshSurfaceRandom + +KSGenPositionMeshSurfaceRandom cluster_KSGenPositionRectangularComposite - -KSGenPositionRectangularComposite + +KSGenPositionRectangularComposite cluster_KSGenPositionSpaceRandom - -KSGenPositionSpaceRandom + +KSGenPositionSpaceRandom cluster_KSGenPositionSphericalComposite - -KSGenPositionSphericalComposite + +KSGenPositionSphericalComposite cluster_KSGenValueRadiusSpherical - -KSGenValueRadiusSpherical + +KSGenValueRadiusSpherical cluster_KSGenPositionSurfaceAdjustmentStep - -KSGenPositionSurfaceAdjustmentStep + +KSGenPositionSurfaceAdjustmentStep cluster_KSGenPositionSurfaceRandom - -KSGenPositionSurfaceRandom + +KSGenPositionSurfaceRandom cluster_KSGenSpinComposite - -KSGenSpinComposite + +KSGenSpinComposite cluster_KSGenSpinRelativeComposite - -KSGenSpinRelativeComposite + +KSGenSpinRelativeComposite cluster_KSGenTimeComposite - -KSGenTimeComposite + +KSGenTimeComposite cluster_KSGenValueFermi - -KSGenValueFermi + +KSGenValueFermi cluster_KSGenValueFix - -KSGenValueFix + +KSGenValueFix cluster_KSGenValueFormula - -KSGenValueFormula + +KSGenValueFormula cluster_KSGenValueGauss - -KSGenValueGauss + +KSGenValueGauss cluster_KSGenValueGeneralizedGauss - -KSGenValueGeneralizedGauss + +KSGenValueGeneralizedGauss cluster_KSGenValueHistogram - -KSGenValueHistogram + +KSGenValueHistogram cluster_KSGenValueList - -KSGenValueList + +KSGenValueList cluster_KSGenValueSet - -KSGenValueSet + +KSGenValueSet cluster_KSGenValueUniform - -KSGenValueUniform + +KSGenValueUniform cluster_KSGenLComposite - -KSGenLComposite + +KSGenLComposite cluster_KSGenLStatistical - -KSGenLStatistical + +KSGenLStatistical cluster_KSGenLUniformMaxN - -KSGenLUniformMaxN + +KSGenLUniformMaxN cluster_KSGenMomentumRectangularComposite - -KSGenMomentumRectangularComposite + +KSGenMomentumRectangularComposite cluster_KSGenNComposite - -KSGenNComposite + +KSGenNComposite cluster_KSGenValuePareto - -KSGenValuePareto + +KSGenValuePareto cluster_KSGenPositionCylindricalComposite - -KSGenPositionCylindricalComposite + +KSGenPositionCylindricalComposite cluster_KSGenValueRadiusCylindrical - -KSGenValueRadiusCylindrical + +KSGenValueRadiusCylindrical cluster_KSGenValueRadiusFraction - -KSGenValueRadiusFraction + +KSGenValueRadiusFraction cluster_KSGenPositionFluxTube - -KSGenPositionFluxTube + +KSGenPositionFluxTube cluster_KSGenPositionFrustrumComposite - -KSGenPositionFrustrumComposite + +KSGenPositionFrustrumComposite cluster_KSGenValueZFrustrum - -KSGenValueZFrustrum + +KSGenValueZFrustrum cluster_KSGenPositionHomogeneousFluxTube - -KSGenPositionHomogeneousFluxTube + +KSGenPositionHomogeneousFluxTube cluster_KSGenPositionMask - -KSGenPositionMask + +KSGenPositionMask cluster_KSGenPositionMeshSurfaceRandom - -KSGenPositionMeshSurfaceRandom + +KSGenPositionMeshSurfaceRandom cluster_KSGenPositionRectangularComposite - -KSGenPositionRectangularComposite + +KSGenPositionRectangularComposite cluster_KSGenPositionSpaceRandom - -KSGenPositionSpaceRandom + +KSGenPositionSpaceRandom cluster_KSGenPositionSphericalComposite - -KSGenPositionSphericalComposite + +KSGenPositionSphericalComposite cluster_KSGenValueRadiusSpherical - -KSGenValueRadiusSpherical + +KSGenValueRadiusSpherical cluster_KSGenPositionSurfaceAdjustmentStep - -KSGenPositionSurfaceAdjustmentStep + +KSGenPositionSurfaceAdjustmentStep cluster_KSGenPositionSurfaceRandom - -KSGenPositionSurfaceRandom + +KSGenPositionSurfaceRandom cluster_KSGenSpinComposite - -KSGenSpinComposite + +KSGenSpinComposite cluster_KSGenSpinRelativeComposite - -KSGenSpinRelativeComposite + +KSGenSpinRelativeComposite cluster_KSGenTimeComposite - -KSGenTimeComposite + +KSGenTimeComposite cluster_KSGenGeneratorTextFile - -KSGenGeneratorTextFile + +KSGenGeneratorTextFile cluster_KSGenGeneratorSimulation - -KSGenGeneratorSimulation + +KSGenGeneratorSimulation cluster_KSGeoSide - -KSGeoSide + +KSGeoSide cluster_KSCommandMemberData - -KSCommandMemberData + +KSCommandMemberData cluster_KSGeoSpace - -KSGeoSpace + +KSGeoSpace cluster_KSGeoSide - -KSGeoSide + +KSGeoSide cluster_KSGeoSpace - -KSGeoSpace + +KSGeoSpace cluster_KSGeoSurface - -KSGeoSurface + +KSGeoSurface cluster_KSGeoSurface - -KSGeoSurface + +KSGeoSurface cluster_KSIntCalculatorConstant - -KSIntCalculatorConstant + +KSIntCalculatorConstant cluster_KSIntCalculatorIon - -KSIntCalculatorIon + +KSIntCalculatorIon +cluster_KSIntCalculatorMott + +KSIntCalculatorMott + + cluster_KSIntDecay - -KSIntDecay + +KSIntDecay - + cluster_KSIntDecayCalculatorDeathConstRate - -KSIntDecayCalculatorDeathConstRate + +KSIntDecayCalculatorDeathConstRate - + cluster_KSGenGeneratorComposite - -KSGenGeneratorComposite + +KSGenGeneratorComposite - + cluster_KSIntDecayCalculatorFerencBBRTransition - -KSIntDecayCalculatorFerencBBRTransition + +KSIntDecayCalculatorFerencBBRTransition - + cluster_KSIntDecayCalculatorFerencIonisation - -KSIntDecayCalculatorFerencIonisation + +KSIntDecayCalculatorFerencIonisation - + cluster_KSIntDecayCalculatorFerencSpontaneous - -KSIntDecayCalculatorFerencSpontaneous + +KSIntDecayCalculatorFerencSpontaneous - + cluster_KSIntDecayCalculatorGlukhovDeExcitation - -KSIntDecayCalculatorGlukhovDeExcitation + +KSIntDecayCalculatorGlukhovDeExcitation - + cluster_KSIntDecayCalculatorGlukhovExcitation - -KSIntDecayCalculatorGlukhovExcitation + +KSIntDecayCalculatorGlukhovExcitation - + cluster_KSIntDecayCalculatorGlukhovIonisation - -KSIntDecayCalculatorGlukhovIonisation + +KSIntDecayCalculatorGlukhovIonisation - + cluster_KSIntDecayCalculatorGlukhovSpontaneous - -KSIntDecayCalculatorGlukhovSpontaneous + +KSIntDecayCalculatorGlukhovSpontaneous - + cluster_KSIntDecayCalculatorDeathConstRate - -KSIntDecayCalculatorDeathConstRate + +KSIntDecayCalculatorDeathConstRate - + cluster_KSIntDecayCalculatorFerencBBRTransition - -KSIntDecayCalculatorFerencBBRTransition + +KSIntDecayCalculatorFerencBBRTransition - + cluster_KSIntDecayCalculatorFerencIonisation - -KSIntDecayCalculatorFerencIonisation + +KSIntDecayCalculatorFerencIonisation - + cluster_KSIntDecayCalculatorFerencSpontaneous - -KSIntDecayCalculatorFerencSpontaneous + +KSIntDecayCalculatorFerencSpontaneous - + cluster_KSIntDecayCalculatorGlukhovDeExcitation - -KSIntDecayCalculatorGlukhovDeExcitation + +KSIntDecayCalculatorGlukhovDeExcitation - + cluster_KSIntDecayCalculatorGlukhovExcitation - -KSIntDecayCalculatorGlukhovExcitation + +KSIntDecayCalculatorGlukhovExcitation - + cluster_KSIntDecayCalculatorGlukhovIonisation - -KSIntDecayCalculatorGlukhovIonisation + +KSIntDecayCalculatorGlukhovIonisation - + cluster_KSIntDecayCalculatorGlukhovSpontaneous - -KSIntDecayCalculatorGlukhovSpontaneous + +KSIntDecayCalculatorGlukhovSpontaneous - + cluster_KSIntDensityConstant - -KSIntDensityConstant + +KSIntDensityConstant - + cluster_KSIntScattering - -KSIntScattering + +KSIntScattering - + cluster_KSIntCalculatorConstant - -KSIntCalculatorConstant + +KSIntCalculatorConstant - + cluster_KSIntCalculatorIon - -KSIntCalculatorIon + +KSIntCalculatorIon - + +cluster_KSIntCalculatorMott + +KSIntCalculatorMott + + cluster_KSIntDensityConstant - -KSIntDensityConstant + +KSIntDensityConstant - + cluster_KSIntCalculatorArgonSet - -KSIntCalculatorArgonSet + +KSIntCalculatorArgonSet - + cluster_KSIntCalculatorHydrogenSet - -KSIntCalculatorHydrogenSet + +KSIntCalculatorHydrogenSet - + cluster_KSIntCalculatorKESSSet - -KSIntCalculatorKESSSet + +KSIntCalculatorKESSSet - + cluster_KSIntSpinFlip - -KSIntSpinFlip + +KSIntSpinFlip - + cluster_KSIntSpinFlipPulse - -KSIntSpinFlipPulse + +KSIntSpinFlipPulse - + cluster_KSIntSpinRotateYPulse - -KSIntSpinRotateYPulse + +KSIntSpinRotateYPulse - + cluster_KSIntSurfaceUCN - -KSIntSurfaceUCN + +KSIntSurfaceUCN - + cluster_KSIntSurfaceDiffuse - -KSIntSurfaceDiffuse + +KSIntSurfaceDiffuse - + cluster_KSIntSurfaceMultiplication - -KSIntSurfaceMultiplication + +KSIntSurfaceMultiplication - + +cluster_KSIntSurfaceScattering + +KSIntSurfaceScattering + + cluster_KSIntSurfaceSpecular - -KSIntSurfaceSpecular + +KSIntSurfaceSpecular - + cluster_KSIntSurfaceSpinFlip - -KSIntSurfaceSpinFlip + +KSIntSurfaceSpinFlip - + cluster_KSModDynamicEnhancement - -KSModDynamicEnhancement + +KSModDynamicEnhancement - + cluster_KSModEventReport - -KSModEventReport + +KSModEventReport - + cluster_KSModSplitOnTurn - -KSModSplitOnTurn + +KSModSplitOnTurn - + cluster_KSNavMeshedSpace - -KSNavMeshedSpace + +KSNavMeshedSpace - + cluster_KSNavSpace - -KSNavSpace + +KSNavSpace - + cluster_KSNavSurface - -KSNavSurface + +KSNavSurface - + cluster_KSTermDeath - -KSTermDeath + +KSTermDeath - + cluster_KSTermMagnetron - -KSTermMagnetron + +KSTermMagnetron - + cluster_KSTermMaxEnergy - -KSTermMaxEnergy + +KSTermMaxEnergy - + cluster_KSTermMaxLength - -KSTermMaxLength + +KSTermMaxLength - + cluster_KSTermMaxLongEnergy - -KSTermMaxLongEnergy + +KSTermMaxLongEnergy - + cluster_KSTermMaxR - -KSTermMaxR + +KSTermMaxR - + cluster_KSTermMaxStepTime - -KSTermMaxStepTime + +KSTermMaxStepTime - + cluster_KSTermMaxSteps - -KSTermMaxSteps + +KSTermMaxSteps - + cluster_KSTermMaxTime - -KSTermMaxTime + +KSTermMaxTime - + cluster_KSTermMaxTotalTime - -KSTermMaxTotalTime + +KSTermMaxTotalTime - + cluster_KSTermMaxZ - -KSTermMaxZ + +KSTermMaxZ - + cluster_KSTermMinDistance - -KSTermMinDistance + +KSTermMinDistance - + cluster_KSTermMinEnergy - -KSTermMinEnergy + +KSTermMinEnergy - + cluster_KSTermMinLongEnergy - -KSTermMinLongEnergy + +KSTermMinLongEnergy - + cluster_KSTermMinR - -KSTermMinR + +KSTermMinR - + cluster_KSTermMinZ - -KSTermMinZ + +KSTermMinZ - + cluster_KSTermOutputData - -KSTermOutputData + +KSTermOutputData - + cluster_KSTermSecondaries - -KSTermSecondaries + +KSTermSecondaries - + cluster_KSTermStepsize - -KSTermStepsize + +KSTermStepsize - + cluster_KSTermTrapped - -KSTermTrapped + +KSTermTrapped - + cluster_KSTermZHRadius - -KSTermZHRadius + +KSTermZHRadius - + cluster_KSTrajControlBChange - -KSTrajControlBChange + +KSTrajControlBChange - + cluster_KSTrajControlCyclotron - -KSTrajControlCyclotron + +KSTrajControlCyclotron - + cluster_KSTrajControlEnergy - -KSTrajControlEnergy + +KSTrajControlEnergy - + cluster_KSTrajControlLength - -KSTrajControlLength + +KSTrajControlLength - + cluster_KSTrajControlMDot - -KSTrajControlMDot + +KSTrajControlMDot - + cluster_KSTrajControlMagneticMoment - -KSTrajControlMagneticMoment + +KSTrajControlMagneticMoment - + cluster_KSTrajControlMomentumNumericalError - -KSTrajControlMomentumNumericalError + +KSTrajControlMomentumNumericalError - + cluster_KSTrajControlPositionNumericalError - -KSTrajControlPositionNumericalError + +KSTrajControlPositionNumericalError - + cluster_KSTrajControlSpinPrecession - -KSTrajControlSpinPrecession + +KSTrajControlSpinPrecession - + cluster_KSTrajControlTime - -KSTrajControlTime + +KSTrajControlTime - + cluster_KSTrajIntegratorRK54 - -KSTrajIntegratorRK54 + +KSTrajIntegratorRK54 - + cluster_KSTrajIntegratorRK65 - -KSTrajIntegratorRK65 + +KSTrajIntegratorRK65 - + cluster_KSTrajIntegratorRK8 - -KSTrajIntegratorRK8 + +KSTrajIntegratorRK8 - + cluster_KSTrajIntegratorRK86 - -KSTrajIntegratorRK86 + +KSTrajIntegratorRK86 - + cluster_KSTrajIntegratorRK87 - -KSTrajIntegratorRK87 + +KSTrajIntegratorRK87 - + cluster_KSTrajIntegratorRKDP54 - -KSTrajIntegratorRKDP54 + +KSTrajIntegratorRKDP54 - + cluster_KSTrajIntegratorRKDP853 - -KSTrajIntegratorRKDP853 + +KSTrajIntegratorRKDP853 - + cluster_KSTrajIntegratorSym4 - -KSTrajIntegratorSym4 + +KSTrajIntegratorSym4 - + cluster_KSTrajInterpolatorContinuousRungeKutta - -KSTrajInterpolatorContinuousRungeKutta + +KSTrajInterpolatorContinuousRungeKutta - + cluster_KSTrajInterpolatorFast - -KSTrajInterpolatorFast + +KSTrajInterpolatorFast - + cluster_KSTrajInterpolatorHermite - -KSTrajInterpolatorHermite + +KSTrajInterpolatorHermite - + cluster_KSTrajTermConstantForcePropagation - -KSTrajTermConstantForcePropagation + +KSTrajTermConstantForcePropagation - + cluster_KSTrajTermDrift - -KSTrajTermDrift + +KSTrajTermDrift - + cluster_KSTrajTermGravity - -KSTrajTermGravity + +KSTrajTermGravity - + cluster_KSTrajTermGyration - -KSTrajTermGyration + +KSTrajTermGyration - + cluster_KSTrajTermPropagation - -KSTrajTermPropagation + +KSTrajTermPropagation - + cluster_KSTrajTermSynchrotron - -KSTrajTermSynchrotron + +KSTrajTermSynchrotron - + cluster_KSTrajTrajectoryAdiabatic - -KSTrajTrajectoryAdiabatic + +KSTrajTrajectoryAdiabatic - + cluster_KSTrajControlBChange - -KSTrajControlBChange + +KSTrajControlBChange - + cluster_KSTrajControlCyclotron - -KSTrajControlCyclotron + +KSTrajControlCyclotron - + cluster_KSTrajControlEnergy - -KSTrajControlEnergy + +KSTrajControlEnergy - + cluster_KSTrajControlLength - -KSTrajControlLength + +KSTrajControlLength - + cluster_KSTrajControlMagneticMoment - -KSTrajControlMagneticMoment + +KSTrajControlMagneticMoment - + cluster_KSTrajControlMomentumNumericalError - -KSTrajControlMomentumNumericalError + +KSTrajControlMomentumNumericalError - + cluster_KSTrajControlPositionNumericalError - -KSTrajControlPositionNumericalError + +KSTrajControlPositionNumericalError - + cluster_KSTrajControlTime - -KSTrajControlTime + +KSTrajControlTime - + cluster_KSTrajIntegratorRK54 - -KSTrajIntegratorRK54 + +KSTrajIntegratorRK54 - + cluster_KSTrajIntegratorRK65 - -KSTrajIntegratorRK65 + +KSTrajIntegratorRK65 - + cluster_KSTrajIntegratorRK8 - -KSTrajIntegratorRK8 + +KSTrajIntegratorRK8 - + cluster_KSTrajIntegratorRK86 - -KSTrajIntegratorRK86 + +KSTrajIntegratorRK86 - + cluster_KSTrajIntegratorRK87 - -KSTrajIntegratorRK87 + +KSTrajIntegratorRK87 - + cluster_KSTrajIntegratorRKDP54 - -KSTrajIntegratorRKDP54 + +KSTrajIntegratorRKDP54 - + cluster_KSTrajIntegratorRKDP853 - -KSTrajIntegratorRKDP853 + +KSTrajIntegratorRKDP853 - + cluster_KSTrajInterpolatorContinuousRungeKutta - -KSTrajInterpolatorContinuousRungeKutta + +KSTrajInterpolatorContinuousRungeKutta - + cluster_KSTrajInterpolatorFast - -KSTrajInterpolatorFast + +KSTrajInterpolatorFast - + cluster_KSTrajInterpolatorHermite - -KSTrajInterpolatorHermite + +KSTrajInterpolatorHermite - + cluster_KSTrajTermDrift - -KSTrajTermDrift + +KSTrajTermDrift - + cluster_KSTrajTermGyration - -KSTrajTermGyration + +KSTrajTermGyration - + cluster_KSTrajTermPropagation - -KSTrajTermPropagation + +KSTrajTermPropagation - + cluster_KSTrajTermSynchrotron - -KSTrajTermSynchrotron + +KSTrajTermSynchrotron - + cluster_KSTrajTrajectoryAdiabaticSpin - -KSTrajTrajectoryAdiabaticSpin + +KSTrajTrajectoryAdiabaticSpin - + cluster_KSTrajControlMDot - -KSTrajControlMDot + +KSTrajControlMDot - + cluster_KSTrajControlSpinPrecession - -KSTrajControlSpinPrecession + +KSTrajControlSpinPrecession - + cluster_KSTrajTermGravity - -KSTrajTermGravity + +KSTrajTermGravity - + cluster_KSTrajTrajectoryElectric - -KSTrajTrajectoryElectric + +KSTrajTrajectoryElectric - + cluster_KSTrajTrajectoryExact - -KSTrajTrajectoryExact + +KSTrajTrajectoryExact - + cluster_KSTrajTrajectoryExactSpin - -KSTrajTrajectoryExactSpin + +KSTrajTrajectoryExactSpin - + cluster_KSTrajTrajectoryExactTrapped - -KSTrajTrajectoryExactTrapped + +KSTrajTrajectoryExactTrapped - + cluster_KSTrajIntegratorSym4 - -KSTrajIntegratorSym4 + +KSTrajIntegratorSym4 - + cluster_KSTrajTrajectoryLinear - -KSTrajTrajectoryLinear + +KSTrajTrajectoryLinear - + cluster_KSTrajTrajectoryMagnetic - -KSTrajTrajectoryMagnetic + +KSTrajTrajectoryMagnetic - + cluster_KSWriteASCII - -KSWriteASCII + +KSWriteASCII - + cluster_KSWriteROOT - -KSWriteROOT + +KSWriteROOT - + cluster_KSWriteROOTConditionOutputData - -KSWriteROOTConditionOutputData + +KSWriteROOTConditionOutputData - + cluster_KSWriteROOTConditionPeriodicData - -KSWriteROOTConditionPeriodicData + +KSWriteROOTConditionPeriodicData - + cluster_KSWriteROOTConditionStepData - -KSWriteROOTConditionStepData + +KSWriteROOTConditionStepData - + cluster_KSWriteROOTConditionTerminatorData - -KSWriteROOTConditionTerminatorData + +KSWriteROOTConditionTerminatorData - + cluster_KSWriteVTK - -KSWriteVTK + +KSWriteVTK KSRoot__kassiopeia - -kassiopeia + +kassiopeia KSRoot__kassiopeia__random_seed - -random_seed + +random_seed KSRoot__kassiopeia->KSRoot__kassiopeia__random_seed - - + + KESSElasticElsepa__kess_elastic_elsepa - -kess_elastic_elsepa + +kess_elastic_elsepa KSRoot__kassiopeia->KESSElasticElsepa__kess_elastic_elsepa - - + + KESSInelasticBetheFano__kess_inelastic_bethefano - -kess_inelastic_bethefano + +kess_inelastic_bethefano KSRoot__kassiopeia->KESSInelasticBetheFano__kess_inelastic_bethefano - - + + KESSInelasticPenn__kess_inelastic_penn - -kess_inelastic_penn + +kess_inelastic_penn KSRoot__kassiopeia->KESSInelasticPenn__kess_inelastic_penn - - + + KESSSurfaceInteraction__kess_surface_interaction - -kess_surface_interaction + +kess_surface_interaction KSRoot__kassiopeia->KESSSurfaceInteraction__kess_surface_interaction - - + + KSCommandGroup__ks_command_group - -ks_command_group + +ks_command_group KSRoot__kassiopeia->KSCommandGroup__ks_command_group - - + + KSCommandMemberData__ks_command_member - -ks_command_member + +ks_command_member KSRoot__kassiopeia->KSCommandMemberData__ks_command_member - - + + KSComponentDeltaData__ks_component_delta - -ks_component_delta + +ks_component_delta KSRoot__kassiopeia->KSComponentDeltaData__ks_component_delta - - + + KSComponentGroup__ks_component_group - -ks_component_group + +ks_component_group KSRoot__kassiopeia->KSComponentGroup__ks_component_group - - + + KSComponentIntegralData__ks_component_integral - -ks_component_integral + +ks_component_integral KSRoot__kassiopeia->KSComponentIntegralData__ks_component_integral - - + + KSComponentMathData__ks_component_math - -ks_component_math + +ks_component_math KSRoot__kassiopeia->KSComponentMathData__ks_component_math - - + + KSComponentMaximumData__ks_component_maximum - -ks_component_maximum + +ks_component_maximum KSRoot__kassiopeia->KSComponentMaximumData__ks_component_maximum - - + + KSComponentMaximumAtData__ks_component_maximum_at - -ks_component_maximum_at + +ks_component_maximum_at KSRoot__kassiopeia->KSComponentMaximumAtData__ks_component_maximum_at - - + + KSComponentMemberData__ks_component_member - -ks_component_member + +ks_component_member KSRoot__kassiopeia->KSComponentMemberData__ks_component_member - - + + KSComponentMinimumData__ks_component_minimum - -ks_component_minimum + +ks_component_minimum KSRoot__kassiopeia->KSComponentMinimumData__ks_component_minimum - - + + KSComponentMinimumAtData__ks_component_minimum_at - -ks_component_minimum_at + +ks_component_minimum_at KSRoot__kassiopeia->KSComponentMinimumAtData__ks_component_minimum_at - - + + KSRootElectricField__ks_root_electric_field - -ks_root_electric_field + +ks_root_electric_field KSRoot__kassiopeia->KSRootElectricField__ks_root_electric_field - - + + KSRootEventModifier__ks_root_event_modifier - -ks_root_event_modifier + +ks_root_event_modifier KSRoot__kassiopeia->KSRootEventModifier__ks_root_event_modifier - - + + KSRootGenerator__ks_root_generator - -ks_root_generator + +ks_root_generator KSRoot__kassiopeia->KSRootGenerator__ks_root_generator - - + + KSRootMagneticField__ks_root_magnetic_field - -ks_root_magnetic_field + +ks_root_magnetic_field KSRoot__kassiopeia->KSRootMagneticField__ks_root_magnetic_field - - + + KSRootRunModifier__ks_root_run_modifier - -ks_root_run_modifier + +ks_root_run_modifier KSRoot__kassiopeia->KSRootRunModifier__ks_root_run_modifier - - + + KSRootSpaceInteraction__ks_root_space_interaction - -ks_root_space_interaction + +ks_root_space_interaction KSRoot__kassiopeia->KSRootSpaceInteraction__ks_root_space_interaction - - + + KSRootSpaceNavigator__ks_root_space_navigator - -ks_root_space_navigator + +ks_root_space_navigator KSRoot__kassiopeia->KSRootSpaceNavigator__ks_root_space_navigator - - + + KSRootStepModifier__ks_root_step_modifier - -ks_root_step_modifier + +ks_root_step_modifier KSRoot__kassiopeia->KSRootStepModifier__ks_root_step_modifier - - + + KSRootSurfaceInteraction__ks_root_surface_interaction - -ks_root_surface_interaction + +ks_root_surface_interaction KSRoot__kassiopeia->KSRootSurfaceInteraction__ks_root_surface_interaction - - + + KSRootSurfaceNavigator__ks_root_surface_navigator - -ks_root_surface_navigator + +ks_root_surface_navigator KSRoot__kassiopeia->KSRootSurfaceNavigator__ks_root_surface_navigator - - + + KSRootTerminator__ks_root_terminator - -ks_root_terminator + +ks_root_terminator KSRoot__kassiopeia->KSRootTerminator__ks_root_terminator - - + + KSRootTrackModifier__ks_root_track_modifier - -ks_root_track_modifier + +ks_root_track_modifier KSRoot__kassiopeia->KSRootTrackModifier__ks_root_track_modifier - - + + KSRootTrajectory__ks_root_trajectory - -ks_root_trajectory + +ks_root_trajectory KSRoot__kassiopeia->KSRootTrajectory__ks_root_trajectory - - + + KSRootWriter__ks_root_writer - -ks_root_writer + +ks_root_writer KSRoot__kassiopeia->KSRootWriter__ks_root_writer - - + + KSSimulation__ks_simulation - -ks_simulation + +ks_simulation KSRoot__kassiopeia->KSSimulation__ks_simulation - - + + KElectrostaticConstantField__ksfield_electric_constant - -ksfield_electric_constant + +ksfield_electric_constant KSRoot__kassiopeia->KElectrostaticConstantField__ksfield_electric_constant - - + + KInducedAzimuthalElectricField__ksfield_electric_induced_azi - -ksfield_electric_induced_azi + +ksfield_electric_induced_azi KSRoot__kassiopeia->KInducedAzimuthalElectricField__ksfield_electric_induced_azi - - + + KElectrostaticPotentialmap__ksfield_electric_potentialmap - -ksfield_electric_potentialmap + +ksfield_electric_potentialmap KSRoot__kassiopeia->KElectrostaticPotentialmap__ksfield_electric_potentialmap - - + + KElectrostaticPotentialmapCalculator__ksfield_electric_potentialmap_calculator - -ksfield_electric_potentialmap_calculator + +ksfield_electric_potentialmap_calculator KSRoot__kassiopeia->KElectrostaticPotentialmapCalculator__ksfield_electric_potentialmap_calculator - - + + KElectricQuadrupoleField__ksfield_electric_quadrupole - -ksfield_electric_quadrupole + +ksfield_electric_quadrupole KSRoot__kassiopeia->KElectricQuadrupoleField__ksfield_electric_quadrupole - - + + KRampedElectricField__ksfield_electric_ramped - -ksfield_electric_ramped + +ksfield_electric_ramped KSRoot__kassiopeia->KRampedElectricField__ksfield_electric_ramped - - + + KRampedElectric2Field__ksfield_electric_ramped_2fields - -ksfield_electric_ramped_2fields + +ksfield_electric_ramped_2fields KSRoot__kassiopeia->KRampedElectric2Field__ksfield_electric_ramped_2fields - - + + KGStaticElectromagnetField__ksfield_electromagnet - -ksfield_electromagnet + +ksfield_electromagnet KSRoot__kassiopeia->KGStaticElectromagnetField__ksfield_electromagnet - - + + KGElectrostaticBoundaryField__ksfield_electrostatic - -ksfield_electrostatic + +ksfield_electrostatic KSRoot__kassiopeia->KGElectrostaticBoundaryField__ksfield_electrostatic - - + + KMagnetostaticConstantField__ksfield_magnetic_constant - -ksfield_magnetic_constant + +ksfield_magnetic_constant KSRoot__kassiopeia->KMagnetostaticConstantField__ksfield_magnetic_constant - - + + KMagneticDipoleField__ksfield_magnetic_dipole - -ksfield_magnetic_dipole + +ksfield_magnetic_dipole KSRoot__kassiopeia->KMagneticDipoleField__ksfield_magnetic_dipole - - + + KMagnetostaticFieldmap__ksfield_magnetic_fieldmap - -ksfield_magnetic_fieldmap + +ksfield_magnetic_fieldmap KSRoot__kassiopeia->KMagnetostaticFieldmap__ksfield_magnetic_fieldmap - - + + KMagnetostaticFieldmapCalculator__ksfield_magnetic_fieldmap_calculator - -ksfield_magnetic_fieldmap_calculator + +ksfield_magnetic_fieldmap_calculator KSRoot__kassiopeia->KMagnetostaticFieldmapCalculator__ksfield_magnetic_fieldmap_calculator - - + + KRampedMagneticField__ksfield_magnetic_ramped - -ksfield_magnetic_ramped + +ksfield_magnetic_ramped KSRoot__kassiopeia->KRampedMagneticField__ksfield_magnetic_ramped - - + + KMagneticSuperpositionField__ksfield_magnetic_super_position - -ksfield_magnetic_super_position + +ksfield_magnetic_super_position KSRoot__kassiopeia->KMagneticSuperpositionField__ksfield_magnetic_super_position - - + + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite - -ksgen_direction_spherical_composite + +ksgen_direction_spherical_composite KSRoot__kassiopeia->KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field - -ksgen_direction_spherical_magnetic_field + +ksgen_direction_spherical_magnetic_field - + KSRoot__kassiopeia->KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite - -ksgen_direction_surface_composite + +ksgen_direction_surface_composite - + KSRoot__kassiopeia->KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite - - + + KSGenEnergyBetaDecay__ksgen_energy_beta_decay - -ksgen_energy_beta_decay + +ksgen_energy_beta_decay - + KSRoot__kassiopeia->KSGenEnergyBetaDecay__ksgen_energy_beta_decay - - + + KSGenEnergyBetaRecoil__ksgen_energy_beta_recoil - -ksgen_energy_beta_recoil + +ksgen_energy_beta_recoil - + KSRoot__kassiopeia->KSGenEnergyBetaRecoil__ksgen_energy_beta_recoil - - + + KSGenEnergyComposite__ksgen_energy_composite - -ksgen_energy_composite + +ksgen_energy_composite - + KSRoot__kassiopeia->KSGenEnergyComposite__ksgen_energy_composite - - + + KSGenEnergyKryptonEvent__ksgen_energy_krypton_event - -ksgen_energy_krypton_event + +ksgen_energy_krypton_event - + KSRoot__kassiopeia->KSGenEnergyKryptonEvent__ksgen_energy_krypton_event - - + + KSGenEnergyLeadEvent__ksgen_energy_lead_event - -ksgen_energy_lead_event + +ksgen_energy_lead_event - + KSRoot__kassiopeia->KSGenEnergyLeadEvent__ksgen_energy_lead_event - - + + KSGenEnergyRadonEvent__ksgen_energy_radon_event - -ksgen_energy_radon_event + +ksgen_energy_radon_event - + KSRoot__kassiopeia->KSGenEnergyRadonEvent__ksgen_energy_radon_event - - + + KSGenEnergyRydberg__ksgen_energy_rydberg - -ksgen_energy_rydberg + +ksgen_energy_rydberg - + KSRoot__kassiopeia->KSGenEnergyRydberg__ksgen_energy_rydberg - - + + KSGenGeneratorComposite__ksgen_generator_composite - -ksgen_generator_composite + +ksgen_generator_composite - + KSRoot__kassiopeia->KSGenGeneratorComposite__ksgen_generator_composite - - + + KSGenGeneratorTextFile__ksgen_generator_file - -ksgen_generator_file + +ksgen_generator_file - + KSRoot__kassiopeia->KSGenGeneratorTextFile__ksgen_generator_file - - + + KSGenGeneratorSimulation__ksgen_generator_simulation - -ksgen_generator_simulation + +ksgen_generator_simulation - + KSRoot__kassiopeia->KSGenGeneratorSimulation__ksgen_generator_simulation - - + + KSGenLComposite__ksgen_l_composite - -ksgen_l_composite + +ksgen_l_composite - + KSRoot__kassiopeia->KSGenLComposite__ksgen_l_composite - - + + KSGenLStatistical__ksgen_l_statistical - -ksgen_l_statistical + +ksgen_l_statistical - + KSRoot__kassiopeia->KSGenLStatistical__ksgen_l_statistical - - + + KSGenLUniformMaxN__ksgen_l_uniform_max_n - -ksgen_l_uniform_max_n + +ksgen_l_uniform_max_n - + KSRoot__kassiopeia->KSGenLUniformMaxN__ksgen_l_uniform_max_n - - + + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite - -ksgen_momentum_rectangular_composite + +ksgen_momentum_rectangular_composite - + KSRoot__kassiopeia->KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite - - + + KSGenNComposite__ksgen_n_composite - -ksgen_n_composite + +ksgen_n_composite - + KSRoot__kassiopeia->KSGenNComposite__ksgen_n_composite - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite - -ksgen_position_cylindrical_composite + +ksgen_position_cylindrical_composite - + KSRoot__kassiopeia->KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite - - + + KSGenPositionFluxTube__ksgen_position_flux_tube - -ksgen_position_flux_tube + +ksgen_position_flux_tube - + KSRoot__kassiopeia->KSGenPositionFluxTube__ksgen_position_flux_tube - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite - -ksgen_position_frustrum_composite + +ksgen_position_frustrum_composite - + KSRoot__kassiopeia->KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite - - + + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube - -ksgen_position_homogeneous_flux_tube + +ksgen_position_homogeneous_flux_tube - + KSRoot__kassiopeia->KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube - - + + KSGenPositionMask__ksgen_position_mask - -ksgen_position_mask + +ksgen_position_mask - + KSRoot__kassiopeia->KSGenPositionMask__ksgen_position_mask - - + + KSGenPositionMeshSurfaceRandom__ksgen_position_mesh_surface_random - -ksgen_position_mesh_surface_random + +ksgen_position_mesh_surface_random - + KSRoot__kassiopeia->KSGenPositionMeshSurfaceRandom__ksgen_position_mesh_surface_random - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite - -ksgen_position_rectangular_composite + +ksgen_position_rectangular_composite - + KSRoot__kassiopeia->KSGenPositionRectangularComposite__ksgen_position_rectangular_composite - - + + KSGenPositionSpaceRandom__ksgen_position_space_random - -ksgen_position_space_random + +ksgen_position_space_random - + KSRoot__kassiopeia->KSGenPositionSpaceRandom__ksgen_position_space_random - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite - -ksgen_position_spherical_composite + +ksgen_position_spherical_composite - + KSRoot__kassiopeia->KSGenPositionSphericalComposite__ksgen_position_spherical_composite - - + + KSGenPositionSurfaceAdjustmentStep__ksgen_position_surface_adjustment_step - -ksgen_position_surface_adjustment_step + +ksgen_position_surface_adjustment_step - + KSRoot__kassiopeia->KSGenPositionSurfaceAdjustmentStep__ksgen_position_surface_adjustment_step - - + + KSGenPositionSurfaceRandom__ksgen_position_surface_random - -ksgen_position_surface_random + +ksgen_position_surface_random - + KSRoot__kassiopeia->KSGenPositionSurfaceRandom__ksgen_position_surface_random - - + + KSGenSpinComposite__ksgen_spin_composite - -ksgen_spin_composite + +ksgen_spin_composite - + KSRoot__kassiopeia->KSGenSpinComposite__ksgen_spin_composite - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative - -ksgen_spin_composite_relative + +ksgen_spin_composite_relative - + KSRoot__kassiopeia->KSGenSpinRelativeComposite__ksgen_spin_composite_relative - - + + KSGenTimeComposite__ksgen_time_composite - -ksgen_time_composite + +ksgen_time_composite - + KSRoot__kassiopeia->KSGenTimeComposite__ksgen_time_composite - - + + KSGenValueAngleCosine__ksgen_value_angle_cosine - -ksgen_value_angle_cosine + +ksgen_value_angle_cosine - + KSRoot__kassiopeia->KSGenValueAngleCosine__ksgen_value_angle_cosine - - + + KSGenValueAngleSpherical__ksgen_value_angle_spherical - -ksgen_value_angle_spherical + +ksgen_value_angle_spherical - + KSRoot__kassiopeia->KSGenValueAngleSpherical__ksgen_value_angle_spherical - - + + KSGenValueBoltzmann__ksgen_value_boltzmann - -ksgen_value_boltzmann + +ksgen_value_boltzmann - + KSRoot__kassiopeia->KSGenValueBoltzmann__ksgen_value_boltzmann - - + + KSGenValueFermi__ksgen_value_fermi - -ksgen_value_fermi + +ksgen_value_fermi - + KSRoot__kassiopeia->KSGenValueFermi__ksgen_value_fermi - - + + KSGenValueFix__ksgen_value_fix - -ksgen_value_fix + +ksgen_value_fix - + KSRoot__kassiopeia->KSGenValueFix__ksgen_value_fix - - + + KSGenValueFormula__ksgen_value_formula - -ksgen_value_formula + +ksgen_value_formula - + KSRoot__kassiopeia->KSGenValueFormula__ksgen_value_formula - - + + KSGenValueGauss__ksgen_value_gauss - -ksgen_value_gauss + +ksgen_value_gauss - + KSRoot__kassiopeia->KSGenValueGauss__ksgen_value_gauss - - + + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss - -ksgen_value_generalized_gauss + +ksgen_value_generalized_gauss - + KSRoot__kassiopeia->KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss - - + + KSGenValueHistogram__ksgen_value_histogram - -ksgen_value_histogram + +ksgen_value_histogram - + KSRoot__kassiopeia->KSGenValueHistogram__ksgen_value_histogram - - + + KSGenValueList__ksgen_value_list - -ksgen_value_list + +ksgen_value_list - + KSRoot__kassiopeia->KSGenValueList__ksgen_value_list - - + + KSGenValuePareto__ksgen_value_pareto - -ksgen_value_pareto + +ksgen_value_pareto - + KSRoot__kassiopeia->KSGenValuePareto__ksgen_value_pareto - - + + KSGenValueRadiusCylindrical__ksgen_value_radius_cylindrical - -ksgen_value_radius_cylindrical + +ksgen_value_radius_cylindrical - + KSRoot__kassiopeia->KSGenValueRadiusCylindrical__ksgen_value_radius_cylindrical - - + + KSGenValueRadiusFraction__ksgen_value_radius_fraction - -ksgen_value_radius_fraction + +ksgen_value_radius_fraction - + KSRoot__kassiopeia->KSGenValueRadiusFraction__ksgen_value_radius_fraction - - + + KSGenValueRadiusSpherical__ksgen_value_radius_spherical - -ksgen_value_radius_spherical + +ksgen_value_radius_spherical - + KSRoot__kassiopeia->KSGenValueRadiusSpherical__ksgen_value_radius_spherical - - + + KSGenValueSet__ksgen_value_set - -ksgen_value_set + +ksgen_value_set - + KSRoot__kassiopeia->KSGenValueSet__ksgen_value_set - - + + KSGenValueUniform__ksgen_value_uniform - -ksgen_value_uniform + +ksgen_value_uniform - + KSRoot__kassiopeia->KSGenValueUniform__ksgen_value_uniform - - + + KSGenValueZFrustrum__ksgen_value_z_frustrum - -ksgen_value_z_frustrum + +ksgen_value_z_frustrum - + KSRoot__kassiopeia->KSGenValueZFrustrum__ksgen_value_z_frustrum - - + + KSGeoSide__ksgeo_side - -ksgeo_side + +ksgeo_side - + KSRoot__kassiopeia->KSGeoSide__ksgeo_side - - + + KSGeoSpace__ksgeo_space - -ksgeo_space + +ksgeo_space - + KSRoot__kassiopeia->KSGeoSpace__ksgeo_space - - + + KSGeoSurface__ksgeo_surface - -ksgeo_surface + +ksgeo_surface - + KSRoot__kassiopeia->KSGeoSurface__ksgeo_surface - - + + KSIntCalculatorConstant__ksint_calculator_constant - -ksint_calculator_constant + +ksint_calculator_constant - + KSRoot__kassiopeia->KSIntCalculatorConstant__ksint_calculator_constant - - + + KSIntCalculatorIon__ksint_calculator_ion - -ksint_calculator_ion + +ksint_calculator_ion - + KSRoot__kassiopeia->KSIntCalculatorIon__ksint_calculator_ion - - + + - + +KSIntCalculatorMott__ksint_calculator_mott + +ksint_calculator_mott + + + +KSRoot__kassiopeia->KSIntCalculatorMott__ksint_calculator_mott + + + + + KSIntDecay__ksint_decay - -ksint_decay + +ksint_decay - + KSRoot__kassiopeia->KSIntDecay__ksint_decay - - + + - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate - -ksint_decay_calculator_death_const_rate + +ksint_decay_calculator_death_const_rate - + KSRoot__kassiopeia->KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate - - + + - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition - -ksint_decay_calculator_ferenc_bbr_transition + +ksint_decay_calculator_ferenc_bbr_transition - + KSRoot__kassiopeia->KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition - - + + - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation - -ksint_decay_calculator_ferenc_ionisation + +ksint_decay_calculator_ferenc_ionisation - + KSRoot__kassiopeia->KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation - - + + - + KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous - -ksint_decay_calculator_ferenc_spontaneous + +ksint_decay_calculator_ferenc_spontaneous - + KSRoot__kassiopeia->KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation - -ksint_decay_calculator_glukhov_deexcitation + +ksint_decay_calculator_glukhov_deexcitation - + KSRoot__kassiopeia->KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation - - + + - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation - -ksint_decay_calculator_glukhov_excitation + +ksint_decay_calculator_glukhov_excitation - + KSRoot__kassiopeia->KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation - - + + - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation - -ksint_decay_calculator_glukhov_ionisation + +ksint_decay_calculator_glukhov_ionisation - + KSRoot__kassiopeia->KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous - -ksint_decay_calculator_glukhov_spontaneous + +ksint_decay_calculator_glukhov_spontaneous - + KSRoot__kassiopeia->KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous - - + + - + KSIntDensityConstant__ksint_density_constant - -ksint_density_constant + +ksint_density_constant - + KSRoot__kassiopeia->KSIntDensityConstant__ksint_density_constant - - + + - + KSIntScattering__ksint_scattering - -ksint_scattering + +ksint_scattering - + KSRoot__kassiopeia->KSIntScattering__ksint_scattering - - + + - + KSIntSpinFlip__ksint_spin_flip - -ksint_spin_flip + +ksint_spin_flip - + KSRoot__kassiopeia->KSIntSpinFlip__ksint_spin_flip - - + + - + KSIntSpinFlipPulse__ksint_spin_flip_pulse - -ksint_spin_flip_pulse + +ksint_spin_flip_pulse - + KSRoot__kassiopeia->KSIntSpinFlipPulse__ksint_spin_flip_pulse - - + + - + KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse - -ksint_spin_rotate_y_pulse + +ksint_spin_rotate_y_pulse - + KSRoot__kassiopeia->KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse - - + + - + KSIntSurfaceUCN__ksint_surface_UCN - -ksint_surface_UCN + +ksint_surface_UCN - + KSRoot__kassiopeia->KSIntSurfaceUCN__ksint_surface_UCN - - + + - + KSIntSurfaceDiffuse__ksint_surface_diffuse - -ksint_surface_diffuse + +ksint_surface_diffuse - + KSRoot__kassiopeia->KSIntSurfaceDiffuse__ksint_surface_diffuse - - + + - + KSIntSurfaceMultiplication__ksint_surface_multiplication - -ksint_surface_multiplication + +ksint_surface_multiplication - + KSRoot__kassiopeia->KSIntSurfaceMultiplication__ksint_surface_multiplication - - + + + + + +KSIntSurfaceScattering__ksint_surface_scattering + +ksint_surface_scattering + + + +KSRoot__kassiopeia->KSIntSurfaceScattering__ksint_surface_scattering + + - + KSIntSurfaceSpecular__ksint_surface_specular - -ksint_surface_specular + +ksint_surface_specular - + KSRoot__kassiopeia->KSIntSurfaceSpecular__ksint_surface_specular - - + + - + KSIntSurfaceSpinFlip__ksint_surface_spin_flip - -ksint_surface_spin_flip + +ksint_surface_spin_flip - + KSRoot__kassiopeia->KSIntSurfaceSpinFlip__ksint_surface_spin_flip - - + + - + KSModDynamicEnhancement__ksmod_dynamic_enhancement - -ksmod_dynamic_enhancement + +ksmod_dynamic_enhancement - + KSRoot__kassiopeia->KSModDynamicEnhancement__ksmod_dynamic_enhancement - - + + - + KSModEventReport__ksmod_event_report - -ksmod_event_report + +ksmod_event_report - + KSRoot__kassiopeia->KSModEventReport__ksmod_event_report - - + + - + KSModSplitOnTurn__ksmod_split_on_turn - -ksmod_split_on_turn + +ksmod_split_on_turn - + KSRoot__kassiopeia->KSModSplitOnTurn__ksmod_split_on_turn - - + + - + KSNavMeshedSpace__ksnav_meshed_space - -ksnav_meshed_space + +ksnav_meshed_space - + KSRoot__kassiopeia->KSNavMeshedSpace__ksnav_meshed_space - - + + - + KSNavSpace__ksnav_space - -ksnav_space + +ksnav_space - + KSRoot__kassiopeia->KSNavSpace__ksnav_space - - + + - + KSNavSurface__ksnav_surface - -ksnav_surface + +ksnav_surface - + KSRoot__kassiopeia->KSNavSurface__ksnav_surface - - + + - + KSTermDeath__ksterm_death - -ksterm_death + +ksterm_death - + KSRoot__kassiopeia->KSTermDeath__ksterm_death - - + + - + KSTermMagnetron__ksterm_magnetron - -ksterm_magnetron + +ksterm_magnetron - + KSRoot__kassiopeia->KSTermMagnetron__ksterm_magnetron - - + + - + KSTermMaxEnergy__ksterm_max_energy - -ksterm_max_energy + +ksterm_max_energy - + KSRoot__kassiopeia->KSTermMaxEnergy__ksterm_max_energy - - + + - + KSTermMaxLength__ksterm_max_length - -ksterm_max_length + +ksterm_max_length - + KSRoot__kassiopeia->KSTermMaxLength__ksterm_max_length - - + + - + KSTermMaxLongEnergy__ksterm_max_long_energy - -ksterm_max_long_energy + +ksterm_max_long_energy - + KSRoot__kassiopeia->KSTermMaxLongEnergy__ksterm_max_long_energy - - + + - + KSTermMaxR__ksterm_max_r - -ksterm_max_r + +ksterm_max_r - + KSRoot__kassiopeia->KSTermMaxR__ksterm_max_r - - + + - + KSTermMaxStepTime__ksterm_max_step_time - -ksterm_max_step_time + +ksterm_max_step_time - + KSRoot__kassiopeia->KSTermMaxStepTime__ksterm_max_step_time - - + + - + KSTermMaxSteps__ksterm_max_steps - -ksterm_max_steps + +ksterm_max_steps - + KSRoot__kassiopeia->KSTermMaxSteps__ksterm_max_steps - - + + - + KSTermMaxTime__ksterm_max_time - -ksterm_max_time + +ksterm_max_time - + KSRoot__kassiopeia->KSTermMaxTime__ksterm_max_time - - + + - + KSTermMaxTotalTime__ksterm_max_total_time - -ksterm_max_total_time + +ksterm_max_total_time - + KSRoot__kassiopeia->KSTermMaxTotalTime__ksterm_max_total_time - - + + - + KSTermMaxZ__ksterm_max_z - -ksterm_max_z + +ksterm_max_z - + KSRoot__kassiopeia->KSTermMaxZ__ksterm_max_z - - + + - + KSTermMinDistance__ksterm_min_distance - -ksterm_min_distance + +ksterm_min_distance - + KSRoot__kassiopeia->KSTermMinDistance__ksterm_min_distance - - + + - + KSTermMinEnergy__ksterm_min_energy - -ksterm_min_energy + +ksterm_min_energy - + KSRoot__kassiopeia->KSTermMinEnergy__ksterm_min_energy - - + + - + KSTermMinLongEnergy__ksterm_min_long_energy - -ksterm_min_long_energy + +ksterm_min_long_energy - + KSRoot__kassiopeia->KSTermMinLongEnergy__ksterm_min_long_energy - - + + - + KSTermMinR__ksterm_min_r - -ksterm_min_r + +ksterm_min_r - + KSRoot__kassiopeia->KSTermMinR__ksterm_min_r - - + + - + KSTermMinZ__ksterm_min_z - -ksterm_min_z + +ksterm_min_z - + KSRoot__kassiopeia->KSTermMinZ__ksterm_min_z - - + + - + KSTermOutputData__ksterm_output - -ksterm_output + +ksterm_output - + KSRoot__kassiopeia->KSTermOutputData__ksterm_output - - + + - + KSTermSecondaries__ksterm_secondaries - -ksterm_secondaries + +ksterm_secondaries - + KSRoot__kassiopeia->KSTermSecondaries__ksterm_secondaries - - + + - + KSTermStepsize__ksterm_stepsize - -ksterm_stepsize + +ksterm_stepsize - + KSRoot__kassiopeia->KSTermStepsize__ksterm_stepsize - - + + - + KSTermTrapped__ksterm_trapped - -ksterm_trapped + +ksterm_trapped - + KSRoot__kassiopeia->KSTermTrapped__ksterm_trapped - - + + - + KSTermZHRadius__ksterm_zh_radius - -ksterm_zh_radius + +ksterm_zh_radius - + KSRoot__kassiopeia->KSTermZHRadius__ksterm_zh_radius - - + + - + KSTrajControlBChange__kstraj_control_B_change - -kstraj_control_B_change + +kstraj_control_B_change - + KSRoot__kassiopeia->KSTrajControlBChange__kstraj_control_B_change - - + + - + KSTrajControlCyclotron__kstraj_control_cyclotron - -kstraj_control_cyclotron + +kstraj_control_cyclotron - + KSRoot__kassiopeia->KSTrajControlCyclotron__kstraj_control_cyclotron - - + + - + KSTrajControlEnergy__kstraj_control_energy - -kstraj_control_energy + +kstraj_control_energy - + KSRoot__kassiopeia->KSTrajControlEnergy__kstraj_control_energy - - + + - + KSTrajControlLength__kstraj_control_length - -kstraj_control_length + +kstraj_control_length - + KSRoot__kassiopeia->KSTrajControlLength__kstraj_control_length - - + + - + KSTrajControlMDot__kstraj_control_m_dot - -kstraj_control_m_dot + +kstraj_control_m_dot - + KSRoot__kassiopeia->KSTrajControlMDot__kstraj_control_m_dot - - + + - + KSTrajControlMagneticMoment__kstraj_control_magnetic_moment - -kstraj_control_magnetic_moment + +kstraj_control_magnetic_moment - + KSRoot__kassiopeia->KSTrajControlMagneticMoment__kstraj_control_magnetic_moment - - + + - + KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error - -kstraj_control_momentum_numerical_error + +kstraj_control_momentum_numerical_error - + KSRoot__kassiopeia->KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error - - + + - + KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error - -kstraj_control_position_numerical_error + +kstraj_control_position_numerical_error - + KSRoot__kassiopeia->KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error - - + + - + KSTrajControlSpinPrecession__kstraj_control_spin_precession - -kstraj_control_spin_precession + +kstraj_control_spin_precession - + KSRoot__kassiopeia->KSTrajControlSpinPrecession__kstraj_control_spin_precession - - + + - + KSTrajControlTime__kstraj_control_time - -kstraj_control_time + +kstraj_control_time - + KSRoot__kassiopeia->KSTrajControlTime__kstraj_control_time - - + + - + KSTrajIntegratorRK54__kstraj_integrator_rk54 - -kstraj_integrator_rk54 + +kstraj_integrator_rk54 - + KSRoot__kassiopeia->KSTrajIntegratorRK54__kstraj_integrator_rk54 - - + + - + KSTrajIntegratorRK65__kstraj_integrator_rk65 - -kstraj_integrator_rk65 + +kstraj_integrator_rk65 - + KSRoot__kassiopeia->KSTrajIntegratorRK65__kstraj_integrator_rk65 - - + + - + KSTrajIntegratorRK8__kstraj_integrator_rk8 - -kstraj_integrator_rk8 + +kstraj_integrator_rk8 - + KSRoot__kassiopeia->KSTrajIntegratorRK8__kstraj_integrator_rk8 - - + + - + KSTrajIntegratorRK86__kstraj_integrator_rk86 - -kstraj_integrator_rk86 + +kstraj_integrator_rk86 - + KSRoot__kassiopeia->KSTrajIntegratorRK86__kstraj_integrator_rk86 - - + + - + KSTrajIntegratorRK87__kstraj_integrator_rk87 - -kstraj_integrator_rk87 + +kstraj_integrator_rk87 - + KSRoot__kassiopeia->KSTrajIntegratorRK87__kstraj_integrator_rk87 - - + + - + KSTrajIntegratorRKDP54__kstraj_integrator_rkdp54 - -kstraj_integrator_rkdp54 + +kstraj_integrator_rkdp54 - + KSRoot__kassiopeia->KSTrajIntegratorRKDP54__kstraj_integrator_rkdp54 - - + + - + KSTrajIntegratorRKDP853__kstraj_integrator_rkdp853 - -kstraj_integrator_rkdp853 + +kstraj_integrator_rkdp853 - + KSRoot__kassiopeia->KSTrajIntegratorRKDP853__kstraj_integrator_rkdp853 - - + + - + KSTrajIntegratorSym4__kstraj_integrator_sym4 - -kstraj_integrator_sym4 + +kstraj_integrator_sym4 - + KSRoot__kassiopeia->KSTrajIntegratorSym4__kstraj_integrator_sym4 - - + + - + KSTrajInterpolatorContinuousRungeKutta__kstraj_interpolator_crk - -kstraj_interpolator_crk + +kstraj_interpolator_crk - + KSRoot__kassiopeia->KSTrajInterpolatorContinuousRungeKutta__kstraj_interpolator_crk - - + + - + KSTrajInterpolatorFast__kstraj_interpolator_fast - -kstraj_interpolator_fast + +kstraj_interpolator_fast - + KSRoot__kassiopeia->KSTrajInterpolatorFast__kstraj_interpolator_fast - - + + - + KSTrajInterpolatorHermite__kstraj_interpolator_hermite - -kstraj_interpolator_hermite + +kstraj_interpolator_hermite - + KSRoot__kassiopeia->KSTrajInterpolatorHermite__kstraj_interpolator_hermite - - + + - + KSTrajTermConstantForcePropagation__kstraj_term_constant_force_propagation - -kstraj_term_constant_force_propagation + +kstraj_term_constant_force_propagation - + KSRoot__kassiopeia->KSTrajTermConstantForcePropagation__kstraj_term_constant_force_propagation - - + + - + KSTrajTermDrift__kstraj_term_drift - -kstraj_term_drift + +kstraj_term_drift - + KSRoot__kassiopeia->KSTrajTermDrift__kstraj_term_drift - - + + - + KSTrajTermGravity__kstraj_term_gravity - -kstraj_term_gravity + +kstraj_term_gravity - + KSRoot__kassiopeia->KSTrajTermGravity__kstraj_term_gravity - - + + - + KSTrajTermGyration__kstraj_term_gyration - -kstraj_term_gyration + +kstraj_term_gyration - + KSRoot__kassiopeia->KSTrajTermGyration__kstraj_term_gyration - - + + - + KSTrajTermPropagation__kstraj_term_propagation - -kstraj_term_propagation + +kstraj_term_propagation - + KSRoot__kassiopeia->KSTrajTermPropagation__kstraj_term_propagation - - + + - + KSTrajTermSynchrotron__kstraj_term_synchrotron - -kstraj_term_synchrotron + +kstraj_term_synchrotron - + KSRoot__kassiopeia->KSTrajTermSynchrotron__kstraj_term_synchrotron - - + + - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic - -kstraj_trajectory_adiabatic + +kstraj_trajectory_adiabatic - + KSRoot__kassiopeia->KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin - -kstraj_trajectory_adiabatic_spin + +kstraj_trajectory_adiabatic_spin - + KSRoot__kassiopeia->KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric - -kstraj_trajectory_electric + +kstraj_trajectory_electric - + KSRoot__kassiopeia->KSTrajTrajectoryElectric__kstraj_trajectory_electric - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact - -kstraj_trajectory_exact + +kstraj_trajectory_exact - + KSRoot__kassiopeia->KSTrajTrajectoryExact__kstraj_trajectory_exact - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin - -kstraj_trajectory_exact_spin + +kstraj_trajectory_exact_spin - + KSRoot__kassiopeia->KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped - -kstraj_trajectory_exact_trapped + +kstraj_trajectory_exact_trapped - + KSRoot__kassiopeia->KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped - - + + - + KSTrajTrajectoryLinear__kstraj_trajectory_linear - -kstraj_trajectory_linear + +kstraj_trajectory_linear - + KSRoot__kassiopeia->KSTrajTrajectoryLinear__kstraj_trajectory_linear - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic - -kstraj_trajectory_magnetic + +kstraj_trajectory_magnetic - + KSRoot__kassiopeia->KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic - - + + - + KSWriteASCII__kswrite_ascii - -kswrite_ascii + +kswrite_ascii - + KSRoot__kassiopeia->KSWriteASCII__kswrite_ascii - - + + - + KSWriteROOT__kswrite_root - -kswrite_root + +kswrite_root - + KSRoot__kassiopeia->KSWriteROOT__kswrite_root - - + + - + KSWriteROOTConditionOutputData__kswrite_root_condition_output - -kswrite_root_condition_output + +kswrite_root_condition_output - + KSRoot__kassiopeia->KSWriteROOTConditionOutputData__kswrite_root_condition_output - - + + - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic - -kswrite_root_condition_periodic + +kswrite_root_condition_periodic - + KSRoot__kassiopeia->KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic - - + + - + KSWriteROOTConditionStepData__kswrite_root_condition_step - -kswrite_root_condition_step + +kswrite_root_condition_step - + KSRoot__kassiopeia->KSWriteROOTConditionStepData__kswrite_root_condition_step - - + + - + KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator - -kswrite_root_condition_terminator + +kswrite_root_condition_terminator - + KSRoot__kassiopeia->KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator - - + + - + KSWriteVTK__kswrite_vtk - -kswrite_vtk + +kswrite_vtk - + KSRoot__kassiopeia->KSWriteVTK__kswrite_vtk - - + + - + KSComponentMemberData__output - -output + +output - + KSRoot__kassiopeia->KSComponentMemberData__output - - + + - + KSComponentDeltaData__output_delta - -output_delta + +output_delta - + KSRoot__kassiopeia->KSComponentDeltaData__output_delta - - + + - + KSComponentGroup__output_group - -output_group + +output_group - + KSRoot__kassiopeia->KSComponentGroup__output_group - - + + - + KSComponentIntegralData__output_integral - -output_integral + +output_integral - + KSRoot__kassiopeia->KSComponentIntegralData__output_integral - - + + - + KSComponentMathData__output_math - -output_math + +output_math - + KSRoot__kassiopeia->KSComponentMathData__output_math - - + + - + KSComponentMaximumData__output_maximum - -output_maximum + +output_maximum - + KSRoot__kassiopeia->KSComponentMaximumData__output_maximum - - + + - + KSComponentMaximumAtData__output_maximum_at - -output_maximum_at + +output_maximum_at - + KSRoot__kassiopeia->KSComponentMaximumAtData__output_maximum_at - - + + - + KSComponentMinimumData__output_minimum - -output_minimum + +output_minimum - + KSRoot__kassiopeia->KSComponentMinimumData__output_minimum - - + + - + KSComponentMinimumAtData__output_minimum_at - -output_minimum_at + +output_minimum_at - + KSRoot__kassiopeia->KSComponentMinimumAtData__output_minimum_at - - + + - + KESSElasticElsepa__kess_elastic_elsepa__name - -name + +name KESSElasticElsepa__kess_elastic_elsepa->KESSElasticElsepa__kess_elastic_elsepa__name - - + + - + KESSInelasticBetheFano__kess_inelastic_bethefano__AugerRelaxation - -AugerRelaxation + +AugerRelaxation KESSInelasticBetheFano__kess_inelastic_bethefano->KESSInelasticBetheFano__kess_inelastic_bethefano__AugerRelaxation - - + + - + KESSInelasticBetheFano__kess_inelastic_bethefano__PhotoAbsorption - -PhotoAbsorption + +PhotoAbsorption KESSInelasticBetheFano__kess_inelastic_bethefano->KESSInelasticBetheFano__kess_inelastic_bethefano__PhotoAbsorption - - + + - + KESSInelasticBetheFano__kess_inelastic_bethefano__name - -name + +name KESSInelasticBetheFano__kess_inelastic_bethefano->KESSInelasticBetheFano__kess_inelastic_bethefano__name - - + + - + KESSInelasticPenn__kess_inelastic_penn__AugerRelaxation - -AugerRelaxation + +AugerRelaxation KESSInelasticPenn__kess_inelastic_penn->KESSInelasticPenn__kess_inelastic_penn__AugerRelaxation - - + + - + KESSInelasticPenn__kess_inelastic_penn__PhotoAbsorption - -PhotoAbsorption + +PhotoAbsorption KESSInelasticPenn__kess_inelastic_penn->KESSInelasticPenn__kess_inelastic_penn__PhotoAbsorption - - + + - + KESSInelasticPenn__kess_inelastic_penn__name - -name + +name KESSInelasticPenn__kess_inelastic_penn->KESSInelasticPenn__kess_inelastic_penn__name - - + + - + KESSSurfaceInteraction__kess_surface_interaction__name - -name + +name KESSSurfaceInteraction__kess_surface_interaction->KESSSurfaceInteraction__kess_surface_interaction__name - - + + - + KESSSurfaceInteraction__kess_surface_interaction__siliconside - -siliconside + +siliconside KESSSurfaceInteraction__kess_surface_interaction->KESSSurfaceInteraction__kess_surface_interaction__siliconside - - + + - + KSCommandGroup__ks_command_group__command - -command + +command KSCommandGroup__ks_command_group->KSCommandGroup__ks_command_group__command - - + + - + KSCommandGroup__ks_command_group__name - -name + +name KSCommandGroup__ks_command_group->KSCommandGroup__ks_command_group__name - - + + - + KSCommandGroup__command_group - -command_group + +command_group KSCommandGroup__ks_command_group->KSCommandGroup__command_group - - + + - + KSCommandMemberData__ks_command_member__child - -child + +child KSCommandMemberData__ks_command_member->KSCommandMemberData__ks_command_member__child - - + + - + KSCommandMemberData__ks_command_member__field - -field + +field KSCommandMemberData__ks_command_member->KSCommandMemberData__ks_command_member__field - - + + - + KSCommandMemberData__ks_command_member__name - -name + +name KSCommandMemberData__ks_command_member->KSCommandMemberData__ks_command_member__name - - + + - + KSCommandMemberData__ks_command_member__parent - -parent + +parent KSCommandMemberData__ks_command_member->KSCommandMemberData__ks_command_member__parent - - + + - + KSComponentDeltaData__ks_component_delta__component - -component + +component KSComponentDeltaData__ks_component_delta->KSComponentDeltaData__ks_component_delta__component - - + + - + KSComponentDeltaData__ks_component_delta__group - -group + +group KSComponentDeltaData__ks_component_delta->KSComponentDeltaData__ks_component_delta__group - - + + - + KSComponentDeltaData__ks_component_delta__name - -name + +name KSComponentDeltaData__ks_component_delta->KSComponentDeltaData__ks_component_delta__name - - + + - + KSComponentDeltaData__ks_component_delta__parent - -parent + +parent KSComponentDeltaData__ks_component_delta->KSComponentDeltaData__ks_component_delta__parent - - + + - + KSComponentIntegralData__ks_component_integral__component - -component + +component KSComponentIntegralData__ks_component_integral->KSComponentIntegralData__ks_component_integral__component - - + + - + KSComponentIntegralData__ks_component_integral__group - -group + +group KSComponentIntegralData__ks_component_integral->KSComponentIntegralData__ks_component_integral__group - - + + - + KSComponentIntegralData__ks_component_integral__name - -name + +name KSComponentIntegralData__ks_component_integral->KSComponentIntegralData__ks_component_integral__name - - + + - + KSComponentIntegralData__ks_component_integral__parent - -parent + +parent KSComponentIntegralData__ks_component_integral->KSComponentIntegralData__ks_component_integral__parent - - + + - + KSComponentMathData__ks_component_math__component - -component + +component KSComponentMathData__ks_component_math->KSComponentMathData__ks_component_math__component - - + + - + KSComponentMathData__ks_component_math__group - -group + +group KSComponentMathData__ks_component_math->KSComponentMathData__ks_component_math__group - - + + - + KSComponentMathData__ks_component_math__name - -name + +name KSComponentMathData__ks_component_math->KSComponentMathData__ks_component_math__name - - + + - + KSComponentMathData__ks_component_math__parent - -parent + +parent KSComponentMathData__ks_component_math->KSComponentMathData__ks_component_math__parent - - + + - + KSComponentMathData__ks_component_math__term - -term + +term KSComponentMathData__ks_component_math->KSComponentMathData__ks_component_math__term - - + + - + KSComponentMaximumData__ks_component_maximum__component - -component + +component KSComponentMaximumData__ks_component_maximum->KSComponentMaximumData__ks_component_maximum__component - - + + - + KSComponentMaximumData__ks_component_maximum__group - -group + +group KSComponentMaximumData__ks_component_maximum->KSComponentMaximumData__ks_component_maximum__group - - + + - + KSComponentMaximumData__ks_component_maximum__name - -name + +name KSComponentMaximumData__ks_component_maximum->KSComponentMaximumData__ks_component_maximum__name - - + + - + KSComponentMaximumData__ks_component_maximum__parent - -parent + +parent KSComponentMaximumData__ks_component_maximum->KSComponentMaximumData__ks_component_maximum__parent - - + + - + KSComponentMaximumAtData__ks_component_maximum_at__component - -component + +component KSComponentMaximumAtData__ks_component_maximum_at->KSComponentMaximumAtData__ks_component_maximum_at__component - - + + - + KSComponentMaximumAtData__ks_component_maximum_at__group - -group + +group KSComponentMaximumAtData__ks_component_maximum_at->KSComponentMaximumAtData__ks_component_maximum_at__group - - + + - + KSComponentMaximumAtData__ks_component_maximum_at__name - -name + +name KSComponentMaximumAtData__ks_component_maximum_at->KSComponentMaximumAtData__ks_component_maximum_at__name - - + + - + KSComponentMaximumAtData__ks_component_maximum_at__parent - -parent + +parent KSComponentMaximumAtData__ks_component_maximum_at->KSComponentMaximumAtData__ks_component_maximum_at__parent - - + + - + KSComponentMaximumAtData__ks_component_maximum_at__source - -source + +source KSComponentMaximumAtData__ks_component_maximum_at->KSComponentMaximumAtData__ks_component_maximum_at__source - - + + - + KSComponentMemberData__ks_component_member__field - -field + +field KSComponentMemberData__ks_component_member->KSComponentMemberData__ks_component_member__field - - + + - + KSComponentMemberData__ks_component_member__name - -name + +name KSComponentMemberData__ks_component_member->KSComponentMemberData__ks_component_member__name - - + + - + KSComponentMemberData__ks_component_member__parent - -parent + +parent KSComponentMemberData__ks_component_member->KSComponentMemberData__ks_component_member__parent - - + + - + KSComponentMinimumData__ks_component_minimum__component - -component + +component KSComponentMinimumData__ks_component_minimum->KSComponentMinimumData__ks_component_minimum__component - - + + - + KSComponentMinimumData__ks_component_minimum__group - -group + +group KSComponentMinimumData__ks_component_minimum->KSComponentMinimumData__ks_component_minimum__group - - + + - + KSComponentMinimumData__ks_component_minimum__name - -name + +name KSComponentMinimumData__ks_component_minimum->KSComponentMinimumData__ks_component_minimum__name - - + + - + KSComponentMinimumData__ks_component_minimum__parent - -parent + +parent KSComponentMinimumData__ks_component_minimum->KSComponentMinimumData__ks_component_minimum__parent - - + + - + KSComponentMinimumAtData__ks_component_minimum_at__component - -component + +component KSComponentMinimumAtData__ks_component_minimum_at->KSComponentMinimumAtData__ks_component_minimum_at__component - - + + - + KSComponentMinimumAtData__ks_component_minimum_at__group - -group + +group KSComponentMinimumAtData__ks_component_minimum_at->KSComponentMinimumAtData__ks_component_minimum_at__group - - + + - + KSComponentMinimumAtData__ks_component_minimum_at__name - -name + +name KSComponentMinimumAtData__ks_component_minimum_at->KSComponentMinimumAtData__ks_component_minimum_at__name - - + + - + KSComponentMinimumAtData__ks_component_minimum_at__parent - -parent + +parent KSComponentMinimumAtData__ks_component_minimum_at->KSComponentMinimumAtData__ks_component_minimum_at__parent - - + + - + KSComponentMinimumAtData__ks_component_minimum_at__source - -source + +source KSComponentMinimumAtData__ks_component_minimum_at->KSComponentMinimumAtData__ks_component_minimum_at__source - - + + - + KSRootElectricField__ks_root_electric_field__add_electric_field - -add_electric_field + +add_electric_field KSRootElectricField__ks_root_electric_field->KSRootElectricField__ks_root_electric_field__add_electric_field - - + + - + KSRootElectricField__ks_root_electric_field__name - -name + +name KSRootElectricField__ks_root_electric_field->KSRootElectricField__ks_root_electric_field__name - - + + - + KSRootEventModifier__ks_root_event_modifier__add_modifier - -add_modifier + +add_modifier KSRootEventModifier__ks_root_event_modifier->KSRootEventModifier__ks_root_event_modifier__add_modifier - - + + - + KSRootEventModifier__ks_root_event_modifier__name - -name + +name KSRootEventModifier__ks_root_event_modifier->KSRootEventModifier__ks_root_event_modifier__name - - + + - + KSRootGenerator__ks_root_generator__name - -name + +name KSRootGenerator__ks_root_generator->KSRootGenerator__ks_root_generator__name - - + + - + KSRootGenerator__ks_root_generator__set_generator - -set_generator + +set_generator KSRootGenerator__ks_root_generator->KSRootGenerator__ks_root_generator__set_generator - - + + - + KSRootMagneticField__ks_root_magnetic_field__add_magnetic_field - -add_magnetic_field + +add_magnetic_field KSRootMagneticField__ks_root_magnetic_field->KSRootMagneticField__ks_root_magnetic_field__add_magnetic_field - - + + - + KSRootMagneticField__ks_root_magnetic_field__name - -name + +name KSRootMagneticField__ks_root_magnetic_field->KSRootMagneticField__ks_root_magnetic_field__name - - + + - + KSRootRunModifier__ks_root_run_modifier__add_modifier - -add_modifier + +add_modifier KSRootRunModifier__ks_root_run_modifier->KSRootRunModifier__ks_root_run_modifier__add_modifier - - + + - + KSRootRunModifier__ks_root_run_modifier__name - -name + +name KSRootRunModifier__ks_root_run_modifier->KSRootRunModifier__ks_root_run_modifier__name - - + + - + KSRootSpaceInteraction__ks_root_space_interaction__add_space_interaction - -add_space_interaction + +add_space_interaction KSRootSpaceInteraction__ks_root_space_interaction->KSRootSpaceInteraction__ks_root_space_interaction__add_space_interaction - - + + - + KSRootSpaceInteraction__ks_root_space_interaction__name - -name + +name KSRootSpaceInteraction__ks_root_space_interaction->KSRootSpaceInteraction__ks_root_space_interaction__name - - + + - + KSRootSpaceNavigator__ks_root_space_navigator__name - -name + +name KSRootSpaceNavigator__ks_root_space_navigator->KSRootSpaceNavigator__ks_root_space_navigator__name - - + + - + KSRootSpaceNavigator__ks_root_space_navigator__set_space_navigator - -set_space_navigator + +set_space_navigator KSRootSpaceNavigator__ks_root_space_navigator->KSRootSpaceNavigator__ks_root_space_navigator__set_space_navigator - - + + - + KSRootStepModifier__ks_root_step_modifier__add_modifier - -add_modifier + +add_modifier KSRootStepModifier__ks_root_step_modifier->KSRootStepModifier__ks_root_step_modifier__add_modifier - - + + - + KSRootStepModifier__ks_root_step_modifier__name - -name + +name KSRootStepModifier__ks_root_step_modifier->KSRootStepModifier__ks_root_step_modifier__name - - + + - + KSRootSurfaceInteraction__ks_root_surface_interaction__name - -name + +name KSRootSurfaceInteraction__ks_root_surface_interaction->KSRootSurfaceInteraction__ks_root_surface_interaction__name - - + + - + KSRootSurfaceInteraction__ks_root_surface_interaction__set_surface_interaction - -set_surface_interaction + +set_surface_interaction KSRootSurfaceInteraction__ks_root_surface_interaction->KSRootSurfaceInteraction__ks_root_surface_interaction__set_surface_interaction - - + + - + KSRootSurfaceNavigator__ks_root_surface_navigator__name - -name + +name KSRootSurfaceNavigator__ks_root_surface_navigator->KSRootSurfaceNavigator__ks_root_surface_navigator__name - - + + - + KSRootSurfaceNavigator__ks_root_surface_navigator__set_surface_navigator - -set_surface_navigator + +set_surface_navigator KSRootSurfaceNavigator__ks_root_surface_navigator->KSRootSurfaceNavigator__ks_root_surface_navigator__set_surface_navigator - - + + - + KSRootTerminator__ks_root_terminator__add_terminator - -add_terminator + +add_terminator KSRootTerminator__ks_root_terminator->KSRootTerminator__ks_root_terminator__add_terminator - - + + - + KSRootTerminator__ks_root_terminator__name - -name + +name KSRootTerminator__ks_root_terminator->KSRootTerminator__ks_root_terminator__name - - + + - + KSRootTrackModifier__ks_root_track_modifier__add_modifier - -add_modifier + +add_modifier KSRootTrackModifier__ks_root_track_modifier->KSRootTrackModifier__ks_root_track_modifier__add_modifier - - + + - + KSRootTrackModifier__ks_root_track_modifier__name - -name + +name KSRootTrackModifier__ks_root_track_modifier->KSRootTrackModifier__ks_root_track_modifier__name - - + + - + KSRootTrajectory__ks_root_trajectory__name - -name + +name KSRootTrajectory__ks_root_trajectory->KSRootTrajectory__ks_root_trajectory__name - - + + - + KSRootTrajectory__ks_root_trajectory__set_trajectory - -set_trajectory + +set_trajectory KSRootTrajectory__ks_root_trajectory->KSRootTrajectory__ks_root_trajectory__set_trajectory - - + + - + KSRootWriter__ks_root_writer__add_writer - -add_writer + +add_writer KSRootWriter__ks_root_writer->KSRootWriter__ks_root_writer__add_writer - - + + - + KSRootWriter__ks_root_writer__name - -name + +name KSRootWriter__ks_root_writer->KSRootWriter__ks_root_writer__name - - + + - + KSSimulation__ks_simulation__add_static_event_modifier - -add_static_event_modifier + +add_static_event_modifier KSSimulation__ks_simulation->KSSimulation__ks_simulation__add_static_event_modifier - - + + - + KSSimulation__ks_simulation__add_static_run_modifier - -add_static_run_modifier + +add_static_run_modifier KSSimulation__ks_simulation->KSSimulation__ks_simulation__add_static_run_modifier - - + + - + KSSimulation__ks_simulation__add_static_step_modifier - -add_static_step_modifier + +add_static_step_modifier KSSimulation__ks_simulation->KSSimulation__ks_simulation__add_static_step_modifier - - + + - + KSSimulation__ks_simulation__add_static_track_modifier - -add_static_track_modifier + +add_static_track_modifier KSSimulation__ks_simulation->KSSimulation__ks_simulation__add_static_track_modifier - - + + - + KSSimulation__ks_simulation__command - -command + +command KSSimulation__ks_simulation->KSSimulation__ks_simulation__command - - + + - + KSSimulation__ks_simulation__electric_field - -electric_field + +electric_field KSSimulation__ks_simulation->KSSimulation__ks_simulation__electric_field - - + + - + KSSimulation__ks_simulation__events - -events + +events KSSimulation__ks_simulation->KSSimulation__ks_simulation__events - - + + - + KSSimulation__ks_simulation__generator - -generator + +generator KSSimulation__ks_simulation->KSSimulation__ks_simulation__generator - - + + - + KSSimulation__ks_simulation__magnetic_field - -magnetic_field + +magnetic_field KSSimulation__ks_simulation->KSSimulation__ks_simulation__magnetic_field - - + + - + KSSimulation__ks_simulation__name - -name + +name KSSimulation__ks_simulation->KSSimulation__ks_simulation__name - - + + - + KSSimulation__ks_simulation__run - -run + +run KSSimulation__ks_simulation->KSSimulation__ks_simulation__run - - + + - + KSSimulation__ks_simulation__seed - -seed + +seed KSSimulation__ks_simulation->KSSimulation__ks_simulation__seed - - + + - + KSSimulation__ks_simulation__space - -space + +space KSSimulation__ks_simulation->KSSimulation__ks_simulation__space - - + + - + KSSimulation__ks_simulation__space_interaction - -space_interaction + +space_interaction KSSimulation__ks_simulation->KSSimulation__ks_simulation__space_interaction - - + + - + KSSimulation__ks_simulation__space_navigator - -space_navigator + +space_navigator KSSimulation__ks_simulation->KSSimulation__ks_simulation__space_navigator - - + + - + KSSimulation__ks_simulation__step_report_iteration - -step_report_iteration + +step_report_iteration KSSimulation__ks_simulation->KSSimulation__ks_simulation__step_report_iteration - - + + - + KSSimulation__ks_simulation__surface - -surface + +surface KSSimulation__ks_simulation->KSSimulation__ks_simulation__surface - - + + - + KSSimulation__ks_simulation__surface_interaction - -surface_interaction + +surface_interaction KSSimulation__ks_simulation->KSSimulation__ks_simulation__surface_interaction - - + + - + KSSimulation__ks_simulation__surface_navigator - -surface_navigator + +surface_navigator KSSimulation__ks_simulation->KSSimulation__ks_simulation__surface_navigator - - + + - + KSSimulation__ks_simulation__terminator - -terminator + +terminator KSSimulation__ks_simulation->KSSimulation__ks_simulation__terminator - - + + - + KSSimulation__ks_simulation__trajectory - -trajectory + +trajectory KSSimulation__ks_simulation->KSSimulation__ks_simulation__trajectory - - + + - + KSSimulation__ks_simulation__writer - -writer + +writer KSSimulation__ks_simulation->KSSimulation__ks_simulation__writer - - + + - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite__name - -name + +name KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite__name - - + + - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite__phi - -phi + +phi KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite__phi - - + + - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite__space - -space + +space KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite__space - - + + - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite__surface - -surface + +surface KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite__surface - - + + - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite__theta - -theta + +theta KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite__theta - - + + - + KSGenValueFermi__phi_fermi - -phi_fermi + +phi_fermi KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueFermi__phi_fermi - - + + - + KSGenValueFix__phi_fix - -phi_fix + +phi_fix KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueFix__phi_fix - - + + - + KSGenValueFormula__phi_formula - -phi_formula + +phi_formula KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueFormula__phi_formula - - + + - + KSGenValueGauss__phi_gauss - -phi_gauss + +phi_gauss KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenValueGeneralizedGauss__phi_generalized_gauss - -phi_generalized_gauss + +phi_generalized_gauss KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + - + KSGenValueHistogram__phi_histogram - -phi_histogram + +phi_histogram KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenValueList__phi_list - -phi_list + +phi_list KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueList__phi_list - - + + - + KSGenValueSet__phi_set - -phi_set + +phi_set KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueSet__phi_set - - + + - + KSGenValueUniform__phi_uniform - -phi_uniform + +phi_uniform KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenValueAngleCosine__theta_cosine - -theta_cosine + +theta_cosine KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueAngleCosine__theta_cosine - - + + - + KSGenValueFermi__theta_fermi - -theta_fermi + +theta_fermi - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueFermi__theta_fermi - - + + - + KSGenValueFix__theta_fix - -theta_fix + +theta_fix - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueFix__theta_fix - - + + - + KSGenValueFormula__theta_formula - -theta_formula + +theta_formula - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueFormula__theta_formula - - + + - + KSGenValueGauss__theta_gauss - -theta_gauss + +theta_gauss - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueGauss__theta_gauss - - + + - + KSGenValueGeneralizedGauss__theta_generalized_gauss - -theta_generalized_gauss + +theta_generalized_gauss - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + - + KSGenValueHistogram__theta_histogram - -theta_histogram + +theta_histogram - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueHistogram__theta_histogram - - + + - + KSGenValueList__theta_list - -theta_list + +theta_list - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueList__theta_list - - + + - + KSGenValueSet__theta_set - -theta_set + +theta_set - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueSet__theta_set - - + + - + KSGenValueAngleSpherical__theta_spherical - -theta_spherical + +theta_spherical - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueAngleSpherical__theta_spherical - - + + - + KSGenValueUniform__theta_uniform - -theta_uniform + +theta_uniform - + KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueUniform__theta_uniform - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueFix__phi_fix - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueFormula__phi_formula - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueGauss__phi_gauss - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueHistogram__phi_histogram - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueList__phi_list - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueSet__phi_set - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueUniform__phi_uniform - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueAngleCosine__theta_cosine - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueFix__theta_fix - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueFormula__theta_formula - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueGauss__theta_gauss - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueHistogram__theta_histogram - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueList__theta_list - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueSet__theta_set - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueAngleSpherical__theta_spherical - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueUniform__theta_uniform - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field__magnetic_field_name - -magnetic_field_name + +magnetic_field_name - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field__magnetic_field_name - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field__name - -name + +name - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field__name - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field__phi - -phi + +phi - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field__phi - - + + - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field__theta - -theta + +theta - + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field__theta - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueFermi__phi_fermi - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueFix__phi_fix - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueFormula__phi_formula - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueList__phi_list - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueSet__phi_set - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueAngleCosine__theta_cosine - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueFermi__theta_fermi - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueFix__theta_fix - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueFormula__theta_formula - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueGauss__theta_gauss - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueHistogram__theta_histogram - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueList__theta_list - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueSet__theta_set - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueAngleSpherical__theta_spherical - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueUniform__theta_uniform - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite__name - -name + +name - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite__name - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite__outside - -outside + +outside - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite__outside - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite__phi - -phi + +phi - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite__phi - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite__surfaces - -surfaces + +surfaces - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite__surfaces - - + + - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite__theta - -theta + +theta - + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite__theta - - + + - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay__daughter_z - -daughter_z + +daughter_z - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay->KSGenEnergyBetaDecay__ksgen_energy_beta_decay__daughter_z - - + + - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay__endpoint_ev - -endpoint_ev + +endpoint_ev - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay->KSGenEnergyBetaDecay__ksgen_energy_beta_decay__endpoint_ev - - + + - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay__max_energy - -max_energy + +max_energy - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay->KSGenEnergyBetaDecay__ksgen_energy_beta_decay__max_energy - - + + - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay__min_energy - -min_energy + +min_energy - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay->KSGenEnergyBetaDecay__ksgen_energy_beta_decay__min_energy - - + + - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay__mnu_ev - -mnu_ev + +mnu_ev - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay->KSGenEnergyBetaDecay__ksgen_energy_beta_decay__mnu_ev - - + + - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay__name - -name + +name - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay->KSGenEnergyBetaDecay__ksgen_energy_beta_decay__name - - + + - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay__nmax - -nmax + +nmax - + KSGenEnergyBetaDecay__ksgen_energy_beta_decay->KSGenEnergyBetaDecay__ksgen_energy_beta_decay__nmax - - + + - + KSGenEnergyBetaRecoil__ksgen_energy_beta_recoil__max_energy - -max_energy + +max_energy - + KSGenEnergyBetaRecoil__ksgen_energy_beta_recoil->KSGenEnergyBetaRecoil__ksgen_energy_beta_recoil__max_energy - - + + - + KSGenEnergyBetaRecoil__ksgen_energy_beta_recoil__min_energy - -min_energy + +min_energy - + KSGenEnergyBetaRecoil__ksgen_energy_beta_recoil->KSGenEnergyBetaRecoil__ksgen_energy_beta_recoil__min_energy - - + + - + KSGenEnergyBetaRecoil__ksgen_energy_beta_recoil__name - -name + +name - + KSGenEnergyBetaRecoil__ksgen_energy_beta_recoil->KSGenEnergyBetaRecoil__ksgen_energy_beta_recoil__name - - + + - + KSGenEnergyComposite__ksgen_energy_composite__energy - -energy + +energy - + KSGenEnergyComposite__ksgen_energy_composite->KSGenEnergyComposite__ksgen_energy_composite__energy - - + + - + KSGenEnergyComposite__ksgen_energy_composite__name - -name + +name - + KSGenEnergyComposite__ksgen_energy_composite->KSGenEnergyComposite__ksgen_energy_composite__name - - + + - + KSGenValueBoltzmann__energy_boltzmann - -energy_boltzmann + +energy_boltzmann - + KSGenEnergyComposite__ksgen_energy_composite->KSGenValueBoltzmann__energy_boltzmann - - + + - + KSGenValueFermi__energy_fermi - -energy_fermi + +energy_fermi - + KSGenEnergyComposite__ksgen_energy_composite->KSGenValueFermi__energy_fermi - - + + - + KSGenValueFix__energy_fix - -energy_fix + +energy_fix - + KSGenEnergyComposite__ksgen_energy_composite->KSGenValueFix__energy_fix - - + + - + KSGenValueFormula__energy_formula - -energy_formula + +energy_formula - + KSGenEnergyComposite__ksgen_energy_composite->KSGenValueFormula__energy_formula - - + + - + KSGenValueGauss__energy_gauss - -energy_gauss + +energy_gauss - + KSGenEnergyComposite__ksgen_energy_composite->KSGenValueGauss__energy_gauss - - + + - + KSGenValueGeneralizedGauss__energy_generalized_gauss - -energy_generalized_gauss + +energy_generalized_gauss - + KSGenEnergyComposite__ksgen_energy_composite->KSGenValueGeneralizedGauss__energy_generalized_gauss - - + + - + KSGenValueHistogram__energy_histogram - -energy_histogram + +energy_histogram - + KSGenEnergyComposite__ksgen_energy_composite->KSGenValueHistogram__energy_histogram - - + + - + KSGenValueList__energy_list - -energy_list + +energy_list - + KSGenEnergyComposite__ksgen_energy_composite->KSGenValueList__energy_list - - + + - + KSGenValueSet__energy_set - -energy_set + +energy_set - + KSGenEnergyComposite__ksgen_energy_composite->KSGenValueSet__energy_set - - + + - + KSGenValueUniform__energy_uniform - -energy_uniform + +energy_uniform - + KSGenEnergyComposite__ksgen_energy_composite->KSGenValueUniform__energy_uniform - - + + - + KSGenEnergyKryptonEvent__ksgen_energy_krypton_event__do_auger - -do_auger + +do_auger - + KSGenEnergyKryptonEvent__ksgen_energy_krypton_event->KSGenEnergyKryptonEvent__ksgen_energy_krypton_event__do_auger - - + + - + KSGenEnergyKryptonEvent__ksgen_energy_krypton_event__do_conversion - -do_conversion + +do_conversion - + KSGenEnergyKryptonEvent__ksgen_energy_krypton_event->KSGenEnergyKryptonEvent__ksgen_energy_krypton_event__do_conversion - - + + - + KSGenEnergyKryptonEvent__ksgen_energy_krypton_event__force_conversion - -force_conversion + +force_conversion - + KSGenEnergyKryptonEvent__ksgen_energy_krypton_event->KSGenEnergyKryptonEvent__ksgen_energy_krypton_event__force_conversion - - + + - + KSGenEnergyKryptonEvent__ksgen_energy_krypton_event__name - -name + +name - + KSGenEnergyKryptonEvent__ksgen_energy_krypton_event->KSGenEnergyKryptonEvent__ksgen_energy_krypton_event__name - - + + - + KSGenEnergyLeadEvent__ksgen_energy_lead_event__do_auger - -do_auger + +do_auger - + KSGenEnergyLeadEvent__ksgen_energy_lead_event->KSGenEnergyLeadEvent__ksgen_energy_lead_event__do_auger - - + + - + KSGenEnergyLeadEvent__ksgen_energy_lead_event__do_conversion - -do_conversion + +do_conversion - + KSGenEnergyLeadEvent__ksgen_energy_lead_event->KSGenEnergyLeadEvent__ksgen_energy_lead_event__do_conversion - - + + - + KSGenEnergyLeadEvent__ksgen_energy_lead_event__force_conversion - -force_conversion + +force_conversion - + KSGenEnergyLeadEvent__ksgen_energy_lead_event->KSGenEnergyLeadEvent__ksgen_energy_lead_event__force_conversion - - + + - + KSGenEnergyLeadEvent__ksgen_energy_lead_event__name - -name + +name - + KSGenEnergyLeadEvent__ksgen_energy_lead_event->KSGenEnergyLeadEvent__ksgen_energy_lead_event__name - - + + - + KSGenEnergyRadonEvent__ksgen_energy_radon_event__do_auger - -do_auger + +do_auger - + KSGenEnergyRadonEvent__ksgen_energy_radon_event->KSGenEnergyRadonEvent__ksgen_energy_radon_event__do_auger - - + + - + KSGenEnergyRadonEvent__ksgen_energy_radon_event__do_conversion - -do_conversion + +do_conversion - + KSGenEnergyRadonEvent__ksgen_energy_radon_event->KSGenEnergyRadonEvent__ksgen_energy_radon_event__do_conversion - - + + - + KSGenEnergyRadonEvent__ksgen_energy_radon_event__do_shake_off - -do_shake_off + +do_shake_off - + KSGenEnergyRadonEvent__ksgen_energy_radon_event->KSGenEnergyRadonEvent__ksgen_energy_radon_event__do_shake_off - - + + - + KSGenEnergyRadonEvent__ksgen_energy_radon_event__force_conversion - -force_conversion + +force_conversion - + KSGenEnergyRadonEvent__ksgen_energy_radon_event->KSGenEnergyRadonEvent__ksgen_energy_radon_event__force_conversion - - + + - + KSGenEnergyRadonEvent__ksgen_energy_radon_event__force_shake_off - -force_shake_off + +force_shake_off - + KSGenEnergyRadonEvent__ksgen_energy_radon_event->KSGenEnergyRadonEvent__ksgen_energy_radon_event__force_shake_off - - + + - + KSGenEnergyRadonEvent__ksgen_energy_radon_event__isotope_number - -isotope_number + +isotope_number - + KSGenEnergyRadonEvent__ksgen_energy_radon_event->KSGenEnergyRadonEvent__ksgen_energy_radon_event__isotope_number - - + + - + KSGenEnergyRadonEvent__ksgen_energy_radon_event__name - -name + +name - + KSGenEnergyRadonEvent__ksgen_energy_radon_event->KSGenEnergyRadonEvent__ksgen_energy_radon_event__name - - + + - + KSGenEnergyRydberg__ksgen_energy_rydberg__deposited_energy - -deposited_energy + +deposited_energy - + KSGenEnergyRydberg__ksgen_energy_rydberg->KSGenEnergyRydberg__ksgen_energy_rydberg__deposited_energy - - + + - + KSGenEnergyRydberg__ksgen_energy_rydberg__ionization_energy - -ionization_energy + +ionization_energy - + KSGenEnergyRydberg__ksgen_energy_rydberg->KSGenEnergyRydberg__ksgen_energy_rydberg__ionization_energy - - + + - + KSGenEnergyRydberg__ksgen_energy_rydberg__name - -name + +name - + KSGenEnergyRydberg__ksgen_energy_rydberg->KSGenEnergyRydberg__ksgen_energy_rydberg__name - - + + - + KSGenGeneratorComposite__ksgen_generator_composite__creator - -creator + +creator - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenGeneratorComposite__ksgen_generator_composite__creator - - + + - + KSGenGeneratorComposite__ksgen_generator_composite__name - -name + +name - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenGeneratorComposite__ksgen_generator_composite__name - - + + - + KSGenGeneratorComposite__ksgen_generator_composite__pid - -pid + +pid - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenGeneratorComposite__ksgen_generator_composite__pid - - + + - + KSGenGeneratorComposite__ksgen_generator_composite__special - -special + +special - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenGeneratorComposite__ksgen_generator_composite__special - - + + - + KSGenGeneratorComposite__ksgen_generator_composite__string_id - -string_id + +string_id - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenGeneratorComposite__ksgen_generator_composite__string_id - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite - -direction_spherical_composite + +direction_spherical_composite - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenDirectionSphericalComposite__direction_spherical_composite - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field - -direction_spherical_magnetic_field + +direction_spherical_magnetic_field - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite - -direction_surface_composite + +direction_surface_composite - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenDirectionSurfaceComposite__direction_surface_composite - - + + - + KSGenEnergyBetaDecay__energy_beta_decay - -energy_beta_decay + +energy_beta_decay - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyBetaDecay__energy_beta_decay - - + + - + KSGenEnergyBetaRecoil__energy_beta_recoil - -energy_beta_recoil + +energy_beta_recoil - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyBetaRecoil__energy_beta_recoil - - + + - + KSGenEnergyComposite__energy_composite - -energy_composite + +energy_composite - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyComposite__energy_composite - - + + - + KSGenEnergyKryptonEvent__energy_krypton_event - -energy_krypton_event + +energy_krypton_event - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyKryptonEvent__energy_krypton_event - - + + - + KSGenEnergyLeadEvent__energy_lead_event - -energy_lead_event + +energy_lead_event - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyLeadEvent__energy_lead_event - - + + - + KSGenEnergyRadonEvent__energy_radon_event - -energy_radon_event + +energy_radon_event - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyRadonEvent__energy_radon_event - - + + - + KSGenEnergyRydberg__energy_rydberg - -energy_rydberg + +energy_rydberg - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyRydberg__energy_rydberg - - + + - + KSGenLComposite__l_composite - -l_composite + +l_composite - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenLComposite__l_composite - - + + - + KSGenLStatistical__l_statistical - -l_statistical + +l_statistical - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenLStatistical__l_statistical - - + + - + KSGenLUniformMaxN__l_uniform_max_n - -l_uniform_max_n + +l_uniform_max_n - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenLUniformMaxN__l_uniform_max_n - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite - -momentum_rectangular_composite + +momentum_rectangular_composite - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenMomentumRectangularComposite__momentum_rectangular_composite - - + + - + KSGenNComposite__n_composite - -n_composite + +n_composite - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenNComposite__n_composite - - + + - + KSGenValueFix__pid_fix - -pid_fix + +pid_fix - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueFix__pid_fix - - + + - + KSGenValueFormula__pid_formula - -pid_formula + +pid_formula - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueFormula__pid_formula - - + + - + KSGenValueGauss__pid_gauss - -pid_gauss + +pid_gauss - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueGauss__pid_gauss - - + + - + KSGenValueHistogram__pid_histogram - -pid_histogram + +pid_histogram - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueHistogram__pid_histogram - - + + - + KSGenValueList__pid_list - -pid_list + +pid_list - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueList__pid_list - - + + - + KSGenValuePareto__pid_pareto - -pid_pareto + +pid_pareto - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenValuePareto__pid_pareto - - + + - + KSGenValueSet__pid_set - -pid_set + +pid_set - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueSet__pid_set - - + + - + KSGenValueUniform__pid_uniform - -pid_uniform + +pid_uniform - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueUniform__pid_uniform - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite - -position_cylindrical_composite + +position_cylindrical_composite - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionCylindricalComposite__position_cylindrical_composite - - + + - + KSGenPositionFluxTube__position_flux_tube - -position_flux_tube + +position_flux_tube - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionFluxTube__position_flux_tube - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite - -position_frustrum_composite + +position_frustrum_composite - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionFrustrumComposite__position_frustrum_composite - - + + - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube - -position_homogeneous_flux_tube + +position_homogeneous_flux_tube - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube - - + + - + KSGenPositionMask__position_mask - -position_mask + +position_mask - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionMask__position_mask - - + + - + KSGenPositionMeshSurfaceRandom__position_mesh_surface_random - -position_mesh_surface_random + +position_mesh_surface_random - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionMeshSurfaceRandom__position_mesh_surface_random - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite - -position_rectangular_composite + +position_rectangular_composite - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionRectangularComposite__position_rectangular_composite - - + + - + KSGenPositionSpaceRandom__position_space_random - -position_space_random + +position_space_random - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionSpaceRandom__position_space_random - - + + - + KSGenPositionSphericalComposite__position_spherical_composite - -position_spherical_composite + +position_spherical_composite - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionSphericalComposite__position_spherical_composite - - + + - + KSGenPositionSurfaceAdjustmentStep__position_surface_adjustment_step - -position_surface_adjustment_step + +position_surface_adjustment_step - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionSurfaceAdjustmentStep__position_surface_adjustment_step - - + + - + KSGenPositionSurfaceRandom__position_surface_random - -position_surface_random + +position_surface_random - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionSurfaceRandom__position_surface_random - - + + - + KSGenSpinComposite__spin_composite - -spin_composite + +spin_composite - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenSpinComposite__spin_composite - - + + - + KSGenSpinRelativeComposite__spin_relative_composite - -spin_relative_composite + +spin_relative_composite - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenSpinRelativeComposite__spin_relative_composite - - + + - + KSGenTimeComposite__time_composite - -time_composite + +time_composite - + KSGenGeneratorComposite__ksgen_generator_composite->KSGenTimeComposite__time_composite - - + + - + KSGenGeneratorTextFile__ksgen_generator_file__base - -base + +base - + KSGenGeneratorTextFile__ksgen_generator_file->KSGenGeneratorTextFile__ksgen_generator_file__base - - + + - + KSGenGeneratorTextFile__ksgen_generator_file__name - -name + +name - + KSGenGeneratorTextFile__ksgen_generator_file->KSGenGeneratorTextFile__ksgen_generator_file__name - - + + - + KSGenGeneratorTextFile__ksgen_generator_file__path - -path + +path - + KSGenGeneratorTextFile__ksgen_generator_file->KSGenGeneratorTextFile__ksgen_generator_file__path - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__base - -base + +base - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__base - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__direction_x - -direction_x + +direction_x - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__direction_x - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__direction_y - -direction_y + +direction_y - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__direction_y - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__direction_z - -direction_z + +direction_z - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__direction_z - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__energy - -energy + +energy - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__energy - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__generator - -generator + +generator - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__generator - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__kinetic_energy_field - -kinetic_energy_field + +kinetic_energy_field - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__kinetic_energy_field - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__momentum_field - -momentum_field + +momentum_field - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__momentum_field - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__name - -name + +name - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__name - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__path - -path + +path - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__path - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__pid_field - -pid_field + +pid_field - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__pid_field - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__position_field - -position_field + +position_field - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__position_field - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__position_x - -position_x + +position_x - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__position_x - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__position_y - -position_y + +position_y - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__position_y - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__position_z - -position_z + +position_z - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__position_z - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__terminator - -terminator + +terminator - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__terminator - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__time - -time + +time - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__time - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__time_field - -time_field + +time_field - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__time_field - - + + - + KSGenGeneratorSimulation__ksgen_generator_simulation__track_group - -track_group + +track_group - + KSGenGeneratorSimulation__ksgen_generator_simulation->KSGenGeneratorSimulation__ksgen_generator_simulation__track_group - - + + - + KSGenValueFix__l_fix - -l_fix + +l_fix - + KSGenLComposite__ksgen_l_composite->KSGenValueFix__l_fix - - + + - + KSGenValueFormula__l_formula - -l_formula + +l_formula - + KSGenLComposite__ksgen_l_composite->KSGenValueFormula__l_formula - - + + - + KSGenValueGauss__l_gauss - -l_gauss + +l_gauss - + KSGenLComposite__ksgen_l_composite->KSGenValueGauss__l_gauss - - + + - + KSGenValueList__l_list - -l_list + +l_list - + KSGenLComposite__ksgen_l_composite->KSGenValueList__l_list - - + + - + KSGenValueSet__l_set - -l_set + +l_set - + KSGenLComposite__ksgen_l_composite->KSGenValueSet__l_set - - + + - + KSGenValueUniform__l_uniform - -l_uniform + +l_uniform - + KSGenLComposite__ksgen_l_composite->KSGenValueUniform__l_uniform - - + + - + KSGenLComposite__ksgen_l_composite__l_value - -l_value + +l_value - + KSGenLComposite__ksgen_l_composite->KSGenLComposite__ksgen_l_composite__l_value - - + + - + KSGenLComposite__ksgen_l_composite__name - -name + +name - + KSGenLComposite__ksgen_l_composite->KSGenLComposite__ksgen_l_composite__name - - + + - + KSGenLStatistical__ksgen_l_statistical__name - -name + +name - + KSGenLStatistical__ksgen_l_statistical->KSGenLStatistical__ksgen_l_statistical__name - - + + - + KSGenLUniformMaxN__ksgen_l_uniform_max_n__name - -name + +name - + KSGenLUniformMaxN__ksgen_l_uniform_max_n->KSGenLUniformMaxN__ksgen_l_uniform_max_n__name - - + + - + KSGenValueFix__x_fix - -x_fix + +x_fix - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueFix__x_fix - - + + - + KSGenValueFormula__x_formula - -x_formula + +x_formula - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueFormula__x_formula - - + + - + KSGenValueGauss__x_gauss - -x_gauss + +x_gauss - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueGauss__x_gauss - - + + - + KSGenValueHistogram__x_histogram - -x_histogram + +x_histogram - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueHistogram__x_histogram - - + + - + KSGenValueList__x_list - -x_list + +x_list - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueList__x_list - - + + - + KSGenValueSet__x_set - -x_set + +x_set - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueSet__x_set - - + + - + KSGenValueUniform__x_uniform - -x_uniform + +x_uniform - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueUniform__x_uniform - - + + - + KSGenValueFix__y_fix - -y_fix + +y_fix - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueFix__y_fix - - + + - + KSGenValueFormula__y_formula - -y_formula + +y_formula - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueFormula__y_formula - - + + - + KSGenValueGauss__y_gauss - -y_gauss + +y_gauss - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueGauss__y_gauss - - + + - + KSGenValueHistogram__y_histogram - -y_histogram + +y_histogram - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueHistogram__y_histogram - - + + - + KSGenValueList__y_list - -y_list + +y_list - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueList__y_list - - + + - + KSGenValueSet__y_set - -y_set + +y_set - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueSet__y_set - - + + - + KSGenValueUniform__y_uniform - -y_uniform + +y_uniform - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueUniform__y_uniform - - + + - + KSGenValueFix__z_fix - -z_fix + +z_fix - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueFix__z_fix - - + + - + KSGenValueFormula__z_formula - -z_formula + +z_formula - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueFormula__z_formula - - + + - + KSGenValueGauss__z_gauss - -z_gauss + +z_gauss - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueGauss__z_gauss - - + + - + KSGenValueHistogram__z_histogram - -z_histogram + +z_histogram - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueHistogram__z_histogram - - + + - + KSGenValueList__z_list - -z_list + +z_list - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueList__z_list - - + + - + KSGenValueSet__z_set - -z_set + +z_set - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueSet__z_set - - + + - + KSGenValueUniform__z_uniform - -z_uniform + +z_uniform - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueUniform__z_uniform - - + + - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite__name - -name + +name - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite__name - - + + - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite__space - -space + +space - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite__space - - + + - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite__surface - -surface + +surface - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite__surface - - + + - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite__x - -x + +x - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite__x - - + + - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite__y - -y + +y - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite__y - - + + - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite__z - -z + +z - + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite__z - - + + - + KSGenValueFix__n_fix - -n_fix + +n_fix - + KSGenNComposite__ksgen_n_composite->KSGenValueFix__n_fix - - + + - + KSGenValueFormula__n_formula - -n_formula + +n_formula - + KSGenNComposite__ksgen_n_composite->KSGenValueFormula__n_formula - - + + - + KSGenValueGauss__n_gauss - -n_gauss + +n_gauss - + KSGenNComposite__ksgen_n_composite->KSGenValueGauss__n_gauss - - + + - + KSGenValueList__n_list - -n_list + +n_list - + KSGenNComposite__ksgen_n_composite->KSGenValueList__n_list - - + + - + KSGenValuePareto__n_pareto - -n_pareto + +n_pareto - + KSGenNComposite__ksgen_n_composite->KSGenValuePareto__n_pareto - - + + - + KSGenValueSet__n_set - -n_set + +n_set - + KSGenNComposite__ksgen_n_composite->KSGenValueSet__n_set - - + + - + KSGenValueUniform__n_uniform - -n_uniform + +n_uniform - + KSGenNComposite__ksgen_n_composite->KSGenValueUniform__n_uniform - - + + - + KSGenNComposite__ksgen_n_composite__n_value - -n_value + +n_value - + KSGenNComposite__ksgen_n_composite->KSGenNComposite__ksgen_n_composite__n_value - - + + - + KSGenNComposite__ksgen_n_composite__name - -name + +name - + KSGenNComposite__ksgen_n_composite->KSGenNComposite__ksgen_n_composite__name - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueFix__phi_fix - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueFormula__phi_formula - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueList__phi_list - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueSet__phi_set - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueFix__z_fix - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueFormula__z_formula - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueGauss__z_gauss - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueHistogram__z_histogram - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueList__z_list - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueSet__z_set - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueUniform__z_uniform - - + + - + KSGenValueRadiusCylindrical__r_cylindrical - -r_cylindrical + +r_cylindrical - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueRadiusCylindrical__r_cylindrical - - + + - + KSGenValueFix__r_fix - -r_fix + +r_fix - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueFix__r_fix - - + + - + KSGenValueFormula__r_formula - -r_formula + +r_formula - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueFormula__r_formula - - + + - + KSGenValueRadiusFraction__r_fraction - -r_fraction + +r_fraction - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueRadiusFraction__r_fraction - - + + - + KSGenValueGauss__r_gauss - -r_gauss + +r_gauss - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueGauss__r_gauss - - + + - + KSGenValueHistogram__r_histogram - -r_histogram + +r_histogram - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueHistogram__r_histogram - - + + - + KSGenValueList__r_list - -r_list + +r_list - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueList__r_list - - + + - + KSGenValueSet__r_set - -r_set + +r_set - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueSet__r_set - - + + - + KSGenValueUniform__r_uniform - -r_uniform + +r_uniform - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueUniform__r_uniform - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite__name - -name + +name - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite__name - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite__phi - -phi + +phi - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite__phi - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite__r - -r + +r - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite__r - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite__space - -space + +space - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite__space - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite__surface - -surface + +surface - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite__surface - - + + - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite__z - -z + +z - + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite__z - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueFix__phi_fix - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueGauss__phi_gauss - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueSet__phi_set - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueUniform__phi_uniform - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueFix__z_fix - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueFormula__z_formula - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueGauss__z_gauss - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueSet__z_set - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueUniform__z_uniform - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueFormula__r_formula - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube__flux - -flux + +flux - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenPositionFluxTube__ksgen_position_flux_tube__flux - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube__magnetic_field_name - -magnetic_field_name + +magnetic_field_name - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenPositionFluxTube__ksgen_position_flux_tube__magnetic_field_name - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube__n_integration_step - -n_integration_step + +n_integration_step - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenPositionFluxTube__ksgen_position_flux_tube__n_integration_step - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube__name - -name + +name - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenPositionFluxTube__ksgen_position_flux_tube__name - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube__only_surface - -only_surface + +only_surface - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenPositionFluxTube__ksgen_position_flux_tube__only_surface - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube__phi - -phi + +phi - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenPositionFluxTube__ksgen_position_flux_tube__phi - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube__space - -space + +space - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenPositionFluxTube__ksgen_position_flux_tube__space - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube__surface - -surface + +surface - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenPositionFluxTube__ksgen_position_flux_tube__surface - - + + - + KSGenPositionFluxTube__ksgen_position_flux_tube__z - -z + +z - + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenPositionFluxTube__ksgen_position_flux_tube__z - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__phi_fix - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFormula__phi_formula - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueList__phi_list - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueSet__phi_set - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__z_fix - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFormula__z_formula - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueGauss__z_gauss - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueHistogram__z_histogram - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueList__z_list - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueSet__z_set - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueUniform__z_uniform - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueRadiusCylindrical__r_cylindrical - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__r_fix - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFormula__r_formula - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueRadiusFraction__r_fraction - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueGauss__r_gauss - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueHistogram__r_histogram - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueList__r_list - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueSet__r_set - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueUniform__r_uniform - - + + - + KSGenValueFix__r1_fix - -r1_fix + +r1_fix - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__r1_fix - - + + - + KSGenValueFix__r2_fix - -r2_fix + +r2_fix - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__r2_fix - - + + - + KSGenValueFix__z1_fix - -z1_fix + +z1_fix - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__z1_fix - - + + - + KSGenValueFix__z2_fix - -z2_fix + +z2_fix - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__z2_fix - - + + - + KSGenValueZFrustrum__z_frustrum - -z_frustrum + +z_frustrum - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueZFrustrum__z_frustrum - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__name - -name + +name - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__name - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__phi - -phi + +phi - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__phi - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__r - -r + +r - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__r - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__r1 - -r1 + +r1 - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__r1 - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__r2 - -r2 + +r2 - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__r2 - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__space - -space + +space - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__space - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__surface - -surface + +surface - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__surface - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__z - -z + +z - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__z - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__z1 - -z1 + +z1 - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__z1 - - + + - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__z2 - -z2 + +z2 - + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite__z2 - - + + - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__flux - -flux + +flux - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__flux - - + + - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__magnetic_field_name - -magnetic_field_name + +magnetic_field_name - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__magnetic_field_name - - + + - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__n_integration_step - -n_integration_step + +n_integration_step - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__n_integration_step - - + + - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__name - -name + +name - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__name - - + + - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__phi_max - -phi_max + +phi_max - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__phi_max - - + + - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__phi_min - -phi_min + +phi_min - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__phi_min - - + + - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__r_max - -r_max + +r_max - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__r_max - - + + - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__z_max - -z_max + +z_max - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__z_max - - + + - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__z_min - -z_min + +z_min - + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube__z_min - - + + - + KSGenPositionMask__ksgen_position_mask->KSGenPositionCylindricalComposite__position_cylindrical_composite - - + + - + KSGenPositionMask__ksgen_position_mask->KSGenPositionMeshSurfaceRandom__position_mesh_surface_random - - + + - + KSGenPositionMask__ksgen_position_mask->KSGenPositionRectangularComposite__position_rectangular_composite - - + + - + KSGenPositionMask__ksgen_position_mask->KSGenPositionSpaceRandom__position_space_random - - + + - + KSGenPositionMask__ksgen_position_mask->KSGenPositionSphericalComposite__position_spherical_composite - - + + - + KSGenPositionSurfaceRandom __position_surface_random - -position_surface_random + +position_surface_random - + KSGenPositionMask__ksgen_position_mask->KSGenPositionSurfaceRandom __position_surface_random - - + + - + KSGenPositionMask__ksgen_position_mask__max_retries - -max_retries + +max_retries - + KSGenPositionMask__ksgen_position_mask->KSGenPositionMask__ksgen_position_mask__max_retries - - + + - + KSGenPositionMask__ksgen_position_mask__name - -name + +name - + KSGenPositionMask__ksgen_position_mask->KSGenPositionMask__ksgen_position_mask__name - - + + - + KSGenPositionMask__ksgen_position_mask__spaces_allowed - -spaces_allowed + +spaces_allowed - + KSGenPositionMask__ksgen_position_mask->KSGenPositionMask__ksgen_position_mask__spaces_allowed - - + + - + KSGenPositionMask__ksgen_position_mask__spaces_forbidden - -spaces_forbidden + +spaces_forbidden - + KSGenPositionMask__ksgen_position_mask->KSGenPositionMask__ksgen_position_mask__spaces_forbidden - - + + - + KSGenPositionMeshSurfaceRandom__ksgen_position_mesh_surface_random__name - -name + +name - + KSGenPositionMeshSurfaceRandom__ksgen_position_mesh_surface_random->KSGenPositionMeshSurfaceRandom__ksgen_position_mesh_surface_random__name - - + + - + KSGenPositionMeshSurfaceRandom__ksgen_position_mesh_surface_random__surfaces - -surfaces + +surfaces - + KSGenPositionMeshSurfaceRandom__ksgen_position_mesh_surface_random->KSGenPositionMeshSurfaceRandom__ksgen_position_mesh_surface_random__surfaces - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueFix__x_fix - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueFormula__x_formula - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueGauss__x_gauss - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueHistogram__x_histogram - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueList__x_list - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueSet__x_set - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueUniform__x_uniform - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueFix__y_fix - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueFormula__y_formula - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueGauss__y_gauss - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueHistogram__y_histogram - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueList__y_list - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueSet__y_set - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueUniform__y_uniform - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueFix__z_fix - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueFormula__z_formula - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueGauss__z_gauss - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueHistogram__z_histogram - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueList__z_list - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueSet__z_set - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueUniform__z_uniform - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite__name - -name + +name - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenPositionRectangularComposite__ksgen_position_rectangular_composite__name - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite__space - -space + +space - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenPositionRectangularComposite__ksgen_position_rectangular_composite__space - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite__surface - -surface + +surface - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenPositionRectangularComposite__ksgen_position_rectangular_composite__surface - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite__x - -x + +x - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenPositionRectangularComposite__ksgen_position_rectangular_composite__x - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite__y - -y + +y - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenPositionRectangularComposite__ksgen_position_rectangular_composite__y - - + + - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite__z - -z + +z - + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenPositionRectangularComposite__ksgen_position_rectangular_composite__z - - + + - + KSGenPositionSpaceRandom__ksgen_position_space_random__name - -name + +name - + KSGenPositionSpaceRandom__ksgen_position_space_random->KSGenPositionSpaceRandom__ksgen_position_space_random__name - - + + - + KSGenPositionSpaceRandom__ksgen_position_space_random__spaces - -spaces + +spaces - + KSGenPositionSpaceRandom__ksgen_position_space_random->KSGenPositionSpaceRandom__ksgen_position_space_random__spaces - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueFix__phi_fix - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueFormula__phi_formula - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueList__phi_list - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueSet__phi_set - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueFix__theta_fix - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueFormula__theta_formula - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueGauss__theta_gauss - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueHistogram__theta_histogram - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueList__theta_list - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueSet__theta_set - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueAngleSpherical__theta_spherical - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueUniform__theta_uniform - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueFix__r_fix - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueFormula__r_formula - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueGauss__r_gauss - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueHistogram__r_histogram - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueList__r_list - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueSet__r_set - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueUniform__r_uniform - - + + - + KSGenValueRadiusSpherical__r_spherical - -r_spherical + +r_spherical - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueRadiusSpherical__r_spherical - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite__name - -name + +name - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenPositionSphericalComposite__ksgen_position_spherical_composite__name - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite__phi - -phi + +phi - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenPositionSphericalComposite__ksgen_position_spherical_composite__phi - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite__r - -r + +r - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenPositionSphericalComposite__ksgen_position_spherical_composite__r - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite__space - -space + +space - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenPositionSphericalComposite__ksgen_position_spherical_composite__space - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite__surface - -surface + +surface - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenPositionSphericalComposite__ksgen_position_spherical_composite__surface - - + + - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite__theta - -theta + +theta - + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenPositionSphericalComposite__ksgen_position_spherical_composite__theta - - + + - + KSGenPositionSurfaceAdjustmentStep__ksgen_position_surface_adjustment_step__length - -length + +length - + KSGenPositionSurfaceAdjustmentStep__ksgen_position_surface_adjustment_step->KSGenPositionSurfaceAdjustmentStep__ksgen_position_surface_adjustment_step__length - - + + - + KSGenPositionSurfaceAdjustmentStep__ksgen_position_surface_adjustment_step__name - -name + +name - + KSGenPositionSurfaceAdjustmentStep__ksgen_position_surface_adjustment_step->KSGenPositionSurfaceAdjustmentStep__ksgen_position_surface_adjustment_step__name - - + + - + KSGenPositionSurfaceRandom__ksgen_position_surface_random__name - -name + +name - + KSGenPositionSurfaceRandom__ksgen_position_surface_random->KSGenPositionSurfaceRandom__ksgen_position_surface_random__name - - + + - + KSGenPositionSurfaceRandom__ksgen_position_surface_random__surfaces - -surfaces + +surfaces - + KSGenPositionSurfaceRandom__ksgen_position_surface_random->KSGenPositionSurfaceRandom__ksgen_position_surface_random__surfaces - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueFix__phi_fix - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueFormula__phi_formula - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueList__phi_list - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueSet__phi_set - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueAngleCosine__theta_cosine - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueFix__theta_fix - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueFormula__theta_formula - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueGauss__theta_gauss - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueHistogram__theta_histogram - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueList__theta_list - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueSet__theta_set - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueAngleSpherical__theta_spherical - - + + - + KSGenSpinComposite__ksgen_spin_composite->KSGenValueUniform__theta_uniform - - + + - + KSGenSpinComposite__ksgen_spin_composite__name - -name + +name - + KSGenSpinComposite__ksgen_spin_composite->KSGenSpinComposite__ksgen_spin_composite__name - - + + - + KSGenSpinComposite__ksgen_spin_composite__phi - -phi + +phi - + KSGenSpinComposite__ksgen_spin_composite->KSGenSpinComposite__ksgen_spin_composite__phi - - + + - + KSGenSpinComposite__ksgen_spin_composite__space - -space + +space - + KSGenSpinComposite__ksgen_spin_composite->KSGenSpinComposite__ksgen_spin_composite__space - - + + - + KSGenSpinComposite__ksgen_spin_composite__surface - -surface + +surface - + KSGenSpinComposite__ksgen_spin_composite->KSGenSpinComposite__ksgen_spin_composite__surface - - + + - + KSGenSpinComposite__ksgen_spin_composite__theta - -theta + +theta - + KSGenSpinComposite__ksgen_spin_composite->KSGenSpinComposite__ksgen_spin_composite__theta - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueFix__phi_fix - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueFormula__phi_formula - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueGauss__phi_gauss - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueHistogram__phi_histogram - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueList__phi_list - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueSet__phi_set - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueUniform__phi_uniform - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueAngleCosine__theta_cosine - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueFix__theta_fix - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueFormula__theta_formula - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueGauss__theta_gauss - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueHistogram__theta_histogram - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueList__theta_list - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueSet__theta_set - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueAngleSpherical__theta_spherical - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueUniform__theta_uniform - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative__name - -name + +name - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenSpinRelativeComposite__ksgen_spin_composite_relative__name - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative__phi - -phi + +phi - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenSpinRelativeComposite__ksgen_spin_composite_relative__phi - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative__space - -space + +space - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenSpinRelativeComposite__ksgen_spin_composite_relative__space - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative__surface - -surface + +surface - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenSpinRelativeComposite__ksgen_spin_composite_relative__surface - - + + - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative__theta - -theta + +theta - + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenSpinRelativeComposite__ksgen_spin_composite_relative__theta - - + + - + KSGenValueFermi__time_fermi - -time_fermi + +time_fermi - + KSGenTimeComposite__ksgen_time_composite->KSGenValueFermi__time_fermi - - + + - + KSGenValueFix__time_fix - -time_fix + +time_fix - + KSGenTimeComposite__ksgen_time_composite->KSGenValueFix__time_fix - - + + - + KSGenValueFormula__time_formula - -time_formula + +time_formula - + KSGenTimeComposite__ksgen_time_composite->KSGenValueFormula__time_formula - - + + - + KSGenValueGauss__time_gauss - -time_gauss + +time_gauss - + KSGenTimeComposite__ksgen_time_composite->KSGenValueGauss__time_gauss - - + + - + KSGenValueGeneralizedGauss__time_generalized_gauss - -time_generalized_gauss + +time_generalized_gauss - + KSGenTimeComposite__ksgen_time_composite->KSGenValueGeneralizedGauss__time_generalized_gauss - - + + - + KSGenValueHistogram__time_histogram - -time_histogram + +time_histogram - + KSGenTimeComposite__ksgen_time_composite->KSGenValueHistogram__time_histogram - - + + - + KSGenValueList__time_list - -time_list + +time_list - + KSGenTimeComposite__ksgen_time_composite->KSGenValueList__time_list - - + + - + KSGenValueSet__time_set - -time_set + +time_set - + KSGenTimeComposite__ksgen_time_composite->KSGenValueSet__time_set - - + + - + KSGenValueUniform__time_uniform - -time_uniform + +time_uniform - + KSGenTimeComposite__ksgen_time_composite->KSGenValueUniform__time_uniform - - + + - + KSGenTimeComposite__ksgen_time_composite__name - -name + +name - + KSGenTimeComposite__ksgen_time_composite->KSGenTimeComposite__ksgen_time_composite__name - - + + - + KSGenTimeComposite__ksgen_time_composite__time_value - -time_value + +time_value - + KSGenTimeComposite__ksgen_time_composite->KSGenTimeComposite__ksgen_time_composite__time_value - - + + - + KSGenValueAngleCosine__ksgen_value_angle_cosine__angle_max - -angle_max + +angle_max - + KSGenValueAngleCosine__ksgen_value_angle_cosine->KSGenValueAngleCosine__ksgen_value_angle_cosine__angle_max - - + + - + KSGenValueAngleCosine__ksgen_value_angle_cosine__angle_min - -angle_min + +angle_min - + KSGenValueAngleCosine__ksgen_value_angle_cosine->KSGenValueAngleCosine__ksgen_value_angle_cosine__angle_min - - + + + + + +KSGenValueAngleCosine__ksgen_value_angle_cosine__direction + +direction + + + +KSGenValueAngleCosine__ksgen_value_angle_cosine->KSGenValueAngleCosine__ksgen_value_angle_cosine__direction + + - + KSGenValueAngleCosine__ksgen_value_angle_cosine__mode - -mode + +mode - + KSGenValueAngleCosine__ksgen_value_angle_cosine->KSGenValueAngleCosine__ksgen_value_angle_cosine__mode - - + + - + KSGenValueAngleCosine__ksgen_value_angle_cosine__name - -name + +name - + KSGenValueAngleCosine__ksgen_value_angle_cosine->KSGenValueAngleCosine__ksgen_value_angle_cosine__name - - + + - + KSGenValueAngleSpherical__ksgen_value_angle_spherical__angle_max - -angle_max + +angle_max - + KSGenValueAngleSpherical__ksgen_value_angle_spherical->KSGenValueAngleSpherical__ksgen_value_angle_spherical__angle_max - - + + - + KSGenValueAngleSpherical__ksgen_value_angle_spherical__angle_min - -angle_min + +angle_min - + KSGenValueAngleSpherical__ksgen_value_angle_spherical->KSGenValueAngleSpherical__ksgen_value_angle_spherical__angle_min - - + + - + KSGenValueAngleSpherical__ksgen_value_angle_spherical__name - -name + +name - + KSGenValueAngleSpherical__ksgen_value_angle_spherical->KSGenValueAngleSpherical__ksgen_value_angle_spherical__name - - + + - + KSGenValueBoltzmann__ksgen_value_boltzmann__name - -name + +name - + KSGenValueBoltzmann__ksgen_value_boltzmann->KSGenValueBoltzmann__ksgen_value_boltzmann__name - - + + - + KSGenValueBoltzmann__ksgen_value_boltzmann__unit_eV - -unit_eV + +unit_eV - + KSGenValueBoltzmann__ksgen_value_boltzmann->KSGenValueBoltzmann__ksgen_value_boltzmann__unit_eV - - + + - + KSGenValueBoltzmann__ksgen_value_boltzmann__value_kT - -value_kT + +value_kT - + KSGenValueBoltzmann__ksgen_value_boltzmann->KSGenValueBoltzmann__ksgen_value_boltzmann__value_kT - - + + - + KSGenValueBoltzmann__ksgen_value_boltzmann__value_mass - -value_mass + +value_mass - + KSGenValueBoltzmann__ksgen_value_boltzmann->KSGenValueBoltzmann__ksgen_value_boltzmann__value_mass - - + + - + KSGenValueFermi__ksgen_value_fermi__name - -name + +name - + KSGenValueFermi__ksgen_value_fermi->KSGenValueFermi__ksgen_value_fermi__name - - + + - + KSGenValueFermi__ksgen_value_fermi__value_max - -value_max + +value_max - + KSGenValueFermi__ksgen_value_fermi->KSGenValueFermi__ksgen_value_fermi__value_max - - + + - + KSGenValueFermi__ksgen_value_fermi__value_mean - -value_mean + +value_mean - + KSGenValueFermi__ksgen_value_fermi->KSGenValueFermi__ksgen_value_fermi__value_mean - - + + - + KSGenValueFermi__ksgen_value_fermi__value_min - -value_min + +value_min - + KSGenValueFermi__ksgen_value_fermi->KSGenValueFermi__ksgen_value_fermi__value_min - - + + - + KSGenValueFermi__ksgen_value_fermi__value_tau - -value_tau + +value_tau - + KSGenValueFermi__ksgen_value_fermi->KSGenValueFermi__ksgen_value_fermi__value_tau - - + + - + KSGenValueFermi__ksgen_value_fermi__value_temp - -value_temp + +value_temp - + KSGenValueFermi__ksgen_value_fermi->KSGenValueFermi__ksgen_value_fermi__value_temp - - + + - + KSGenValueFix__ksgen_value_fix__name - -name + +name - + KSGenValueFix__ksgen_value_fix->KSGenValueFix__ksgen_value_fix__name - - + + - + KSGenValueFix__ksgen_value_fix__value - -value + +value - + KSGenValueFix__ksgen_value_fix->KSGenValueFix__ksgen_value_fix__value - - + + - + KSGenValueFormula__ksgen_value_formula__name - -name + +name - + KSGenValueFormula__ksgen_value_formula->KSGenValueFormula__ksgen_value_formula__name - - + + - + KSGenValueFormula__ksgen_value_formula__value_formula - -value_formula + +value_formula - + KSGenValueFormula__ksgen_value_formula->KSGenValueFormula__ksgen_value_formula__value_formula - - + + - + KSGenValueFormula__ksgen_value_formula__value_max - -value_max + +value_max - + KSGenValueFormula__ksgen_value_formula->KSGenValueFormula__ksgen_value_formula__value_max - - + + - + KSGenValueFormula__ksgen_value_formula__value_min - -value_min + +value_min - + KSGenValueFormula__ksgen_value_formula->KSGenValueFormula__ksgen_value_formula__value_min - - + + - + KSGenValueGauss__ksgen_value_gauss__name - -name + +name - + KSGenValueGauss__ksgen_value_gauss->KSGenValueGauss__ksgen_value_gauss__name - - + + - + KSGenValueGauss__ksgen_value_gauss__value_max - -value_max + +value_max - + KSGenValueGauss__ksgen_value_gauss->KSGenValueGauss__ksgen_value_gauss__value_max - - + + - + KSGenValueGauss__ksgen_value_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGauss__ksgen_value_gauss->KSGenValueGauss__ksgen_value_gauss__value_mean - - + + - + KSGenValueGauss__ksgen_value_gauss__value_min - -value_min + +value_min - + KSGenValueGauss__ksgen_value_gauss->KSGenValueGauss__ksgen_value_gauss__value_min - - + + - + KSGenValueGauss__ksgen_value_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGauss__ksgen_value_gauss->KSGenValueGauss__ksgen_value_gauss__value_sigma - - + + - + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss__name - -name + +name - + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss->KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss__name - - + + - + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss__value_max - -value_max + +value_max - + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss->KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss__value_max - - + + - + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss->KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss__value_mean - - + + - + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss__value_min - -value_min + +value_min - + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss->KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss__value_min - - + + - + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss->KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss__value_sigma - - + + - + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss__value_skew - -value_skew + +value_skew - + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss->KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss__value_skew - - + + - + KSGenValueHistogram__ksgen_value_histogram__base - -base + +base - + KSGenValueHistogram__ksgen_value_histogram->KSGenValueHistogram__ksgen_value_histogram__base - - + + - + KSGenValueHistogram__ksgen_value_histogram__formula - -formula + +formula - + KSGenValueHistogram__ksgen_value_histogram->KSGenValueHistogram__ksgen_value_histogram__formula - - + + - + KSGenValueHistogram__ksgen_value_histogram__histogram - -histogram + +histogram - + KSGenValueHistogram__ksgen_value_histogram->KSGenValueHistogram__ksgen_value_histogram__histogram - - + + - + KSGenValueHistogram__ksgen_value_histogram__name - -name + +name - + KSGenValueHistogram__ksgen_value_histogram->KSGenValueHistogram__ksgen_value_histogram__name - - + + - + KSGenValueHistogram__ksgen_value_histogram__path - -path + +path - + KSGenValueHistogram__ksgen_value_histogram->KSGenValueHistogram__ksgen_value_histogram__path - - + + - + KSGenValueList__ksgen_value_list__add_value - -add_value + +add_value - + KSGenValueList__ksgen_value_list->KSGenValueList__ksgen_value_list__add_value - - + + - + KSGenValueList__ksgen_value_list__name - -name + +name - + KSGenValueList__ksgen_value_list->KSGenValueList__ksgen_value_list__name - - + + - + KSGenValueList__ksgen_value_list__randomize - -randomize + +randomize - + KSGenValueList__ksgen_value_list->KSGenValueList__ksgen_value_list__randomize - - + + - + KSGenValuePareto__ksgen_value_pareto__cutoff - -cutoff + +cutoff - + KSGenValuePareto__ksgen_value_pareto->KSGenValuePareto__ksgen_value_pareto__cutoff - - + + - + KSGenValuePareto__ksgen_value_pareto__name - -name + +name - + KSGenValuePareto__ksgen_value_pareto->KSGenValuePareto__ksgen_value_pareto__name - - + + - + KSGenValuePareto__ksgen_value_pareto__offset - -offset + +offset - + KSGenValuePareto__ksgen_value_pareto->KSGenValuePareto__ksgen_value_pareto__offset - - + + - + KSGenValuePareto__ksgen_value_pareto__slope - -slope + +slope - + KSGenValuePareto__ksgen_value_pareto->KSGenValuePareto__ksgen_value_pareto__slope - - + + - + KSGenValuePareto__ksgen_value_pareto__value_max - -value_max + +value_max - + KSGenValuePareto__ksgen_value_pareto->KSGenValuePareto__ksgen_value_pareto__value_max - - + + - + KSGenValuePareto__ksgen_value_pareto__value_min - -value_min + +value_min - + KSGenValuePareto__ksgen_value_pareto->KSGenValuePareto__ksgen_value_pareto__value_min - - + + - + KSGenValueRadiusCylindrical__ksgen_value_radius_cylindrical__name - -name + +name - + KSGenValueRadiusCylindrical__ksgen_value_radius_cylindrical->KSGenValueRadiusCylindrical__ksgen_value_radius_cylindrical__name - - + + - + KSGenValueRadiusCylindrical__ksgen_value_radius_cylindrical__radius_max - -radius_max + +radius_max - + KSGenValueRadiusCylindrical__ksgen_value_radius_cylindrical->KSGenValueRadiusCylindrical__ksgen_value_radius_cylindrical__radius_max - - + + - + KSGenValueRadiusCylindrical__ksgen_value_radius_cylindrical__radius_min - -radius_min + +radius_min - + KSGenValueRadiusCylindrical__ksgen_value_radius_cylindrical->KSGenValueRadiusCylindrical__ksgen_value_radius_cylindrical__radius_min - - + + - + KSGenValueRadiusFraction__ksgen_value_radius_fraction__name - -name + +name - + KSGenValueRadiusFraction__ksgen_value_radius_fraction->KSGenValueRadiusFraction__ksgen_value_radius_fraction__name - - + + - + KSGenValueRadiusSpherical__ksgen_value_radius_spherical__name - -name + +name - + KSGenValueRadiusSpherical__ksgen_value_radius_spherical->KSGenValueRadiusSpherical__ksgen_value_radius_spherical__name - - + + - + KSGenValueRadiusSpherical__ksgen_value_radius_spherical__radius_max - -radius_max + +radius_max - + KSGenValueRadiusSpherical__ksgen_value_radius_spherical->KSGenValueRadiusSpherical__ksgen_value_radius_spherical__radius_max - - + + - + KSGenValueRadiusSpherical__ksgen_value_radius_spherical__radius_min - -radius_min + +radius_min - + KSGenValueRadiusSpherical__ksgen_value_radius_spherical->KSGenValueRadiusSpherical__ksgen_value_radius_spherical__radius_min - - + + - + KSGenValueSet__ksgen_value_set__name - -name + +name - + KSGenValueSet__ksgen_value_set->KSGenValueSet__ksgen_value_set__name - - + + - + KSGenValueSet__ksgen_value_set__value_count - -value_count + +value_count - + KSGenValueSet__ksgen_value_set->KSGenValueSet__ksgen_value_set__value_count - - + + - + KSGenValueSet__ksgen_value_set__value_increment - -value_increment + +value_increment - + KSGenValueSet__ksgen_value_set->KSGenValueSet__ksgen_value_set__value_increment - - + + - + KSGenValueSet__ksgen_value_set__value_start - -value_start + +value_start - + KSGenValueSet__ksgen_value_set->KSGenValueSet__ksgen_value_set__value_start - - + + - + KSGenValueSet__ksgen_value_set__value_stop - -value_stop + +value_stop - + KSGenValueSet__ksgen_value_set->KSGenValueSet__ksgen_value_set__value_stop - - + + - + KSGenValueUniform__ksgen_value_uniform__name - -name + +name - + KSGenValueUniform__ksgen_value_uniform->KSGenValueUniform__ksgen_value_uniform__name - - + + - + KSGenValueUniform__ksgen_value_uniform__value_max - -value_max + +value_max - + KSGenValueUniform__ksgen_value_uniform->KSGenValueUniform__ksgen_value_uniform__value_max - - + + - + KSGenValueUniform__ksgen_value_uniform__value_min - -value_min + +value_min - + KSGenValueUniform__ksgen_value_uniform->KSGenValueUniform__ksgen_value_uniform__value_min - - + + - + KSGenValueZFrustrum__ksgen_value_z_frustrum__name - -name + +name - + KSGenValueZFrustrum__ksgen_value_z_frustrum->KSGenValueZFrustrum__ksgen_value_z_frustrum__name - - + + - + KSGenValueZFrustrum__ksgen_value_z_frustrum__r1 - -r1 + +r1 - + KSGenValueZFrustrum__ksgen_value_z_frustrum->KSGenValueZFrustrum__ksgen_value_z_frustrum__r1 - - + + - + KSGenValueZFrustrum__ksgen_value_z_frustrum__r2 - -r2 + +r2 - + KSGenValueZFrustrum__ksgen_value_z_frustrum->KSGenValueZFrustrum__ksgen_value_z_frustrum__r2 - - + + - + KSGenValueZFrustrum__ksgen_value_z_frustrum__z1 - -z1 + +z1 - + KSGenValueZFrustrum__ksgen_value_z_frustrum->KSGenValueZFrustrum__ksgen_value_z_frustrum__z1 - - + + - + KSGenValueZFrustrum__ksgen_value_z_frustrum__z2 - -z2 + +z2 - + KSGenValueZFrustrum__ksgen_value_z_frustrum->KSGenValueZFrustrum__ksgen_value_z_frustrum__z2 - - + + - + KSGeoSide__ksgeo_side__name - -name + +name - + KSGeoSide__ksgeo_side->KSGeoSide__ksgeo_side__name - - + + - + KSGeoSide__ksgeo_side__spaces - -spaces + +spaces - + KSGeoSide__ksgeo_side->KSGeoSide__ksgeo_side__spaces - - + + - + KSGeoSide__ksgeo_side__surfaces - -surfaces + +surfaces - + KSGeoSide__ksgeo_side->KSGeoSide__ksgeo_side__surfaces - - + + - + KSCommandMemberAddElectricFieldData__add_electric_field - -add_electric_field + +add_electric_field - + KSGeoSide__ksgeo_side->KSCommandMemberAddElectricFieldData__add_electric_field - - + + - + KSCommandMemberAddMagneticFieldData__add_magnetic_field - -add_magnetic_field + +add_magnetic_field - + KSGeoSide__ksgeo_side->KSCommandMemberAddMagneticFieldData__add_magnetic_field - - + + - + KSCommandMemberAddStepModifierData__add_step_modifier - -add_step_modifier + +add_step_modifier - + KSGeoSide__ksgeo_side->KSCommandMemberAddStepModifierData__add_step_modifier - - + + - + KSCommandMemberAddStepOutputData__add_step_output - -add_step_output + +add_step_output - + KSGeoSide__ksgeo_side->KSCommandMemberAddStepOutputData__add_step_output - - + + - + KSCommandMemberAddTerminatorData__add_terminator - -add_terminator + +add_terminator - + KSGeoSide__ksgeo_side->KSCommandMemberAddTerminatorData__add_terminator - - + + - + KSCommandMemberAddTrackOutputData__add_track_output - -add_track_output + +add_track_output - + KSGeoSide__ksgeo_side->KSCommandMemberAddTrackOutputData__add_track_output - - + + - + KSCommandMemberClearSurfaceInteractionData__clear_surface_interaction - -clear_surface_interaction + +clear_surface_interaction - + KSGeoSide__ksgeo_side->KSCommandMemberClearSurfaceInteractionData__clear_surface_interaction - - + + - + KSCommandMemberData__command - -command + +command - + KSGeoSide__ksgeo_side->KSCommandMemberData__command - - + + - + KSCommandMemberRemoveElectricFieldData__remove_magnetic_field - -remove_magnetic_field + +remove_magnetic_field - + KSGeoSide__ksgeo_side->KSCommandMemberRemoveElectricFieldData__remove_magnetic_field - - + + - + KSCommandMemberRemoveStepModifierData__remove_step_modifier - -remove_step_modifier + +remove_step_modifier - + KSGeoSide__ksgeo_side->KSCommandMemberRemoveStepModifierData__remove_step_modifier - - + + - + KSCommandMemberRemoveStepOutputData__remove_step_output - -remove_step_output + +remove_step_output - + KSGeoSide__ksgeo_side->KSCommandMemberRemoveStepOutputData__remove_step_output - - + + - + KSCommandMemberRemoveTerminatorData__remove_terminator - -remove_terminator + +remove_terminator - + KSGeoSide__ksgeo_side->KSCommandMemberRemoveTerminatorData__remove_terminator - - + + - + KSCommandMemberRemoveTrackOutputData__remove_track_output - -remove_track_output + +remove_track_output - + KSGeoSide__ksgeo_side->KSCommandMemberRemoveTrackOutputData__remove_track_output - - + + - + KSCommandMemberSetSurfaceInteractionData__set_surface_interaction - -set_surface_interaction + +set_surface_interaction - + KSGeoSide__ksgeo_side->KSCommandMemberSetSurfaceInteractionData__set_surface_interaction - - + + - + KSGeoSpace__ksgeo_space->KSCommandMemberAddElectricFieldData__add_electric_field - - + + - + KSGeoSpace__ksgeo_space->KSCommandMemberAddMagneticFieldData__add_magnetic_field - - + + - + KSGeoSpace__ksgeo_space->KSCommandMemberAddStepModifierData__add_step_modifier - - + + - + KSGeoSpace__ksgeo_space->KSCommandMemberAddStepOutputData__add_step_output - - + + - + KSGeoSpace__ksgeo_space->KSCommandMemberAddTerminatorData__add_terminator - - + + - + KSGeoSpace__ksgeo_space->KSCommandMemberAddTrackOutputData__add_track_output - - + + - + KSGeoSpace__ksgeo_space->KSCommandMemberData__command - - + + - + KSGeoSpace__ksgeo_space->KSCommandMemberRemoveStepModifierData__remove_step_modifier - - + + - + KSGeoSpace__ksgeo_space->KSCommandMemberRemoveStepOutputData__remove_step_output - - + + - + KSGeoSpace__ksgeo_space->KSCommandMemberRemoveTerminatorData__remove_terminator - - + + - + KSGeoSpace__ksgeo_space->KSCommandMemberRemoveTrackOutputData__remove_track_output - - + + - + KSGeoSpace__ksgeo_space__name - -name + +name - + KSGeoSpace__ksgeo_space->KSGeoSpace__ksgeo_space__name - - + + - + KSGeoSpace__ksgeo_space__spaces - -spaces + +spaces - + KSGeoSpace__ksgeo_space->KSGeoSpace__ksgeo_space__spaces - - + + - + KSCommandMemberAddControlData__add_control - -add_control + +add_control - + KSGeoSpace__ksgeo_space->KSCommandMemberAddControlData__add_control - - + + - + KSCommandMemberAddSpaceInteractionData__add_space_interaction - -add_space_interaction + +add_space_interaction - + KSGeoSpace__ksgeo_space->KSCommandMemberAddSpaceInteractionData__add_space_interaction - - + + - + KSCommandMemberAddTermData__add_term - -add_term + +add_term - + KSGeoSpace__ksgeo_space->KSCommandMemberAddTermData__add_term - - + + - + KSCommandMemberClearDensityData__clear_density - -clear_density + +clear_density - + KSGeoSpace__ksgeo_space->KSCommandMemberClearDensityData__clear_density - - + + - + KSCommandMemberClearStepDataData__clear_step_data - -clear_step_data + +clear_step_data - + KSGeoSpace__ksgeo_space->KSCommandMemberClearStepDataData__clear_step_data - - + + - + KSCommandMemberClearStepPointData__clear_step_point - -clear_step_point + +clear_step_point - + KSGeoSpace__ksgeo_space->KSCommandMemberClearStepPointData__clear_step_point - - + + - + KSCommandMemberClearTrackDataData__clear_track_data - -clear_track_data + +clear_track_data - + KSGeoSpace__ksgeo_space->KSCommandMemberClearTrackDataData__clear_track_data - - + + - + KSCommandMemberClearTrackPointData__clear_track_point - -clear_track_point + +clear_track_point - + KSGeoSpace__ksgeo_space->KSCommandMemberClearTrackPointData__clear_track_point - - + + - + KSCommandMemberClearTrajectoryData__clear_trajectory - -clear_trajectory + +clear_trajectory - + KSGeoSpace__ksgeo_space->KSCommandMemberClearTrajectoryData__clear_trajectory - - + + - + KSGeoSide__geo_side - -geo_side + +geo_side - + KSGeoSpace__ksgeo_space->KSGeoSide__geo_side - - + + - + KSGeoSpace__geo_space - -geo_space + +geo_space - + KSGeoSpace__ksgeo_space->KSGeoSpace__geo_space - - + + - + KSGeoSurface__geo_surface - -geo_surface + +geo_surface - + KSGeoSpace__ksgeo_space->KSGeoSurface__geo_surface - - + + - + KSCommandMemberRemoveControlData__remove_control - -remove_control + +remove_control - + KSGeoSpace__ksgeo_space->KSCommandMemberRemoveControlData__remove_control - - + + - + KSCommandMemberRemoveElectricFieldData__remove_electric_field - -remove_electric_field + +remove_electric_field - + KSGeoSpace__ksgeo_space->KSCommandMemberRemoveElectricFieldData__remove_electric_field - - + + - + KSCommandMemberRemoveMagneticFieldData__remove_magnetic_field - -remove_magnetic_field + +remove_magnetic_field - + KSGeoSpace__ksgeo_space->KSCommandMemberRemoveMagneticFieldData__remove_magnetic_field - - + + - + KSCommandMemberRemoveSpaceInteractionData__remove_space_interaction - -remove_space_interaction + +remove_space_interaction - + KSGeoSpace__ksgeo_space->KSCommandMemberRemoveSpaceInteractionData__remove_space_interaction - - + + - + KSCommandMemberRemoveTermData__remove_term - -remove_term + +remove_term - + KSGeoSpace__ksgeo_space->KSCommandMemberRemoveTermData__remove_term - - + + - + KSCommandMemberSetDensityData__set_density - -set_density + +set_density - + KSGeoSpace__ksgeo_space->KSCommandMemberSetDensityData__set_density - - + + - + KSCommandMemberSetStepDataData__set_step_data - -set_step_data + +set_step_data - + KSGeoSpace__ksgeo_space->KSCommandMemberSetStepDataData__set_step_data - - + + - + KSCommandMemberSetStepPointData__set_step_point - -set_step_point + +set_step_point - + KSGeoSpace__ksgeo_space->KSCommandMemberSetStepPointData__set_step_point - - + + - + KSCommandMemberSetTrackDataData__set_track_data - -set_track_data + +set_track_data - + KSGeoSpace__ksgeo_space->KSCommandMemberSetTrackDataData__set_track_data - - + + - + KSCommandMemberSetTrackPointData__set_track_point - -set_track_point + +set_track_point - + KSGeoSpace__ksgeo_space->KSCommandMemberSetTrackPointData__set_track_point - - + + - + KSCommandMemberSetTrajectoryData__set_trajectory - -set_trajectory + +set_trajectory - + KSGeoSpace__ksgeo_space->KSCommandMemberSetTrajectoryData__set_trajectory - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberAddElectricFieldData__add_electric_field - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberAddMagneticFieldData__add_magnetic_field - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberAddStepModifierData__add_step_modifier - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberAddStepOutputData__add_step_output - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberAddTerminatorData__add_terminator - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberAddTrackOutputData__add_track_output - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberClearSurfaceInteractionData__clear_surface_interaction - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberData__command - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberRemoveElectricFieldData__remove_magnetic_field - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberRemoveStepModifierData__remove_step_modifier - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberRemoveStepOutputData__remove_step_output - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberRemoveTerminatorData__remove_terminator - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberRemoveTrackOutputData__remove_track_output - - + + - + KSGeoSurface__ksgeo_surface->KSCommandMemberSetSurfaceInteractionData__set_surface_interaction - - + + - + KSGeoSurface__ksgeo_surface__name - -name + +name - + KSGeoSurface__ksgeo_surface->KSGeoSurface__ksgeo_surface__name - - + + - + KSGeoSurface__ksgeo_surface__spaces - -spaces + +spaces - + KSGeoSurface__ksgeo_surface->KSGeoSurface__ksgeo_surface__spaces - - + + - + KSGeoSurface__ksgeo_surface__surfaces - -surfaces + +surfaces - + KSGeoSurface__ksgeo_surface->KSGeoSurface__ksgeo_surface__surfaces - - + + - + KSIntCalculatorConstant__ksint_calculator_constant__cross_section - -cross_section + +cross_section - + KSIntCalculatorConstant__ksint_calculator_constant->KSIntCalculatorConstant__ksint_calculator_constant__cross_section - - + + - + KSIntCalculatorConstant__ksint_calculator_constant__name - -name + +name - + KSIntCalculatorConstant__ksint_calculator_constant->KSIntCalculatorConstant__ksint_calculator_constant__name - - + + - + KSIntCalculatorIon__ksint_calculator_ion__gas - -gas + +gas - + KSIntCalculatorIon__ksint_calculator_ion->KSIntCalculatorIon__ksint_calculator_ion__gas - - + + - + KSIntCalculatorIon__ksint_calculator_ion__name - -name + +name - + KSIntCalculatorIon__ksint_calculator_ion->KSIntCalculatorIon__ksint_calculator_ion__name - - + + + + + +KSIntCalculatorMott__ksint_calculator_mott__name + +name + + + +KSIntCalculatorMott__ksint_calculator_mott->KSIntCalculatorMott__ksint_calculator_mott__name + + + + + +KSIntCalculatorMott__ksint_calculator_mott__nucleus + +nucleus + + + +KSIntCalculatorMott__ksint_calculator_mott->KSIntCalculatorMott__ksint_calculator_mott__nucleus + + + + + +KSIntCalculatorMott__ksint_calculator_mott__theta_max + +theta_max + + + +KSIntCalculatorMott__ksint_calculator_mott->KSIntCalculatorMott__ksint_calculator_mott__theta_max + + + + + +KSIntCalculatorMott__ksint_calculator_mott__theta_min + +theta_min + + + +KSIntCalculatorMott__ksint_calculator_mott->KSIntCalculatorMott__ksint_calculator_mott__theta_min + + - + KSIntDecay__ksint_decay__calculator - -calculator + +calculator - + KSIntDecay__ksint_decay->KSIntDecay__ksint_decay__calculator - - + + - + KSIntDecay__ksint_decay__calculators - -calculators + +calculators - + KSIntDecay__ksint_decay->KSIntDecay__ksint_decay__calculators - - + + - + KSIntDecay__ksint_decay__enhancement - -enhancement + +enhancement - + KSIntDecay__ksint_decay->KSIntDecay__ksint_decay__enhancement - - + + - + KSIntDecay__ksint_decay__name - -name + +name - + KSIntDecay__ksint_decay->KSIntDecay__ksint_decay__name - - + + - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate - -decay_death_const_rate + +decay_death_const_rate - + KSIntDecay__ksint_decay->KSIntDecayCalculatorDeathConstRate__decay_death_const_rate - - + + - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr - -decay_ferenc_bbr + +decay_ferenc_bbr - + KSIntDecay__ksint_decay->KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr - - + + - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation - -decay_ferenc_ionisation + +decay_ferenc_ionisation - + KSIntDecay__ksint_decay->KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation - - + + - + KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous - -decay_ferenc_spontaneous + +decay_ferenc_spontaneous - + KSIntDecay__ksint_decay->KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation - -decay_glukhov_deexcitation + +decay_glukhov_deexcitation - + KSIntDecay__ksint_decay->KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation - - + + - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation - -decay_glukhov_excitation + +decay_glukhov_excitation - + KSIntDecay__ksint_decay->KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation - - + + - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation - -decay_glukhov_ionisation + +decay_glukhov_ionisation - + KSIntDecay__ksint_decay->KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous - -decay_glukhov_spontaneous + +decay_glukhov_spontaneous - + KSIntDecay__ksint_decay->KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous - - + + - + KSGenGeneratorComposite__decay_product_generator - -decay_product_generator + +decay_product_generator - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate__life_time - -life_time + +life_time - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate->KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate__life_time - - + + - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate->KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate__max_pid - - + + - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate->KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate__min_pid - - + + - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate__name - -name + +name - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate->KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate__name - - + + - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate->KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate__target_pid - - + + - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition->KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition__max_pid - - + + - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition->KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition__min_pid - - + + - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition__name - -name + +name - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition->KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition__name - - + + - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition->KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition__target_pid - - + + - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition__temperature - -temperature + +temperature - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition->KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition__temperature - - + + - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation->KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation__max_pid - - + + - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation->KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation__min_pid - - + + - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation__name - -name + +name - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation->KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation__name - - + + - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation->KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation__target_pid - - + + - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation__temperature - -temperature + +temperature - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation->KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation__temperature - - + + - + KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous->KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous__max_pid - - + + - + KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous->KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous__min_pid - - + + - + KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous__name - -name + +name - + KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous->KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous__name - - + + - + KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous->KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous__target_pid - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation->KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation__max_pid - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation->KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation__min_pid - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation__name - -name + +name - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation->KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation__name - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation->KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation__target_pid - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation__temperature - -temperature + +temperature - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation->KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation__temperature - - + + - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation->KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation__max_pid - - + + - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation->KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation__min_pid - - + + - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation__name - -name + +name - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation->KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation__name - - + + - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation->KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation__target_pid - - + + - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation__temperature - -temperature + +temperature - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation->KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation__temperature - - + + - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation->KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation__max_pid - - + + - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation->KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation__min_pid - - + + - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation__name - -name + +name - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation->KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation__name - - + + - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation->KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation__target_pid - - + + - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation__temperature - -temperature + +temperature - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation->KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation__temperature - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous->KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous__max_pid - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous->KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous__min_pid - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous__name - -name + +name - + KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous->KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous__name - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous->KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous__target_pid - - + + - + KSIntDensityConstant__ksint_density_constant__density - -density + +density - + KSIntDensityConstant__ksint_density_constant->KSIntDensityConstant__ksint_density_constant__density - - + + - + KSIntDensityConstant__ksint_density_constant__name - -name + +name - + KSIntDensityConstant__ksint_density_constant->KSIntDensityConstant__ksint_density_constant__name - - + + - + KSIntDensityConstant__ksint_density_constant__pressure - -pressure + +pressure - + KSIntDensityConstant__ksint_density_constant->KSIntDensityConstant__ksint_density_constant__pressure - - + + - + KSIntDensityConstant__ksint_density_constant__pressure_mbar - -pressure_mbar + +pressure_mbar - + KSIntDensityConstant__ksint_density_constant->KSIntDensityConstant__ksint_density_constant__pressure_mbar - - + + - + KSIntDensityConstant__ksint_density_constant__temperature - -temperature + +temperature - + KSIntDensityConstant__ksint_density_constant->KSIntDensityConstant__ksint_density_constant__temperature - - + + - + KSIntScattering__ksint_scattering__calculator - -calculator + +calculator - + KSIntScattering__ksint_scattering->KSIntScattering__ksint_scattering__calculator - - + + - + KSIntScattering__ksint_scattering__calculators - -calculators + +calculators - + KSIntScattering__ksint_scattering->KSIntScattering__ksint_scattering__calculators - - + + - + KSIntScattering__ksint_scattering__density - -density + +density - + KSIntScattering__ksint_scattering->KSIntScattering__ksint_scattering__density - - + + - + KSIntScattering__ksint_scattering__enhancement - -enhancement + +enhancement - + KSIntScattering__ksint_scattering->KSIntScattering__ksint_scattering__enhancement - - + + - + KSIntScattering__ksint_scattering__name - -name + +name - + KSIntScattering__ksint_scattering->KSIntScattering__ksint_scattering__name - - + + - + KSIntScattering__ksint_scattering__split - -split + +split - + KSIntScattering__ksint_scattering->KSIntScattering__ksint_scattering__split - - + + - + KSIntCalculatorArgonSet__calculator_argon - -calculator_argon + +calculator_argon - + KSIntScattering__ksint_scattering->KSIntCalculatorArgonSet__calculator_argon - - + + - + KSIntCalculatorConstant__calculator_constant - -calculator_constant + +calculator_constant - + KSIntScattering__ksint_scattering->KSIntCalculatorConstant__calculator_constant - - + + - + KSIntCalculatorHydrogenSet__calculator_hydrogen - -calculator_hydrogen + +calculator_hydrogen - + KSIntScattering__ksint_scattering->KSIntCalculatorHydrogenSet__calculator_hydrogen - - + + - + KSIntCalculatorIon__calculator_ion - -calculator_ion + +calculator_ion - + KSIntScattering__ksint_scattering->KSIntCalculatorIon__calculator_ion - - + + - + KSIntCalculatorKESSSet__calculator_kess - -calculator_kess + +calculator_kess - + KSIntScattering__ksint_scattering->KSIntCalculatorKESSSet__calculator_kess - - + + + + + +KSIntCalculatorMott__calculator_mott + +calculator_mott + + + +KSIntScattering__ksint_scattering->KSIntCalculatorMott__calculator_mott + + - + KSIntDensityConstant__density_constant - -density_constant + +density_constant - + KSIntScattering__ksint_scattering->KSIntDensityConstant__density_constant - - + + - + KSIntSpinFlip__ksint_spin_flip__name - -name + +name - + KSIntSpinFlip__ksint_spin_flip->KSIntSpinFlip__ksint_spin_flip__name - - + + - + KSIntSpinFlipPulse__ksint_spin_flip_pulse__name - -name + +name - + KSIntSpinFlipPulse__ksint_spin_flip_pulse->KSIntSpinFlipPulse__ksint_spin_flip_pulse__name - - + + - + KSIntSpinFlipPulse__ksint_spin_flip_pulse__time - -time + +time - + KSIntSpinFlipPulse__ksint_spin_flip_pulse->KSIntSpinFlipPulse__ksint_spin_flip_pulse__time - - + + - + KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse__angle - -angle + +angle - + KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse->KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse__angle - - + + - + KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse__is_adiabatic - -is_adiabatic + +is_adiabatic - + KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse->KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse__is_adiabatic - - + + - + KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse__name - -name + +name - + KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse->KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse__name - - + + - + KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse__time - -time + +time - + KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse->KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse__time - - + + - + KSIntSurfaceUCN__ksint_surface_UCN__alpha - -alpha + +alpha - + KSIntSurfaceUCN__ksint_surface_UCN->KSIntSurfaceUCN__ksint_surface_UCN__alpha - - + + - + KSIntSurfaceUCN__ksint_surface_UCN__correlation_length - -correlation_length + +correlation_length - + KSIntSurfaceUCN__ksint_surface_UCN->KSIntSurfaceUCN__ksint_surface_UCN__correlation_length - - + + - + KSIntSurfaceUCN__ksint_surface_UCN__eta - -eta + +eta - + KSIntSurfaceUCN__ksint_surface_UCN->KSIntSurfaceUCN__ksint_surface_UCN__eta - - + + - + KSIntSurfaceUCN__ksint_surface_UCN__name - -name + +name - + KSIntSurfaceUCN__ksint_surface_UCN->KSIntSurfaceUCN__ksint_surface_UCN__name - - + + - + KSIntSurfaceUCN__ksint_surface_UCN__real_optical_potential - -real_optical_potential + +real_optical_potential - + KSIntSurfaceUCN__ksint_surface_UCN->KSIntSurfaceUCN__ksint_surface_UCN__real_optical_potential - - + + - + KSIntSurfaceDiffuse__ksint_surface_diffuse__name - -name + +name - + KSIntSurfaceDiffuse__ksint_surface_diffuse->KSIntSurfaceDiffuse__ksint_surface_diffuse__name - - + + - + KSIntSurfaceDiffuse__ksint_surface_diffuse__probability - -probability + +probability - + KSIntSurfaceDiffuse__ksint_surface_diffuse->KSIntSurfaceDiffuse__ksint_surface_diffuse__probability - - + + - + KSIntSurfaceDiffuse__ksint_surface_diffuse__reflection_loss - -reflection_loss + +reflection_loss - + KSIntSurfaceDiffuse__ksint_surface_diffuse->KSIntSurfaceDiffuse__ksint_surface_diffuse__reflection_loss - - + + - + KSIntSurfaceDiffuse__ksint_surface_diffuse__reflection_loss_fraction - -reflection_loss_fraction + +reflection_loss_fraction - + KSIntSurfaceDiffuse__ksint_surface_diffuse->KSIntSurfaceDiffuse__ksint_surface_diffuse__reflection_loss_fraction - - + + - + KSIntSurfaceDiffuse__ksint_surface_diffuse__transmission_loss - -transmission_loss + +transmission_loss - + KSIntSurfaceDiffuse__ksint_surface_diffuse->KSIntSurfaceDiffuse__ksint_surface_diffuse__transmission_loss - - + + - + KSIntSurfaceDiffuse__ksint_surface_diffuse__transmission_loss_fraction - -transmission_loss_fraction + +transmission_loss_fraction - + KSIntSurfaceDiffuse__ksint_surface_diffuse->KSIntSurfaceDiffuse__ksint_surface_diffuse__transmission_loss_fraction - - + + - + KSIntSurfaceMultiplication__ksint_surface_multiplication__energy_loss_fraction - -energy_loss_fraction + +energy_loss_fraction - + KSIntSurfaceMultiplication__ksint_surface_multiplication->KSIntSurfaceMultiplication__ksint_surface_multiplication__energy_loss_fraction - - + + - + KSIntSurfaceMultiplication__ksint_surface_multiplication__name - -name + +name - + KSIntSurfaceMultiplication__ksint_surface_multiplication->KSIntSurfaceMultiplication__ksint_surface_multiplication__name - - + + - + KSIntSurfaceMultiplication__ksint_surface_multiplication__required_energy_per_particle_ev - -required_energy_per_particle_ev + +required_energy_per_particle_ev - + KSIntSurfaceMultiplication__ksint_surface_multiplication->KSIntSurfaceMultiplication__ksint_surface_multiplication__required_energy_per_particle_ev - - + + - + KSIntSurfaceMultiplication__ksint_surface_multiplication__side - -side + +side - + KSIntSurfaceMultiplication__ksint_surface_multiplication->KSIntSurfaceMultiplication__ksint_surface_multiplication__side - - + + + + + +KSIntSurfaceScattering__ksint_surface_scattering__name + +name + + + +KSIntSurfaceScattering__ksint_surface_scattering->KSIntSurfaceScattering__ksint_surface_scattering__name + + + + + +KSIntSurfaceScattering__ksint_surface_scattering__scat_loss_fraction + +scat_loss_fraction + + + +KSIntSurfaceScattering__ksint_surface_scattering->KSIntSurfaceScattering__ksint_surface_scattering__scat_loss_fraction + + + + + +KSIntSurfaceScattering__ksint_surface_scattering__scat_probability + +scat_probability + + + +KSIntSurfaceScattering__ksint_surface_scattering->KSIntSurfaceScattering__ksint_surface_scattering__scat_probability + + + + + +KSIntSurfaceScattering__ksint_surface_scattering__sec_electron_mean_energy + +sec_electron_mean_energy + + + +KSIntSurfaceScattering__ksint_surface_scattering->KSIntSurfaceScattering__ksint_surface_scattering__sec_electron_mean_energy + + + + + +KSIntSurfaceScattering__ksint_surface_scattering__sec_electron_probability + +sec_electron_probability + + + +KSIntSurfaceScattering__ksint_surface_scattering->KSIntSurfaceScattering__ksint_surface_scattering__sec_electron_probability + + + + + +KSIntSurfaceScattering__ksint_surface_scattering__side + +side + + + +KSIntSurfaceScattering__ksint_surface_scattering->KSIntSurfaceScattering__ksint_surface_scattering__side + + - + KSIntSurfaceSpecular__ksint_surface_specular__name - -name + +name - + KSIntSurfaceSpecular__ksint_surface_specular->KSIntSurfaceSpecular__ksint_surface_specular__name - - + + - + KSIntSurfaceSpecular__ksint_surface_specular__probability - -probability + +probability - + KSIntSurfaceSpecular__ksint_surface_specular->KSIntSurfaceSpecular__ksint_surface_specular__probability - - + + - + KSIntSurfaceSpecular__ksint_surface_specular__reflection_loss - -reflection_loss + +reflection_loss - + KSIntSurfaceSpecular__ksint_surface_specular->KSIntSurfaceSpecular__ksint_surface_specular__reflection_loss - - + + - + KSIntSurfaceSpecular__ksint_surface_specular__reflection_loss_fraction - -reflection_loss_fraction + +reflection_loss_fraction - + KSIntSurfaceSpecular__ksint_surface_specular->KSIntSurfaceSpecular__ksint_surface_specular__reflection_loss_fraction - - + + - + KSIntSurfaceSpecular__ksint_surface_specular__transmission_loss - -transmission_loss + +transmission_loss - + KSIntSurfaceSpecular__ksint_surface_specular->KSIntSurfaceSpecular__ksint_surface_specular__transmission_loss - - + + - + KSIntSurfaceSpecular__ksint_surface_specular__transmission_loss_fraction - -transmission_loss_fraction + +transmission_loss_fraction - + KSIntSurfaceSpecular__ksint_surface_specular->KSIntSurfaceSpecular__ksint_surface_specular__transmission_loss_fraction - - + + - + KSIntSurfaceSpinFlip__ksint_surface_spin_flip__name - -name + +name - + KSIntSurfaceSpinFlip__ksint_surface_spin_flip->KSIntSurfaceSpinFlip__ksint_surface_spin_flip__name - - + + - + KSIntSurfaceSpinFlip__ksint_surface_spin_flip__probability - -probability + +probability - + KSIntSurfaceSpinFlip__ksint_surface_spin_flip->KSIntSurfaceSpinFlip__ksint_surface_spin_flip__probability - - + + - + KSModDynamicEnhancement__ksmod_dynamic_enhancement__dynamic - -dynamic + +dynamic - + KSModDynamicEnhancement__ksmod_dynamic_enhancement->KSModDynamicEnhancement__ksmod_dynamic_enhancement__dynamic - - + + - + KSModDynamicEnhancement__ksmod_dynamic_enhancement__name - -name + +name - + KSModDynamicEnhancement__ksmod_dynamic_enhancement->KSModDynamicEnhancement__ksmod_dynamic_enhancement__name - - + + - + KSModDynamicEnhancement__ksmod_dynamic_enhancement__reference_energy - -reference_energy + +reference_energy - + KSModDynamicEnhancement__ksmod_dynamic_enhancement->KSModDynamicEnhancement__ksmod_dynamic_enhancement__reference_energy - - + + - + KSModDynamicEnhancement__ksmod_dynamic_enhancement__scattering - -scattering + +scattering - + KSModDynamicEnhancement__ksmod_dynamic_enhancement->KSModDynamicEnhancement__ksmod_dynamic_enhancement__scattering - - + + - + KSModDynamicEnhancement__ksmod_dynamic_enhancement__static_enhancement - -static_enhancement + +static_enhancement - + KSModDynamicEnhancement__ksmod_dynamic_enhancement->KSModDynamicEnhancement__ksmod_dynamic_enhancement__static_enhancement - - + + - + KSModDynamicEnhancement__ksmod_dynamic_enhancement__synchrotron - -synchrotron + +synchrotron - + KSModDynamicEnhancement__ksmod_dynamic_enhancement->KSModDynamicEnhancement__ksmod_dynamic_enhancement__synchrotron - - + + - + KSModEventReport__ksmod_event_report__name - -name + +name - + KSModEventReport__ksmod_event_report->KSModEventReport__ksmod_event_report__name - - + + - + KSModSplitOnTurn__ksmod_split_on_turn__direction - -direction + +direction - + KSModSplitOnTurn__ksmod_split_on_turn->KSModSplitOnTurn__ksmod_split_on_turn__direction - - + + - + KSModSplitOnTurn__ksmod_split_on_turn__name - -name + +name - + KSModSplitOnTurn__ksmod_split_on_turn->KSModSplitOnTurn__ksmod_split_on_turn__name - - + + - + KSNavMeshedSpace__ksnav_meshed_space__absolute_tolerance - -absolute_tolerance + +absolute_tolerance - + KSNavMeshedSpace__ksnav_meshed_space->KSNavMeshedSpace__ksnav_meshed_space__absolute_tolerance - - + + - + KSNavMeshedSpace__ksnav_meshed_space__enter_split - -enter_split + +enter_split - + KSNavMeshedSpace__ksnav_meshed_space->KSNavMeshedSpace__ksnav_meshed_space__enter_split - - + + - + KSNavMeshedSpace__ksnav_meshed_space__exit_split - -exit_split + +exit_split - + KSNavMeshedSpace__ksnav_meshed_space->KSNavMeshedSpace__ksnav_meshed_space__exit_split - - + + - + KSNavMeshedSpace__ksnav_meshed_space__fail_check - -fail_check + +fail_check - + KSNavMeshedSpace__ksnav_meshed_space->KSNavMeshedSpace__ksnav_meshed_space__fail_check - - + + - + KSNavMeshedSpace__ksnav_meshed_space__max_octree_depth - -max_octree_depth + +max_octree_depth - + KSNavMeshedSpace__ksnav_meshed_space->KSNavMeshedSpace__ksnav_meshed_space__max_octree_depth - - + + - + KSNavMeshedSpace__ksnav_meshed_space__n_allowed_elements - -n_allowed_elements + +n_allowed_elements - + KSNavMeshedSpace__ksnav_meshed_space->KSNavMeshedSpace__ksnav_meshed_space__n_allowed_elements - - + + - + KSNavMeshedSpace__ksnav_meshed_space__name - -name + +name - + KSNavMeshedSpace__ksnav_meshed_space->KSNavMeshedSpace__ksnav_meshed_space__name - - + + - + KSNavMeshedSpace__ksnav_meshed_space__octree_file - -octree_file + +octree_file - + KSNavMeshedSpace__ksnav_meshed_space->KSNavMeshedSpace__ksnav_meshed_space__octree_file - - + + - + KSNavMeshedSpace__ksnav_meshed_space__path - -path + +path - + KSNavMeshedSpace__ksnav_meshed_space->KSNavMeshedSpace__ksnav_meshed_space__path - - + + - + KSNavMeshedSpace__ksnav_meshed_space__relative_tolerance - -relative_tolerance + +relative_tolerance - + KSNavMeshedSpace__ksnav_meshed_space->KSNavMeshedSpace__ksnav_meshed_space__relative_tolerance - - + + - + KSNavMeshedSpace__ksnav_meshed_space__root_space - -root_space + +root_space - + KSNavMeshedSpace__ksnav_meshed_space->KSNavMeshedSpace__ksnav_meshed_space__root_space - - + + - + KSNavMeshedSpace__ksnav_meshed_space__spatial_resolution - -spatial_resolution + +spatial_resolution - + KSNavMeshedSpace__ksnav_meshed_space->KSNavMeshedSpace__ksnav_meshed_space__spatial_resolution - - + + - + KSNavSpace__ksnav_space__enter_split - -enter_split + +enter_split - + KSNavSpace__ksnav_space->KSNavSpace__ksnav_space__enter_split - - + + - + KSNavSpace__ksnav_space__exit_split - -exit_split + +exit_split - + KSNavSpace__ksnav_space->KSNavSpace__ksnav_space__exit_split - - + + - + KSNavSpace__ksnav_space__fail_check - -fail_check + +fail_check - + KSNavSpace__ksnav_space->KSNavSpace__ksnav_space__fail_check - - + + - + KSNavSpace__ksnav_space__name - -name + +name - + KSNavSpace__ksnav_space->KSNavSpace__ksnav_space__name - - + + - + KSNavSpace__ksnav_space__tolerance - -tolerance + +tolerance - + KSNavSpace__ksnav_space->KSNavSpace__ksnav_space__tolerance - - + + - + KSNavSurface__ksnav_surface__name - -name + +name - + KSNavSurface__ksnav_surface->KSNavSurface__ksnav_surface__name - - + + - + KSNavSurface__ksnav_surface__reflection_split - -reflection_split + +reflection_split - + KSNavSurface__ksnav_surface->KSNavSurface__ksnav_surface__reflection_split - - + + - + KSNavSurface__ksnav_surface__transmission_split - -transmission_split + +transmission_split - + KSNavSurface__ksnav_surface->KSNavSurface__ksnav_surface__transmission_split - - + + - + KSTermDeath__ksterm_death__name - -name + +name - + KSTermDeath__ksterm_death->KSTermDeath__ksterm_death__name - - + + - + KSTermMagnetron__ksterm_magnetron__max_phi - -max_phi + +max_phi - + KSTermMagnetron__ksterm_magnetron->KSTermMagnetron__ksterm_magnetron__max_phi - - + + - + KSTermMagnetron__ksterm_magnetron__name - -name + +name - + KSTermMagnetron__ksterm_magnetron->KSTermMagnetron__ksterm_magnetron__name - - + + - + KSTermMaxEnergy__ksterm_max_energy__energy - -energy + +energy - + KSTermMaxEnergy__ksterm_max_energy->KSTermMaxEnergy__ksterm_max_energy__energy - - + + - + KSTermMaxEnergy__ksterm_max_energy__name - -name + +name - + KSTermMaxEnergy__ksterm_max_energy->KSTermMaxEnergy__ksterm_max_energy__name - - + + - + KSTermMaxLength__ksterm_max_length__length - -length + +length - + KSTermMaxLength__ksterm_max_length->KSTermMaxLength__ksterm_max_length__length - - + + - + KSTermMaxLength__ksterm_max_length__name - -name + +name - + KSTermMaxLength__ksterm_max_length->KSTermMaxLength__ksterm_max_length__name - - + + - + KSTermMaxLongEnergy__ksterm_max_long_energy__long_energy - -long_energy + +long_energy - + KSTermMaxLongEnergy__ksterm_max_long_energy->KSTermMaxLongEnergy__ksterm_max_long_energy__long_energy - - + + - + KSTermMaxLongEnergy__ksterm_max_long_energy__name - -name + +name - + KSTermMaxLongEnergy__ksterm_max_long_energy->KSTermMaxLongEnergy__ksterm_max_long_energy__name - - + + - + KSTermMaxR__ksterm_max_r__name - -name + +name - + KSTermMaxR__ksterm_max_r->KSTermMaxR__ksterm_max_r__name - - + + - + KSTermMaxR__ksterm_max_r__r - -r + +r - + KSTermMaxR__ksterm_max_r->KSTermMaxR__ksterm_max_r__r - - + + - + KSTermMaxStepTime__ksterm_max_step_time__name - -name + +name - + KSTermMaxStepTime__ksterm_max_step_time->KSTermMaxStepTime__ksterm_max_step_time__name - - + + - + KSTermMaxStepTime__ksterm_max_step_time__time - -time + +time - + KSTermMaxStepTime__ksterm_max_step_time->KSTermMaxStepTime__ksterm_max_step_time__time - - + + - + KSTermMaxSteps__ksterm_max_steps__name - -name + +name - + KSTermMaxSteps__ksterm_max_steps->KSTermMaxSteps__ksterm_max_steps__name - - + + - + KSTermMaxSteps__ksterm_max_steps__steps - -steps + +steps - + KSTermMaxSteps__ksterm_max_steps->KSTermMaxSteps__ksterm_max_steps__steps - - + + - + KSTermMaxTime__ksterm_max_time__name - -name + +name - + KSTermMaxTime__ksterm_max_time->KSTermMaxTime__ksterm_max_time__name - - + + - + KSTermMaxTime__ksterm_max_time__time - -time + +time - + KSTermMaxTime__ksterm_max_time->KSTermMaxTime__ksterm_max_time__time - - + + - + KSTermMaxTotalTime__ksterm_max_total_time__name - -name + +name - + KSTermMaxTotalTime__ksterm_max_total_time->KSTermMaxTotalTime__ksterm_max_total_time__name - - + + - + KSTermMaxTotalTime__ksterm_max_total_time__time - -time + +time - + KSTermMaxTotalTime__ksterm_max_total_time->KSTermMaxTotalTime__ksterm_max_total_time__time - - + + - + KSTermMaxZ__ksterm_max_z__name - -name + +name - + KSTermMaxZ__ksterm_max_z->KSTermMaxZ__ksterm_max_z__name - - + + - + KSTermMaxZ__ksterm_max_z__z - -z + +z - + KSTermMaxZ__ksterm_max_z->KSTermMaxZ__ksterm_max_z__z - - + + - + KSTermMinDistance__ksterm_min_distance__min_distance - -min_distance + +min_distance - + KSTermMinDistance__ksterm_min_distance->KSTermMinDistance__ksterm_min_distance__min_distance - - + + - + KSTermMinDistance__ksterm_min_distance__name - -name + +name - + KSTermMinDistance__ksterm_min_distance->KSTermMinDistance__ksterm_min_distance__name - - + + - + KSTermMinDistance__ksterm_min_distance__surfaces - -surfaces + +surfaces - + KSTermMinDistance__ksterm_min_distance->KSTermMinDistance__ksterm_min_distance__surfaces - - + + - + KSTermMinEnergy__ksterm_min_energy__energy - -energy + +energy - + KSTermMinEnergy__ksterm_min_energy->KSTermMinEnergy__ksterm_min_energy__energy - - + + - + KSTermMinEnergy__ksterm_min_energy__name - -name + +name - + KSTermMinEnergy__ksterm_min_energy->KSTermMinEnergy__ksterm_min_energy__name - - + + - + KSTermMinLongEnergy__ksterm_min_long_energy__long_energy - -long_energy + +long_energy - + KSTermMinLongEnergy__ksterm_min_long_energy->KSTermMinLongEnergy__ksterm_min_long_energy__long_energy - - + + - + KSTermMinLongEnergy__ksterm_min_long_energy__name - -name + +name - + KSTermMinLongEnergy__ksterm_min_long_energy->KSTermMinLongEnergy__ksterm_min_long_energy__name - - + + - + KSTermMinR__ksterm_min_r__name - -name + +name - + KSTermMinR__ksterm_min_r->KSTermMinR__ksterm_min_r__name - - + + - + KSTermMinR__ksterm_min_r__r - -r + +r - + KSTermMinR__ksterm_min_r->KSTermMinR__ksterm_min_r__r - - + + - + KSTermMinZ__ksterm_min_z__name - -name + +name - + KSTermMinZ__ksterm_min_z->KSTermMinZ__ksterm_min_z__name - - + + - + KSTermMinZ__ksterm_min_z__z - -z + +z - + KSTermMinZ__ksterm_min_z->KSTermMinZ__ksterm_min_z__z - - + + - + KSTermOutputData__ksterm_output__component - -component + +component - + KSTermOutputData__ksterm_output->KSTermOutputData__ksterm_output__component - - + + - + KSTermOutputData__ksterm_output__group - -group + +group - + KSTermOutputData__ksterm_output->KSTermOutputData__ksterm_output__group - - + + - + KSTermOutputData__ksterm_output__max_value - -max_value + +max_value - + KSTermOutputData__ksterm_output->KSTermOutputData__ksterm_output__max_value - - + + - + KSTermOutputData__ksterm_output__min_value - -min_value + +min_value - + KSTermOutputData__ksterm_output->KSTermOutputData__ksterm_output__min_value - - + + - + KSTermOutputData__ksterm_output__name - -name + +name - + KSTermOutputData__ksterm_output->KSTermOutputData__ksterm_output__name - - + + - + KSTermSecondaries__ksterm_secondaries__name - -name + +name - + KSTermSecondaries__ksterm_secondaries->KSTermSecondaries__ksterm_secondaries__name - - + + - + KSTermStepsize__ksterm_stepsize__max_length - -max_length + +max_length - + KSTermStepsize__ksterm_stepsize->KSTermStepsize__ksterm_stepsize__max_length - - + + - + KSTermStepsize__ksterm_stepsize__min_length - -min_length + +min_length - + KSTermStepsize__ksterm_stepsize->KSTermStepsize__ksterm_stepsize__min_length - - + + - + KSTermStepsize__ksterm_stepsize__name - -name + +name - + KSTermStepsize__ksterm_stepsize->KSTermStepsize__ksterm_stepsize__name - - + + - + KSTermTrapped__ksterm_trapped__max_turns - -max_turns + +max_turns - + KSTermTrapped__ksterm_trapped->KSTermTrapped__ksterm_trapped__max_turns - - + + - + KSTermTrapped__ksterm_trapped__name - -name + +name - + KSTermTrapped__ksterm_trapped->KSTermTrapped__ksterm_trapped__name - - + + - + KSTermTrapped__ksterm_trapped__use_electric_field - -use_electric_field + +use_electric_field - + KSTermTrapped__ksterm_trapped->KSTermTrapped__ksterm_trapped__use_electric_field - - + + - + KSTermTrapped__ksterm_trapped__use_magnetic_field - -use_magnetic_field + +use_magnetic_field - + KSTermTrapped__ksterm_trapped->KSTermTrapped__ksterm_trapped__use_magnetic_field - - + + - + KSTermZHRadius__ksterm_zh_radius__central_expansion - -central_expansion + +central_expansion - + KSTermZHRadius__ksterm_zh_radius->KSTermZHRadius__ksterm_zh_radius__central_expansion - - + + - + KSTermZHRadius__ksterm_zh_radius__electric_field - -electric_field + +electric_field - + KSTermZHRadius__ksterm_zh_radius->KSTermZHRadius__ksterm_zh_radius__electric_field - - + + - + KSTermZHRadius__ksterm_zh_radius__magnetic_field - -magnetic_field + +magnetic_field - + KSTermZHRadius__ksterm_zh_radius->KSTermZHRadius__ksterm_zh_radius__magnetic_field - - + + - + KSTermZHRadius__ksterm_zh_radius__name - -name + +name - + KSTermZHRadius__ksterm_zh_radius->KSTermZHRadius__ksterm_zh_radius__name - - + + - + KSTermZHRadius__ksterm_zh_radius__remote_expansion - -remote_expansion + +remote_expansion - + KSTermZHRadius__ksterm_zh_radius->KSTermZHRadius__ksterm_zh_radius__remote_expansion - - + + - + KSTrajControlBChange__kstraj_control_B_change__fraction - -fraction + +fraction - + KSTrajControlBChange__kstraj_control_B_change->KSTrajControlBChange__kstraj_control_B_change__fraction - - + + - + KSTrajControlBChange__kstraj_control_B_change__name - -name + +name - + KSTrajControlBChange__kstraj_control_B_change->KSTrajControlBChange__kstraj_control_B_change__name - - + + - + KSTrajControlCyclotron__kstraj_control_cyclotron__fraction - -fraction + +fraction - + KSTrajControlCyclotron__kstraj_control_cyclotron->KSTrajControlCyclotron__kstraj_control_cyclotron__fraction - - + + - + KSTrajControlCyclotron__kstraj_control_cyclotron__name - -name + +name - + KSTrajControlCyclotron__kstraj_control_cyclotron->KSTrajControlCyclotron__kstraj_control_cyclotron__name - - + + - + KSTrajControlEnergy__kstraj_control_energy__adjustment - -adjustment + +adjustment - + KSTrajControlEnergy__kstraj_control_energy->KSTrajControlEnergy__kstraj_control_energy__adjustment - - + + - + KSTrajControlEnergy__kstraj_control_energy__adjustment_down - -adjustment_down + +adjustment_down - + KSTrajControlEnergy__kstraj_control_energy->KSTrajControlEnergy__kstraj_control_energy__adjustment_down - - + + - + KSTrajControlEnergy__kstraj_control_energy__adjustment_up - -adjustment_up + +adjustment_up - + KSTrajControlEnergy__kstraj_control_energy->KSTrajControlEnergy__kstraj_control_energy__adjustment_up - - + + - + KSTrajControlEnergy__kstraj_control_energy__initial_step - -initial_step + +initial_step - + KSTrajControlEnergy__kstraj_control_energy->KSTrajControlEnergy__kstraj_control_energy__initial_step - - + + - + KSTrajControlEnergy__kstraj_control_energy__lower_limit - -lower_limit + +lower_limit - + KSTrajControlEnergy__kstraj_control_energy->KSTrajControlEnergy__kstraj_control_energy__lower_limit - - + + - + KSTrajControlEnergy__kstraj_control_energy__max_length - -max_length + +max_length - + KSTrajControlEnergy__kstraj_control_energy->KSTrajControlEnergy__kstraj_control_energy__max_length - - + + - + KSTrajControlEnergy__kstraj_control_energy__min_length - -min_length + +min_length - + KSTrajControlEnergy__kstraj_control_energy->KSTrajControlEnergy__kstraj_control_energy__min_length - - + + - + KSTrajControlEnergy__kstraj_control_energy__name - -name + +name - + KSTrajControlEnergy__kstraj_control_energy->KSTrajControlEnergy__kstraj_control_energy__name - - + + - + KSTrajControlEnergy__kstraj_control_energy__step_rescale - -step_rescale + +step_rescale - + KSTrajControlEnergy__kstraj_control_energy->KSTrajControlEnergy__kstraj_control_energy__step_rescale - - + + - + KSTrajControlEnergy__kstraj_control_energy__upper_limit - -upper_limit + +upper_limit - + KSTrajControlEnergy__kstraj_control_energy->KSTrajControlEnergy__kstraj_control_energy__upper_limit - - + + - + KSTrajControlLength__kstraj_control_length__length - -length + +length - + KSTrajControlLength__kstraj_control_length->KSTrajControlLength__kstraj_control_length__length - - + + - + KSTrajControlLength__kstraj_control_length__name - -name + +name - + KSTrajControlLength__kstraj_control_length->KSTrajControlLength__kstraj_control_length__name - - + + - + KSTrajControlMDot__kstraj_control_m_dot__fraction - -fraction + +fraction - + KSTrajControlMDot__kstraj_control_m_dot->KSTrajControlMDot__kstraj_control_m_dot__fraction - - + + - + KSTrajControlMDot__kstraj_control_m_dot__name - -name + +name - + KSTrajControlMDot__kstraj_control_m_dot->KSTrajControlMDot__kstraj_control_m_dot__name - - + + - + KSTrajControlMagneticMoment__kstraj_control_magnetic_moment__lower_limit - -lower_limit + +lower_limit - + KSTrajControlMagneticMoment__kstraj_control_magnetic_moment->KSTrajControlMagneticMoment__kstraj_control_magnetic_moment__lower_limit - - + + - + KSTrajControlMagneticMoment__kstraj_control_magnetic_moment__name - -name + +name - + KSTrajControlMagneticMoment__kstraj_control_magnetic_moment->KSTrajControlMagneticMoment__kstraj_control_magnetic_moment__name - - + + - + KSTrajControlMagneticMoment__kstraj_control_magnetic_moment__upper_limit - -upper_limit + +upper_limit - + KSTrajControlMagneticMoment__kstraj_control_magnetic_moment->KSTrajControlMagneticMoment__kstraj_control_magnetic_moment__upper_limit - - + + - + KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error__absolute_momentum_error - -absolute_momentum_error + +absolute_momentum_error - + KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error->KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error__absolute_momentum_error - - + + - + KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error__name - -name + +name - + KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error->KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error__name - - + + - + KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error__safety_factor - -safety_factor + +safety_factor - + KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error->KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error__safety_factor - - + + - + KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error__solver_order - -solver_order + +solver_order - + KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error->KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error__solver_order - - + + - + KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error__absolute_position_error - -absolute_position_error + +absolute_position_error - + KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error->KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error__absolute_position_error - - + + - + KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error__name - -name + +name - + KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error->KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error__name - - + + - + KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error__safety_factor - -safety_factor + +safety_factor - + KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error->KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error__safety_factor - - + + - + KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error__solver_order - -solver_order + +solver_order - + KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error->KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error__solver_order - - + + - + KSTrajControlSpinPrecession__kstraj_control_spin_precession__fraction - -fraction + +fraction - + KSTrajControlSpinPrecession__kstraj_control_spin_precession->KSTrajControlSpinPrecession__kstraj_control_spin_precession__fraction - - + + - + KSTrajControlSpinPrecession__kstraj_control_spin_precession__name - -name + +name - + KSTrajControlSpinPrecession__kstraj_control_spin_precession->KSTrajControlSpinPrecession__kstraj_control_spin_precession__name - - + + - + KSTrajControlTime__kstraj_control_time__name - -name + +name - + KSTrajControlTime__kstraj_control_time->KSTrajControlTime__kstraj_control_time__name - - + + - + KSTrajControlTime__kstraj_control_time__time - -time + +time - + KSTrajControlTime__kstraj_control_time->KSTrajControlTime__kstraj_control_time__time - - + + - + KSTrajIntegratorRK54__kstraj_integrator_rk54__name - -name + +name - + KSTrajIntegratorRK54__kstraj_integrator_rk54->KSTrajIntegratorRK54__kstraj_integrator_rk54__name - - + + - + KSTrajIntegratorRK65__kstraj_integrator_rk65__name - -name + +name - + KSTrajIntegratorRK65__kstraj_integrator_rk65->KSTrajIntegratorRK65__kstraj_integrator_rk65__name - - + + - + KSTrajIntegratorRK8__kstraj_integrator_rk8__name - -name + +name - + KSTrajIntegratorRK8__kstraj_integrator_rk8->KSTrajIntegratorRK8__kstraj_integrator_rk8__name - - + + - + KSTrajIntegratorRK86__kstraj_integrator_rk86__name - -name + +name - + KSTrajIntegratorRK86__kstraj_integrator_rk86->KSTrajIntegratorRK86__kstraj_integrator_rk86__name - - + + - + KSTrajIntegratorRK87__kstraj_integrator_rk87__name - -name + +name - + KSTrajIntegratorRK87__kstraj_integrator_rk87->KSTrajIntegratorRK87__kstraj_integrator_rk87__name - - + + - + KSTrajIntegratorRKDP54__kstraj_integrator_rkdp54__name - -name + +name - + KSTrajIntegratorRKDP54__kstraj_integrator_rkdp54->KSTrajIntegratorRKDP54__kstraj_integrator_rkdp54__name - - + + - + KSTrajIntegratorRKDP853__kstraj_integrator_rkdp853__name - -name + +name - + KSTrajIntegratorRKDP853__kstraj_integrator_rkdp853->KSTrajIntegratorRKDP853__kstraj_integrator_rkdp853__name - - + + - + KSTrajIntegratorSym4__kstraj_integrator_sym4__name - -name + +name - + KSTrajIntegratorSym4__kstraj_integrator_sym4->KSTrajIntegratorSym4__kstraj_integrator_sym4__name - - + + - + KSTrajInterpolatorContinuousRungeKutta__kstraj_interpolator_crk__name - -name + +name - + KSTrajInterpolatorContinuousRungeKutta__kstraj_interpolator_crk->KSTrajInterpolatorContinuousRungeKutta__kstraj_interpolator_crk__name - - + + - + KSTrajInterpolatorFast__kstraj_interpolator_fast__name - -name + +name - + KSTrajInterpolatorFast__kstraj_interpolator_fast->KSTrajInterpolatorFast__kstraj_interpolator_fast__name - - + + - + KSTrajInterpolatorHermite__kstraj_interpolator_hermite__name - -name + +name - + KSTrajInterpolatorHermite__kstraj_interpolator_hermite->KSTrajInterpolatorHermite__kstraj_interpolator_hermite__name - - + + - + KSTrajTermConstantForcePropagation__kstraj_term_constant_force_propagation__force - -force + +force - + KSTrajTermConstantForcePropagation__kstraj_term_constant_force_propagation->KSTrajTermConstantForcePropagation__kstraj_term_constant_force_propagation__force - - + + - + KSTrajTermConstantForcePropagation__kstraj_term_constant_force_propagation__name - -name + +name - + KSTrajTermConstantForcePropagation__kstraj_term_constant_force_propagation->KSTrajTermConstantForcePropagation__kstraj_term_constant_force_propagation__name - - + + - + KSTrajTermDrift__kstraj_term_drift__name - -name + +name - + KSTrajTermDrift__kstraj_term_drift->KSTrajTermDrift__kstraj_term_drift__name - - + + - + KSTrajTermGravity__kstraj_term_gravity__gravity - -gravity + +gravity - + KSTrajTermGravity__kstraj_term_gravity->KSTrajTermGravity__kstraj_term_gravity__gravity - - + + - + KSTrajTermGravity__kstraj_term_gravity__name - -name + +name - + KSTrajTermGravity__kstraj_term_gravity->KSTrajTermGravity__kstraj_term_gravity__name - - + + - + KSTrajTermGyration__kstraj_term_gyration__name - -name + +name - + KSTrajTermGyration__kstraj_term_gyration->KSTrajTermGyration__kstraj_term_gyration__name - - + + - + KSTrajTermPropagation__kstraj_term_propagation__direction - -direction + +direction - + KSTrajTermPropagation__kstraj_term_propagation->KSTrajTermPropagation__kstraj_term_propagation__direction - - + + - + KSTrajTermPropagation__kstraj_term_propagation__name - -name + +name - + KSTrajTermPropagation__kstraj_term_propagation->KSTrajTermPropagation__kstraj_term_propagation__name - - + + - + KSTrajTermSynchrotron__kstraj_term_synchrotron__enhancement - -enhancement + +enhancement - + KSTrajTermSynchrotron__kstraj_term_synchrotron->KSTrajTermSynchrotron__kstraj_term_synchrotron__enhancement - - + + - + KSTrajTermSynchrotron__kstraj_term_synchrotron__name - -name + +name - + KSTrajTermSynchrotron__kstraj_term_synchrotron->KSTrajTermSynchrotron__kstraj_term_synchrotron__name - - + + - + KSTrajTermSynchrotron__kstraj_term_synchrotron__old_methode - -old_methode + +old_methode - + KSTrajTermSynchrotron__kstraj_term_synchrotron->KSTrajTermSynchrotron__kstraj_term_synchrotron__old_methode - - + + - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic__attempt_limit - -attempt_limit + +attempt_limit - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic__attempt_limit - - + + - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic__cyclotron_fraction - -cyclotron_fraction + +cyclotron_fraction - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic__cyclotron_fraction - - + + - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic__max_segments - -max_segments + +max_segments - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic__max_segments - - + + - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic__name - -name + +name - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic__name - - + + - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic__piecewise_tolerance - -piecewise_tolerance + +piecewise_tolerance - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic__piecewise_tolerance - - + + - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic__use_true_position - -use_true_position + +use_true_position - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic__use_true_position - - + + - + KSTrajControlBChange__control_B_change - -control_B_change + +control_B_change - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlBChange__control_B_change - - + + - + KSTrajControlCyclotron__control_cyclotron - -control_cyclotron + +control_cyclotron - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlCyclotron__control_cyclotron - - + + - + KSTrajControlEnergy__control_energy - -control_energy + +control_energy - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlEnergy__control_energy - - + + - + KSTrajControlLength__control_length - -control_length + +control_length - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlLength__control_length - - + + - + KSTrajControlMagneticMoment__control_magnetic_moment - -control_magnetic_moment + +control_magnetic_moment - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlMagneticMoment__control_magnetic_moment - - + + - + KSTrajControlMomentumNumericalError__control_momentum_error - -control_momentum_error + +control_momentum_error - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlMomentumNumericalError__control_momentum_error - - + + - + KSTrajControlPositionNumericalError__control_position_error - -control_position_error + +control_position_error - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlPositionNumericalError__control_position_error - - + + - + KSTrajControlTime__control_time - -control_time + +control_time - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlTime__control_time - - + + - + KSTrajIntegratorRK54__integrator_rk54 - -integrator_rk54 + +integrator_rk54 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRK54__integrator_rk54 - - + + - + KSTrajIntegratorRK65__integrator_rk65 - -integrator_rk65 + +integrator_rk65 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRK65__integrator_rk65 - - + + - + KSTrajIntegratorRK8__integrator_rk8 - -integrator_rk8 + +integrator_rk8 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajIntegratorRK86__integrator_rk86 - -integrator_rk86 + +integrator_rk86 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRK86__integrator_rk86 - - + + - + KSTrajIntegratorRK87__integrator_rk87 - -integrator_rk87 + +integrator_rk87 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRK87__integrator_rk87 - - + + - + KSTrajIntegratorRKDP54__integrator_rkdp54 - -integrator_rkdp54 + +integrator_rkdp54 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRKDP54__integrator_rkdp54 - - + + - + KSTrajIntegratorRKDP853__integrator_rkdp853 - -integrator_rkdp853 + +integrator_rkdp853 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRKDP853__integrator_rkdp853 - - + + - + KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - -interpolator_crk + +interpolator_crk - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - - + + - + KSTrajInterpolatorFast__interpolator_fast - -interpolator_fast + +interpolator_fast - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajInterpolatorFast__interpolator_fast - - + + - + KSTrajInterpolatorHermite__interpolator_hermite - -interpolator_hermite + +interpolator_hermite - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajInterpolatorHermite__interpolator_hermite - - + + - + KSTrajTermDrift__term_drift - -term_drift + +term_drift - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTermDrift__term_drift - - + + - + KSTrajTermGyration__term_gyration - -term_gyration + +term_gyration - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTermGyration__term_gyration - - + + - + KSTrajTermPropagation__term_propagation - -term_propagation + +term_propagation - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTermPropagation__term_propagation - - + + - + KSTrajTermSynchrotron__term_synchrotron - -term_synchrotron + +term_synchrotron - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTermSynchrotron__term_synchrotron - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlBChange__control_B_change - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlCyclotron__control_cyclotron - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlEnergy__control_energy - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlLength__control_length - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlMagneticMoment__control_magnetic_moment - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlMomentumNumericalError__control_momentum_error - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlPositionNumericalError__control_position_error - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlTime__control_time - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRK54__integrator_rk54 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRK65__integrator_rk65 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRK86__integrator_rk86 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRK87__integrator_rk87 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRKDP54__integrator_rkdp54 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRKDP853__integrator_rkdp853 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajInterpolatorFast__interpolator_fast - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajInterpolatorHermite__interpolator_hermite - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajTermPropagation__term_propagation - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajTermSynchrotron__term_synchrotron - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin__attempt_limit - -attempt_limit + +attempt_limit - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin__attempt_limit - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin__max_segments - -max_segments + +max_segments - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin__max_segments - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin__name - -name + +name - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin__name - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin__piecewise_tolerance - -piecewise_tolerance + +piecewise_tolerance - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin__piecewise_tolerance - - + + - + KSTrajControlMDot__control_m_dot - -control_m_dot + +control_m_dot - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlMDot__control_m_dot - - + + - + KSTrajControlSpinPrecession__control_spin_precession - -control_spin_precession + +control_spin_precession - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlSpinPrecession__control_spin_precession - - + + - + KSTrajTermGravity__term_gravity - -term_gravity + +term_gravity - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajTermGravity__term_gravity - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajControlBChange__control_B_change - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajControlLength__control_length - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajControlTime__control_time - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRK54__integrator_rk54 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRK65__integrator_rk65 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRK86__integrator_rk86 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRK87__integrator_rk87 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRKDP54__integrator_rkdp54 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRKDP853__integrator_rkdp853 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajInterpolatorFast__interpolator_fast - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajInterpolatorHermite__interpolator_hermite - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajTermPropagation__term_propagation - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric__attempt_limit - -attempt_limit + +attempt_limit - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajTrajectoryElectric__kstraj_trajectory_electric__attempt_limit - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric__max_segments - -max_segments + +max_segments - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajTrajectoryElectric__kstraj_trajectory_electric__max_segments - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric__name - -name + +name - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajTrajectoryElectric__kstraj_trajectory_electric__name - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric__piecewise_tolerance - -piecewise_tolerance + +piecewise_tolerance - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajTrajectoryElectric__kstraj_trajectory_electric__piecewise_tolerance - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlBChange__control_B_change - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlCyclotron__control_cyclotron - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlEnergy__control_energy - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlLength__control_length - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlMagneticMoment__control_magnetic_moment - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlMomentumNumericalError__control_momentum_error - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlPositionNumericalError__control_position_error - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlTime__control_time - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRK54__integrator_rk54 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRK65__integrator_rk65 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRK86__integrator_rk86 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRK87__integrator_rk87 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRKDP54__integrator_rkdp54 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRKDP853__integrator_rkdp853 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajInterpolatorFast__interpolator_fast - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajInterpolatorHermite__interpolator_hermite - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajTermPropagation__term_propagation - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajTermSynchrotron__term_synchrotron - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajTermGravity__term_gravity - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact__attempt_limit - -attempt_limit + +attempt_limit - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajTrajectoryExact__kstraj_trajectory_exact__attempt_limit - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact__max_segments - -max_segments + +max_segments - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajTrajectoryExact__kstraj_trajectory_exact__max_segments - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact__name - -name + +name - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajTrajectoryExact__kstraj_trajectory_exact__name - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact__piecewise_tolerance - -piecewise_tolerance + +piecewise_tolerance - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajTrajectoryExact__kstraj_trajectory_exact__piecewise_tolerance - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlBChange__control_B_change - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlCyclotron__control_cyclotron - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlEnergy__control_energy - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlLength__control_length - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlMagneticMoment__control_magnetic_moment - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlMomentumNumericalError__control_momentum_error - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlPositionNumericalError__control_position_error - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlTime__control_time - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRK54__integrator_rk54 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRK65__integrator_rk65 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRK86__integrator_rk86 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRK87__integrator_rk87 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRKDP54__integrator_rkdp54 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRKDP853__integrator_rkdp853 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajInterpolatorFast__interpolator_fast - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajInterpolatorHermite__interpolator_hermite - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajTermPropagation__term_propagation - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajTermSynchrotron__term_synchrotron - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlSpinPrecession__control_spin_precession - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajTermGravity__term_gravity - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin__attempt_limit - -attempt_limit + +attempt_limit - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin__attempt_limit - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin__max_segments - -max_segments + +max_segments - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin__max_segments - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin__name - -name + +name - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin__name - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin__piecewise_tolerance - -piecewise_tolerance + +piecewise_tolerance - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin__piecewise_tolerance - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajControlLength__control_length - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajControlTime__control_time - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajTermPropagation__term_propagation - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajTermSynchrotron__term_synchrotron - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped__attempt_limit - -attempt_limit + +attempt_limit - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped__attempt_limit - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped__max_segments - -max_segments + +max_segments - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped__max_segments - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped__name - -name + +name - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped__name - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped__piecewise_tolerance - -piecewise_tolerance + +piecewise_tolerance - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped__piecewise_tolerance - - + + - + KSTrajIntegratorSym4__integrator_sym4 - -integrator_sym4 + +integrator_sym4 - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajIntegratorSym4__integrator_sym4 - - + + - + KSTrajInterpolatorContinuousRungeKutta __interpolator_crk - -interpolator_crk + +interpolator_crk - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajInterpolatorContinuousRungeKutta __interpolator_crk - - + + - + KSTrajInterpolatorFast __interpolator_fast - -interpolator_fast + +interpolator_fast - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajInterpolatorFast __interpolator_fast - - + + - + KSTrajInterpolatorHermite __interpolator_hermite - -interpolator_hermite + +interpolator_hermite - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajInterpolatorHermite __interpolator_hermite - - + + - + KSTrajTrajectoryLinear__kstraj_trajectory_linear__length - -length + +length - + KSTrajTrajectoryLinear__kstraj_trajectory_linear->KSTrajTrajectoryLinear__kstraj_trajectory_linear__length - - + + - + KSTrajTrajectoryLinear__kstraj_trajectory_linear__name - -name + +name - + KSTrajTrajectoryLinear__kstraj_trajectory_linear->KSTrajTrajectoryLinear__kstraj_trajectory_linear__name - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajControlBChange__control_B_change - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajControlLength__control_length - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajControlTime__control_time - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRK54__integrator_rk54 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRK65__integrator_rk65 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRK86__integrator_rk86 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRK87__integrator_rk87 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRKDP54__integrator_rkdp54 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRKDP853__integrator_rkdp853 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajInterpolatorFast__interpolator_fast - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajInterpolatorHermite__interpolator_hermite - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajTermPropagation__term_propagation - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic__attempt_limit - -attempt_limit + +attempt_limit - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic__attempt_limit - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic__max_segments - -max_segments + +max_segments - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic__max_segments - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic__name - -name + +name - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic__name - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic__piecewise_tolerance - -piecewise_tolerance + +piecewise_tolerance - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic__piecewise_tolerance - - + + - + KSWriteASCII__kswrite_ascii__base - -base + +base - + KSWriteASCII__kswrite_ascii->KSWriteASCII__kswrite_ascii__base - - + + - + KSWriteASCII__kswrite_ascii__name - -name + +name - + KSWriteASCII__kswrite_ascii->KSWriteASCII__kswrite_ascii__name - - + + - + KSWriteASCII__kswrite_ascii__path - -path + +path - + KSWriteASCII__kswrite_ascii->KSWriteASCII__kswrite_ascii__path - - + + - + KSWriteASCII__kswrite_ascii__precision - -precision + +precision - + KSWriteASCII__kswrite_ascii->KSWriteASCII__kswrite_ascii__precision - - + + - + KSWriteROOT__kswrite_root__base - -base + +base - + KSWriteROOT__kswrite_root->KSWriteROOT__kswrite_root__base - - + + - + KSWriteROOT__kswrite_root__name - -name + +name - + KSWriteROOT__kswrite_root->KSWriteROOT__kswrite_root__name - - + + - + KSWriteROOT__kswrite_root__path - -path + +path - + KSWriteROOT__kswrite_root->KSWriteROOT__kswrite_root__path - - + + - + KSWriteROOTConditionOutputData__kswrite_root_condition_output__group - -group + +group - + KSWriteROOTConditionOutputData__kswrite_root_condition_output->KSWriteROOTConditionOutputData__kswrite_root_condition_output__group - - + + - + KSWriteROOTConditionOutputData__kswrite_root_condition_output__max_value - -max_value + +max_value - + KSWriteROOTConditionOutputData__kswrite_root_condition_output->KSWriteROOTConditionOutputData__kswrite_root_condition_output__max_value - - + + - + KSWriteROOTConditionOutputData__kswrite_root_condition_output__min_value - -min_value + +min_value - + KSWriteROOTConditionOutputData__kswrite_root_condition_output->KSWriteROOTConditionOutputData__kswrite_root_condition_output__min_value - - + + - + KSWriteROOTConditionOutputData__kswrite_root_condition_output__name - -name + +name - + KSWriteROOTConditionOutputData__kswrite_root_condition_output->KSWriteROOTConditionOutputData__kswrite_root_condition_output__name - - + + - + KSWriteROOTConditionOutputData__kswrite_root_condition_output__parent - -parent + +parent - + KSWriteROOTConditionOutputData__kswrite_root_condition_output->KSWriteROOTConditionOutputData__kswrite_root_condition_output__parent - - + + - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__group - -group + +group - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic->KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__group - - + + - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__increment - -increment + +increment - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic->KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__increment - - + + - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__initial_max - -initial_max + +initial_max - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic->KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__initial_max - - + + - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__initial_min - -initial_min + +initial_min - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic->KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__initial_min - - + + - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__name - -name + +name - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic->KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__name - - + + - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__parent - -parent + +parent - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic->KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__parent - - + + - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__reset_max - -reset_max + +reset_max - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic->KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__reset_max - - + + - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__reset_min - -reset_min + +reset_min - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic->KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic__reset_min - - + + - + KSWriteROOTConditionStepData__kswrite_root_condition_step__group - -group + +group - + KSWriteROOTConditionStepData__kswrite_root_condition_step->KSWriteROOTConditionStepData__kswrite_root_condition_step__group - - + + - + KSWriteROOTConditionStepData__kswrite_root_condition_step__name - -name + +name - + KSWriteROOTConditionStepData__kswrite_root_condition_step->KSWriteROOTConditionStepData__kswrite_root_condition_step__name - - + + - + KSWriteROOTConditionStepData__kswrite_root_condition_step__nth_step - -nth_step + +nth_step - + KSWriteROOTConditionStepData__kswrite_root_condition_step->KSWriteROOTConditionStepData__kswrite_root_condition_step__nth_step - - + + - + KSWriteROOTConditionStepData__kswrite_root_condition_step__parent - -parent + +parent - + KSWriteROOTConditionStepData__kswrite_root_condition_step->KSWriteROOTConditionStepData__kswrite_root_condition_step__parent - - + + - + KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator__group - -group + +group - + KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator->KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator__group - - + + - + KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator__match_terminator - -match_terminator + +match_terminator - + KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator->KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator__match_terminator - - + + - + KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator__name - -name + +name - + KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator->KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator__name - - + + - + KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator__parent - -parent + +parent - + KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator->KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator__parent - - + + - + KSWriteVTK__kswrite_vtk__base - -base + +base - + KSWriteVTK__kswrite_vtk->KSWriteVTK__kswrite_vtk__base - - + + - + KSWriteVTK__kswrite_vtk__name - -name + +name - + KSWriteVTK__kswrite_vtk->KSWriteVTK__kswrite_vtk__name - - + + - + KSWriteVTK__kswrite_vtk__path - -path + +path - + KSWriteVTK__kswrite_vtk->KSWriteVTK__kswrite_vtk__path - - + + - + KSComponentMemberData__output__field - -field + +field - + KSComponentMemberData__output->KSComponentMemberData__output__field - - + + - + KSComponentMemberData__output__name - -name + +name - + KSComponentMemberData__output->KSComponentMemberData__output__name - - + + - + KSComponentMemberData__output__parent - -parent + +parent - + KSComponentMemberData__output->KSComponentMemberData__output__parent - - + + - + KSComponentDeltaData__output_delta__component - -component + +component - + KSComponentDeltaData__output_delta->KSComponentDeltaData__output_delta__component - - + + - + KSComponentDeltaData__output_delta__group - -group + +group - + KSComponentDeltaData__output_delta->KSComponentDeltaData__output_delta__group - - + + - + KSComponentDeltaData__output_delta__name - -name + +name - + KSComponentDeltaData__output_delta->KSComponentDeltaData__output_delta__name - - + + - + KSComponentDeltaData__output_delta__parent - -parent + +parent - + KSComponentDeltaData__output_delta->KSComponentDeltaData__output_delta__parent - - + + - + KSComponentIntegralData__output_integral__component - -component + +component - + KSComponentIntegralData__output_integral->KSComponentIntegralData__output_integral__component - - + + - + KSComponentIntegralData__output_integral__group - -group + +group - + KSComponentIntegralData__output_integral->KSComponentIntegralData__output_integral__group - - + + - + KSComponentIntegralData__output_integral__name - -name + +name - + KSComponentIntegralData__output_integral->KSComponentIntegralData__output_integral__name - - + + - + KSComponentIntegralData__output_integral__parent - -parent + +parent - + KSComponentIntegralData__output_integral->KSComponentIntegralData__output_integral__parent - - + + - + KSComponentMathData__output_math__component - -component + +component - + KSComponentMathData__output_math->KSComponentMathData__output_math__component - - + + - + KSComponentMathData__output_math__group - -group + +group - + KSComponentMathData__output_math->KSComponentMathData__output_math__group - - + + - + KSComponentMathData__output_math__name - -name + +name - + KSComponentMathData__output_math->KSComponentMathData__output_math__name - - + + - + KSComponentMathData__output_math__parent - -parent + +parent - + KSComponentMathData__output_math->KSComponentMathData__output_math__parent - - + + - + KSComponentMathData__output_math__term - -term + +term - + KSComponentMathData__output_math->KSComponentMathData__output_math__term - - + + - + KSComponentMaximumData__output_maximum__component - -component + +component - + KSComponentMaximumData__output_maximum->KSComponentMaximumData__output_maximum__component - - + + - + KSComponentMaximumData__output_maximum__group - -group + +group - + KSComponentMaximumData__output_maximum->KSComponentMaximumData__output_maximum__group - - + + - + KSComponentMaximumData__output_maximum__name - -name + +name - + KSComponentMaximumData__output_maximum->KSComponentMaximumData__output_maximum__name - - + + - + KSComponentMaximumData__output_maximum__parent - -parent + +parent - + KSComponentMaximumData__output_maximum->KSComponentMaximumData__output_maximum__parent - - + + - + KSComponentMaximumAtData__output_maximum_at__component - -component + +component - + KSComponentMaximumAtData__output_maximum_at->KSComponentMaximumAtData__output_maximum_at__component - - + + - + KSComponentMaximumAtData__output_maximum_at__group - -group + +group - + KSComponentMaximumAtData__output_maximum_at->KSComponentMaximumAtData__output_maximum_at__group - - + + - + KSComponentMaximumAtData__output_maximum_at__name - -name + +name - + KSComponentMaximumAtData__output_maximum_at->KSComponentMaximumAtData__output_maximum_at__name - - + + - + KSComponentMaximumAtData__output_maximum_at__parent - -parent + +parent - + KSComponentMaximumAtData__output_maximum_at->KSComponentMaximumAtData__output_maximum_at__parent - - + + - + KSComponentMaximumAtData__output_maximum_at__source - -source + +source - + KSComponentMaximumAtData__output_maximum_at->KSComponentMaximumAtData__output_maximum_at__source - - + + - + KSComponentMinimumData__output_minimum__component - -component + +component - + KSComponentMinimumData__output_minimum->KSComponentMinimumData__output_minimum__component - - + + - + KSComponentMinimumData__output_minimum__group - -group + +group - + KSComponentMinimumData__output_minimum->KSComponentMinimumData__output_minimum__group - - + + - + KSComponentMinimumData__output_minimum__name - -name + +name - + KSComponentMinimumData__output_minimum->KSComponentMinimumData__output_minimum__name - - + + - + KSComponentMinimumData__output_minimum__parent - -parent + +parent - + KSComponentMinimumData__output_minimum->KSComponentMinimumData__output_minimum__parent - - + + - + KSComponentMinimumAtData__output_minimum_at__component - -component + +component - + KSComponentMinimumAtData__output_minimum_at->KSComponentMinimumAtData__output_minimum_at__component - - + + - + KSComponentMinimumAtData__output_minimum_at__group - -group + +group - + KSComponentMinimumAtData__output_minimum_at->KSComponentMinimumAtData__output_minimum_at__group - - + + - + KSComponentMinimumAtData__output_minimum_at__name - -name + +name - + KSComponentMinimumAtData__output_minimum_at->KSComponentMinimumAtData__output_minimum_at__name - - + + - + KSComponentMinimumAtData__output_minimum_at__parent - -parent + +parent - + KSComponentMinimumAtData__output_minimum_at->KSComponentMinimumAtData__output_minimum_at__parent - - + + - + KSComponentMinimumAtData__output_minimum_at__source - -source + +source - + KSComponentMinimumAtData__output_minimum_at->KSComponentMinimumAtData__output_minimum_at__source - - + + KSCommandGroup__command_group->KSCommandGroup__command_group - - + + - + KSCommandGroup__command_group__command - -command + +command KSCommandGroup__command_group->KSCommandGroup__command_group__command - - + + - + KSCommandGroup__command_group__name - -name + +name KSCommandGroup__command_group->KSCommandGroup__command_group__name - - + + - + KSGenValueFermi__phi_fermi__name - -name + +name KSGenValueFermi__phi_fermi->KSGenValueFermi__phi_fermi__name - - + + - + KSGenValueFermi__phi_fermi__value_max - -value_max + +value_max KSGenValueFermi__phi_fermi->KSGenValueFermi__phi_fermi__value_max - - + + - + KSGenValueFermi__phi_fermi__value_mean - -value_mean + +value_mean KSGenValueFermi__phi_fermi->KSGenValueFermi__phi_fermi__value_mean - - + + - + KSGenValueFermi__phi_fermi__value_min - -value_min + +value_min KSGenValueFermi__phi_fermi->KSGenValueFermi__phi_fermi__value_min - - + + - + KSGenValueFermi__phi_fermi__value_tau - -value_tau + +value_tau KSGenValueFermi__phi_fermi->KSGenValueFermi__phi_fermi__value_tau - - + + - + KSGenValueFermi__phi_fermi__value_temp - -value_temp + +value_temp KSGenValueFermi__phi_fermi->KSGenValueFermi__phi_fermi__value_temp - - + + - + KSGenValueFix__phi_fix__name - -name + +name KSGenValueFix__phi_fix->KSGenValueFix__phi_fix__name - - + + - + KSGenValueFix__phi_fix__value - -value + +value KSGenValueFix__phi_fix->KSGenValueFix__phi_fix__value - - + + - + KSGenValueFormula__phi_formula__name - -name + +name KSGenValueFormula__phi_formula->KSGenValueFormula__phi_formula__name - - + + - + KSGenValueFormula__phi_formula__value_formula - -value_formula + +value_formula KSGenValueFormula__phi_formula->KSGenValueFormula__phi_formula__value_formula - - + + - + KSGenValueFormula__phi_formula__value_max - -value_max + +value_max KSGenValueFormula__phi_formula->KSGenValueFormula__phi_formula__value_max - - + + - + KSGenValueFormula__phi_formula__value_min - -value_min + +value_min KSGenValueFormula__phi_formula->KSGenValueFormula__phi_formula__value_min - - + + - + KSGenValueGauss__phi_gauss__name - -name + +name KSGenValueGauss__phi_gauss->KSGenValueGauss__phi_gauss__name - - + + - + KSGenValueGauss__phi_gauss__value_max - -value_max + +value_max KSGenValueGauss__phi_gauss->KSGenValueGauss__phi_gauss__value_max - - + + - + KSGenValueGauss__phi_gauss__value_mean - -value_mean + +value_mean KSGenValueGauss__phi_gauss->KSGenValueGauss__phi_gauss__value_mean - - + + - + KSGenValueGauss__phi_gauss__value_min - -value_min + +value_min KSGenValueGauss__phi_gauss->KSGenValueGauss__phi_gauss__value_min - - + + - + KSGenValueGauss__phi_gauss__value_sigma - -value_sigma + +value_sigma KSGenValueGauss__phi_gauss->KSGenValueGauss__phi_gauss__value_sigma - - + + - + KSGenValueGeneralizedGauss__phi_generalized_gauss__name - -name + +name KSGenValueGeneralizedGauss__phi_generalized_gauss->KSGenValueGeneralizedGauss__phi_generalized_gauss__name - - + + - + KSGenValueGeneralizedGauss__phi_generalized_gauss__value_max - -value_max + +value_max KSGenValueGeneralizedGauss__phi_generalized_gauss->KSGenValueGeneralizedGauss__phi_generalized_gauss__value_max - - + + - + KSGenValueGeneralizedGauss__phi_generalized_gauss__value_mean - -value_mean + +value_mean KSGenValueGeneralizedGauss__phi_generalized_gauss->KSGenValueGeneralizedGauss__phi_generalized_gauss__value_mean - - + + - + KSGenValueGeneralizedGauss__phi_generalized_gauss__value_min - -value_min + +value_min KSGenValueGeneralizedGauss__phi_generalized_gauss->KSGenValueGeneralizedGauss__phi_generalized_gauss__value_min - - + + - + KSGenValueGeneralizedGauss__phi_generalized_gauss__value_sigma - -value_sigma + +value_sigma KSGenValueGeneralizedGauss__phi_generalized_gauss->KSGenValueGeneralizedGauss__phi_generalized_gauss__value_sigma - - + + - + KSGenValueGeneralizedGauss__phi_generalized_gauss__value_skew - -value_skew + +value_skew KSGenValueGeneralizedGauss__phi_generalized_gauss->KSGenValueGeneralizedGauss__phi_generalized_gauss__value_skew - - + + - + KSGenValueHistogram__phi_histogram__base - -base + +base KSGenValueHistogram__phi_histogram->KSGenValueHistogram__phi_histogram__base - - + + - + KSGenValueHistogram__phi_histogram__formula - -formula + +formula KSGenValueHistogram__phi_histogram->KSGenValueHistogram__phi_histogram__formula - - + + - + KSGenValueHistogram__phi_histogram__histogram - -histogram + +histogram KSGenValueHistogram__phi_histogram->KSGenValueHistogram__phi_histogram__histogram - - + + - + KSGenValueHistogram__phi_histogram__name - -name + +name KSGenValueHistogram__phi_histogram->KSGenValueHistogram__phi_histogram__name - - + + - + KSGenValueHistogram__phi_histogram__path - -path + +path KSGenValueHistogram__phi_histogram->KSGenValueHistogram__phi_histogram__path - - + + - + KSGenValueList__phi_list__add_value - -add_value + +add_value KSGenValueList__phi_list->KSGenValueList__phi_list__add_value - - + + - + KSGenValueList__phi_list__name - -name + +name KSGenValueList__phi_list->KSGenValueList__phi_list__name - - + + - + KSGenValueList__phi_list__randomize - -randomize + +randomize KSGenValueList__phi_list->KSGenValueList__phi_list__randomize - - + + - + KSGenValueSet__phi_set__name - -name + +name KSGenValueSet__phi_set->KSGenValueSet__phi_set__name - - + + - + KSGenValueSet__phi_set__value_count - -value_count + +value_count KSGenValueSet__phi_set->KSGenValueSet__phi_set__value_count - - + + - + KSGenValueSet__phi_set__value_increment - -value_increment + +value_increment KSGenValueSet__phi_set->KSGenValueSet__phi_set__value_increment - - + + - + KSGenValueSet__phi_set__value_start - -value_start + +value_start KSGenValueSet__phi_set->KSGenValueSet__phi_set__value_start - - + + - + KSGenValueSet__phi_set__value_stop - -value_stop + +value_stop KSGenValueSet__phi_set->KSGenValueSet__phi_set__value_stop - - + + - + KSGenValueUniform__phi_uniform__name - -name + +name KSGenValueUniform__phi_uniform->KSGenValueUniform__phi_uniform__name - - + + - + KSGenValueUniform__phi_uniform__value_max - -value_max + +value_max KSGenValueUniform__phi_uniform->KSGenValueUniform__phi_uniform__value_max - - + + - + KSGenValueUniform__phi_uniform__value_min - -value_min + +value_min KSGenValueUniform__phi_uniform->KSGenValueUniform__phi_uniform__value_min - - + + - + KSGenValueAngleCosine__theta_cosine__angle_max - -angle_max + +angle_max KSGenValueAngleCosine__theta_cosine->KSGenValueAngleCosine__theta_cosine__angle_max - - + + - + KSGenValueAngleCosine__theta_cosine__angle_min - -angle_min + +angle_min KSGenValueAngleCosine__theta_cosine->KSGenValueAngleCosine__theta_cosine__angle_min - - + + + + + +KSGenValueAngleCosine__theta_cosine__direction + +direction + + + +KSGenValueAngleCosine__theta_cosine->KSGenValueAngleCosine__theta_cosine__direction + + - + KSGenValueAngleCosine__theta_cosine__mode - -mode + +mode - + KSGenValueAngleCosine__theta_cosine->KSGenValueAngleCosine__theta_cosine__mode - - + + - + KSGenValueAngleCosine__theta_cosine__name - -name + +name - + KSGenValueAngleCosine__theta_cosine->KSGenValueAngleCosine__theta_cosine__name - - + + - + KSGenValueFermi__theta_fermi__name - -name + +name - + KSGenValueFermi__theta_fermi->KSGenValueFermi__theta_fermi__name - - + + - + KSGenValueFermi__theta_fermi__value_max - -value_max + +value_max - + KSGenValueFermi__theta_fermi->KSGenValueFermi__theta_fermi__value_max - - + + - + KSGenValueFermi__theta_fermi__value_mean - -value_mean + +value_mean - + KSGenValueFermi__theta_fermi->KSGenValueFermi__theta_fermi__value_mean - - + + - + KSGenValueFermi__theta_fermi__value_min - -value_min + +value_min - + KSGenValueFermi__theta_fermi->KSGenValueFermi__theta_fermi__value_min - - + + - + KSGenValueFermi__theta_fermi__value_tau - -value_tau + +value_tau - + KSGenValueFermi__theta_fermi->KSGenValueFermi__theta_fermi__value_tau - - + + - + KSGenValueFermi__theta_fermi__value_temp - -value_temp + +value_temp - + KSGenValueFermi__theta_fermi->KSGenValueFermi__theta_fermi__value_temp - - + + - + KSGenValueFix__theta_fix__name - -name + +name - + KSGenValueFix__theta_fix->KSGenValueFix__theta_fix__name - - + + - + KSGenValueFix__theta_fix__value - -value + +value - + KSGenValueFix__theta_fix->KSGenValueFix__theta_fix__value - - + + - + KSGenValueFormula__theta_formula__name - -name + +name - + KSGenValueFormula__theta_formula->KSGenValueFormula__theta_formula__name - - + + - + KSGenValueFormula__theta_formula__value_formula - -value_formula + +value_formula - + KSGenValueFormula__theta_formula->KSGenValueFormula__theta_formula__value_formula - - + + - + KSGenValueFormula__theta_formula__value_max - -value_max + +value_max - + KSGenValueFormula__theta_formula->KSGenValueFormula__theta_formula__value_max - - + + - + KSGenValueFormula__theta_formula__value_min - -value_min + +value_min - + KSGenValueFormula__theta_formula->KSGenValueFormula__theta_formula__value_min - - + + - + KSGenValueGauss__theta_gauss__name - -name + +name - + KSGenValueGauss__theta_gauss->KSGenValueGauss__theta_gauss__name - - + + - + KSGenValueGauss__theta_gauss__value_max - -value_max + +value_max - + KSGenValueGauss__theta_gauss->KSGenValueGauss__theta_gauss__value_max - - + + - + KSGenValueGauss__theta_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGauss__theta_gauss->KSGenValueGauss__theta_gauss__value_mean - - + + - + KSGenValueGauss__theta_gauss__value_min - -value_min + +value_min - + KSGenValueGauss__theta_gauss->KSGenValueGauss__theta_gauss__value_min - - + + - + KSGenValueGauss__theta_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGauss__theta_gauss->KSGenValueGauss__theta_gauss__value_sigma - - + + - + KSGenValueGeneralizedGauss__theta_generalized_gauss__name - -name + +name - + KSGenValueGeneralizedGauss__theta_generalized_gauss->KSGenValueGeneralizedGauss__theta_generalized_gauss__name - - + + - + KSGenValueGeneralizedGauss__theta_generalized_gauss__value_max - -value_max + +value_max - + KSGenValueGeneralizedGauss__theta_generalized_gauss->KSGenValueGeneralizedGauss__theta_generalized_gauss__value_max - - + + - + KSGenValueGeneralizedGauss__theta_generalized_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGeneralizedGauss__theta_generalized_gauss->KSGenValueGeneralizedGauss__theta_generalized_gauss__value_mean - - + + - + KSGenValueGeneralizedGauss__theta_generalized_gauss__value_min - -value_min + +value_min - + KSGenValueGeneralizedGauss__theta_generalized_gauss->KSGenValueGeneralizedGauss__theta_generalized_gauss__value_min - - + + - + KSGenValueGeneralizedGauss__theta_generalized_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGeneralizedGauss__theta_generalized_gauss->KSGenValueGeneralizedGauss__theta_generalized_gauss__value_sigma - - + + - + KSGenValueGeneralizedGauss__theta_generalized_gauss__value_skew - -value_skew + +value_skew - + KSGenValueGeneralizedGauss__theta_generalized_gauss->KSGenValueGeneralizedGauss__theta_generalized_gauss__value_skew - - + + - + KSGenValueHistogram__theta_histogram__base - -base + +base - + KSGenValueHistogram__theta_histogram->KSGenValueHistogram__theta_histogram__base - - + + - + KSGenValueHistogram__theta_histogram__formula - -formula + +formula - + KSGenValueHistogram__theta_histogram->KSGenValueHistogram__theta_histogram__formula - - + + - + KSGenValueHistogram__theta_histogram__histogram - -histogram + +histogram - + KSGenValueHistogram__theta_histogram->KSGenValueHistogram__theta_histogram__histogram - - + + - + KSGenValueHistogram__theta_histogram__name - -name + +name - + KSGenValueHistogram__theta_histogram->KSGenValueHistogram__theta_histogram__name - - + + - + KSGenValueHistogram__theta_histogram__path - -path + +path - + KSGenValueHistogram__theta_histogram->KSGenValueHistogram__theta_histogram__path - - + + - + KSGenValueList__theta_list__add_value - -add_value + +add_value - + KSGenValueList__theta_list->KSGenValueList__theta_list__add_value - - + + - + KSGenValueList__theta_list__name - -name + +name - + KSGenValueList__theta_list->KSGenValueList__theta_list__name - - + + - + KSGenValueList__theta_list__randomize - -randomize + +randomize - + KSGenValueList__theta_list->KSGenValueList__theta_list__randomize - - + + - + KSGenValueSet__theta_set__name - -name + +name - + KSGenValueSet__theta_set->KSGenValueSet__theta_set__name - - + + - + KSGenValueSet__theta_set__value_count - -value_count + +value_count - + KSGenValueSet__theta_set->KSGenValueSet__theta_set__value_count - - + + - + KSGenValueSet__theta_set__value_increment - -value_increment + +value_increment - + KSGenValueSet__theta_set->KSGenValueSet__theta_set__value_increment - - + + - + KSGenValueSet__theta_set__value_start - -value_start + +value_start - + KSGenValueSet__theta_set->KSGenValueSet__theta_set__value_start - - + + - + KSGenValueSet__theta_set__value_stop - -value_stop + +value_stop - + KSGenValueSet__theta_set->KSGenValueSet__theta_set__value_stop - - + + - + KSGenValueAngleSpherical__theta_spherical__angle_max - -angle_max + +angle_max - + KSGenValueAngleSpherical__theta_spherical->KSGenValueAngleSpherical__theta_spherical__angle_max - - + + - + KSGenValueAngleSpherical__theta_spherical__angle_min - -angle_min + +angle_min - + KSGenValueAngleSpherical__theta_spherical->KSGenValueAngleSpherical__theta_spherical__angle_min - - + + - + KSGenValueAngleSpherical__theta_spherical__name - -name + +name - + KSGenValueAngleSpherical__theta_spherical->KSGenValueAngleSpherical__theta_spherical__name - - + + - + KSGenValueUniform__theta_uniform__name - -name + +name - + KSGenValueUniform__theta_uniform->KSGenValueUniform__theta_uniform__name - - + + - + KSGenValueUniform__theta_uniform__value_max - -value_max + +value_max - + KSGenValueUniform__theta_uniform->KSGenValueUniform__theta_uniform__value_max - - + + - + KSGenValueUniform__theta_uniform__value_min - -value_min + +value_min - + KSGenValueUniform__theta_uniform->KSGenValueUniform__theta_uniform__value_min - - + + - + KSGenValueBoltzmann__energy_boltzmann__name - -name + +name - + KSGenValueBoltzmann__energy_boltzmann->KSGenValueBoltzmann__energy_boltzmann__name - - + + - + KSGenValueBoltzmann__energy_boltzmann__unit_eV - -unit_eV + +unit_eV - + KSGenValueBoltzmann__energy_boltzmann->KSGenValueBoltzmann__energy_boltzmann__unit_eV - - + + - + KSGenValueBoltzmann__energy_boltzmann__value_kT - -value_kT + +value_kT - + KSGenValueBoltzmann__energy_boltzmann->KSGenValueBoltzmann__energy_boltzmann__value_kT - - + + - + KSGenValueBoltzmann__energy_boltzmann__value_mass - -value_mass + +value_mass - + KSGenValueBoltzmann__energy_boltzmann->KSGenValueBoltzmann__energy_boltzmann__value_mass - - + + - + KSGenValueFermi__energy_fermi__name - -name + +name - + KSGenValueFermi__energy_fermi->KSGenValueFermi__energy_fermi__name - - + + - + KSGenValueFermi__energy_fermi__value_max - -value_max + +value_max - + KSGenValueFermi__energy_fermi->KSGenValueFermi__energy_fermi__value_max - - + + - + KSGenValueFermi__energy_fermi__value_mean - -value_mean + +value_mean - + KSGenValueFermi__energy_fermi->KSGenValueFermi__energy_fermi__value_mean - - + + - + KSGenValueFermi__energy_fermi__value_min - -value_min + +value_min - + KSGenValueFermi__energy_fermi->KSGenValueFermi__energy_fermi__value_min - - + + - + KSGenValueFermi__energy_fermi__value_tau - -value_tau + +value_tau - + KSGenValueFermi__energy_fermi->KSGenValueFermi__energy_fermi__value_tau - - + + - + KSGenValueFermi__energy_fermi__value_temp - -value_temp + +value_temp - + KSGenValueFermi__energy_fermi->KSGenValueFermi__energy_fermi__value_temp - - + + - + KSGenValueFix__energy_fix__name - -name + +name - + KSGenValueFix__energy_fix->KSGenValueFix__energy_fix__name - - + + - + KSGenValueFix__energy_fix__value - -value + +value - + KSGenValueFix__energy_fix->KSGenValueFix__energy_fix__value - - + + - + KSGenValueFormula__energy_formula__name - -name + +name - + KSGenValueFormula__energy_formula->KSGenValueFormula__energy_formula__name - - + + - + KSGenValueFormula__energy_formula__value_formula - -value_formula + +value_formula - + KSGenValueFormula__energy_formula->KSGenValueFormula__energy_formula__value_formula - - + + - + KSGenValueFormula__energy_formula__value_max - -value_max + +value_max - + KSGenValueFormula__energy_formula->KSGenValueFormula__energy_formula__value_max - - + + - + KSGenValueFormula__energy_formula__value_min - -value_min + +value_min - + KSGenValueFormula__energy_formula->KSGenValueFormula__energy_formula__value_min - - + + - + KSGenValueGauss__energy_gauss__name - -name + +name - + KSGenValueGauss__energy_gauss->KSGenValueGauss__energy_gauss__name - - + + - + KSGenValueGauss__energy_gauss__value_max - -value_max + +value_max - + KSGenValueGauss__energy_gauss->KSGenValueGauss__energy_gauss__value_max - - + + - + KSGenValueGauss__energy_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGauss__energy_gauss->KSGenValueGauss__energy_gauss__value_mean - - + + - + KSGenValueGauss__energy_gauss__value_min - -value_min + +value_min - + KSGenValueGauss__energy_gauss->KSGenValueGauss__energy_gauss__value_min - - + + - + KSGenValueGauss__energy_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGauss__energy_gauss->KSGenValueGauss__energy_gauss__value_sigma - - + + - + KSGenValueGeneralizedGauss__energy_generalized_gauss__name - -name + +name - + KSGenValueGeneralizedGauss__energy_generalized_gauss->KSGenValueGeneralizedGauss__energy_generalized_gauss__name - - + + - + KSGenValueGeneralizedGauss__energy_generalized_gauss__value_max - -value_max + +value_max - + KSGenValueGeneralizedGauss__energy_generalized_gauss->KSGenValueGeneralizedGauss__energy_generalized_gauss__value_max - - + + - + KSGenValueGeneralizedGauss__energy_generalized_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGeneralizedGauss__energy_generalized_gauss->KSGenValueGeneralizedGauss__energy_generalized_gauss__value_mean - - + + - + KSGenValueGeneralizedGauss__energy_generalized_gauss__value_min - -value_min + +value_min - + KSGenValueGeneralizedGauss__energy_generalized_gauss->KSGenValueGeneralizedGauss__energy_generalized_gauss__value_min - - + + - + KSGenValueGeneralizedGauss__energy_generalized_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGeneralizedGauss__energy_generalized_gauss->KSGenValueGeneralizedGauss__energy_generalized_gauss__value_sigma - - + + - + KSGenValueGeneralizedGauss__energy_generalized_gauss__value_skew - -value_skew + +value_skew - + KSGenValueGeneralizedGauss__energy_generalized_gauss->KSGenValueGeneralizedGauss__energy_generalized_gauss__value_skew - - + + - + KSGenValueHistogram__energy_histogram__base - -base + +base - + KSGenValueHistogram__energy_histogram->KSGenValueHistogram__energy_histogram__base - - + + - + KSGenValueHistogram__energy_histogram__formula - -formula + +formula - + KSGenValueHistogram__energy_histogram->KSGenValueHistogram__energy_histogram__formula - - + + - + KSGenValueHistogram__energy_histogram__histogram - -histogram + +histogram - + KSGenValueHistogram__energy_histogram->KSGenValueHistogram__energy_histogram__histogram - - + + - + KSGenValueHistogram__energy_histogram__name - -name + +name - + KSGenValueHistogram__energy_histogram->KSGenValueHistogram__energy_histogram__name - - + + - + KSGenValueHistogram__energy_histogram__path - -path + +path - + KSGenValueHistogram__energy_histogram->KSGenValueHistogram__energy_histogram__path - - + + - + KSGenValueList__energy_list__add_value - -add_value + +add_value - + KSGenValueList__energy_list->KSGenValueList__energy_list__add_value - - + + - + KSGenValueList__energy_list__name - -name + +name - + KSGenValueList__energy_list->KSGenValueList__energy_list__name - - + + - + KSGenValueList__energy_list__randomize - -randomize + +randomize - + KSGenValueList__energy_list->KSGenValueList__energy_list__randomize - - + + - + KSGenValueSet__energy_set__name - -name + +name - + KSGenValueSet__energy_set->KSGenValueSet__energy_set__name - - + + - + KSGenValueSet__energy_set__value_count - -value_count + +value_count - + KSGenValueSet__energy_set->KSGenValueSet__energy_set__value_count - - + + - + KSGenValueSet__energy_set__value_increment - -value_increment + +value_increment - + KSGenValueSet__energy_set->KSGenValueSet__energy_set__value_increment - - + + - + KSGenValueSet__energy_set__value_start - -value_start + +value_start - + KSGenValueSet__energy_set->KSGenValueSet__energy_set__value_start - - + + - + KSGenValueSet__energy_set__value_stop - -value_stop + +value_stop - + KSGenValueSet__energy_set->KSGenValueSet__energy_set__value_stop - - + + - + KSGenValueUniform__energy_uniform__name - -name + +name - + KSGenValueUniform__energy_uniform->KSGenValueUniform__energy_uniform__name - - + + - + KSGenValueUniform__energy_uniform__value_max - -value_max + +value_max - + KSGenValueUniform__energy_uniform->KSGenValueUniform__energy_uniform__value_max - - + + - + KSGenValueUniform__energy_uniform__value_min - -value_min + +value_min - + KSGenValueUniform__energy_uniform->KSGenValueUniform__energy_uniform__value_min - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueFermi__phi_fermi - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueFix__phi_fix - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueFormula__phi_formula - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueList__phi_list - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueSet__phi_set - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueAngleCosine__theta_cosine - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueFermi__theta_fermi - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueFix__theta_fix - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueFormula__theta_formula - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueGauss__theta_gauss - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueHistogram__theta_histogram - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueList__theta_list - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueSet__theta_set - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueAngleSpherical__theta_spherical - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueUniform__theta_uniform - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite__name - -name + +name - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenDirectionSphericalComposite__direction_spherical_composite__name - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite__phi - -phi + +phi - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenDirectionSphericalComposite__direction_spherical_composite__phi - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite__space - -space + +space - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenDirectionSphericalComposite__direction_spherical_composite__space - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite__surface - -surface + +surface - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenDirectionSphericalComposite__direction_spherical_composite__surface - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite__theta - -theta + +theta - + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenDirectionSphericalComposite__direction_spherical_composite__theta - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueFix__phi_fix - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueFormula__phi_formula - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueGauss__phi_gauss - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueHistogram__phi_histogram - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueList__phi_list - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueSet__phi_set - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueUniform__phi_uniform - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueAngleCosine__theta_cosine - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueFix__theta_fix - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueFormula__theta_formula - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueGauss__theta_gauss - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueHistogram__theta_histogram - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueList__theta_list - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueSet__theta_set - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueAngleSpherical__theta_spherical - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueUniform__theta_uniform - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field__magnetic_field_name - -magnetic_field_name + +magnetic_field_name - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field__magnetic_field_name - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field__name - -name + +name - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field__name - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field__phi - -phi + +phi - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field__phi - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field__theta - -theta + +theta - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field__theta - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueFermi__phi_fermi - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueFix__phi_fix - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueFormula__phi_formula - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueList__phi_list - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueSet__phi_set - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueAngleCosine__theta_cosine - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueFermi__theta_fermi - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueFix__theta_fix - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueFormula__theta_formula - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueGauss__theta_gauss - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueHistogram__theta_histogram - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueList__theta_list - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueSet__theta_set - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueAngleSpherical__theta_spherical - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueUniform__theta_uniform - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite__name - -name + +name - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenDirectionSurfaceComposite__direction_surface_composite__name - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite__outside - -outside + +outside - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenDirectionSurfaceComposite__direction_surface_composite__outside - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite__phi - -phi + +phi - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenDirectionSurfaceComposite__direction_surface_composite__phi - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite__surfaces - -surfaces + +surfaces - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenDirectionSurfaceComposite__direction_surface_composite__surfaces - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite__theta - -theta + +theta - + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenDirectionSurfaceComposite__direction_surface_composite__theta - - + + - + KSGenEnergyBetaDecay__energy_beta_decay__daughter_z - -daughter_z + +daughter_z - + KSGenEnergyBetaDecay__energy_beta_decay->KSGenEnergyBetaDecay__energy_beta_decay__daughter_z - - + + - + KSGenEnergyBetaDecay__energy_beta_decay__endpoint_ev - -endpoint_ev + +endpoint_ev - + KSGenEnergyBetaDecay__energy_beta_decay->KSGenEnergyBetaDecay__energy_beta_decay__endpoint_ev - - + + - + KSGenEnergyBetaDecay__energy_beta_decay__max_energy - -max_energy + +max_energy - + KSGenEnergyBetaDecay__energy_beta_decay->KSGenEnergyBetaDecay__energy_beta_decay__max_energy - - + + - + KSGenEnergyBetaDecay__energy_beta_decay__min_energy - -min_energy + +min_energy - + KSGenEnergyBetaDecay__energy_beta_decay->KSGenEnergyBetaDecay__energy_beta_decay__min_energy - - + + - + KSGenEnergyBetaDecay__energy_beta_decay__mnu_ev - -mnu_ev + +mnu_ev - + KSGenEnergyBetaDecay__energy_beta_decay->KSGenEnergyBetaDecay__energy_beta_decay__mnu_ev - - + + - + KSGenEnergyBetaDecay__energy_beta_decay__name - -name + +name - + KSGenEnergyBetaDecay__energy_beta_decay->KSGenEnergyBetaDecay__energy_beta_decay__name - - + + - + KSGenEnergyBetaDecay__energy_beta_decay__nmax - -nmax + +nmax - + KSGenEnergyBetaDecay__energy_beta_decay->KSGenEnergyBetaDecay__energy_beta_decay__nmax - - + + - + KSGenEnergyBetaRecoil__energy_beta_recoil__max_energy - -max_energy + +max_energy - + KSGenEnergyBetaRecoil__energy_beta_recoil->KSGenEnergyBetaRecoil__energy_beta_recoil__max_energy - - + + - + KSGenEnergyBetaRecoil__energy_beta_recoil__min_energy - -min_energy + +min_energy - + KSGenEnergyBetaRecoil__energy_beta_recoil->KSGenEnergyBetaRecoil__energy_beta_recoil__min_energy - - + + - + KSGenEnergyBetaRecoil__energy_beta_recoil__name - -name + +name - + KSGenEnergyBetaRecoil__energy_beta_recoil->KSGenEnergyBetaRecoil__energy_beta_recoil__name - - + + - + KSGenEnergyComposite__energy_composite->KSGenValueBoltzmann__energy_boltzmann - - + + - + KSGenEnergyComposite__energy_composite->KSGenValueFermi__energy_fermi - - + + - + KSGenEnergyComposite__energy_composite->KSGenValueFix__energy_fix - - + + - + KSGenEnergyComposite__energy_composite->KSGenValueFormula__energy_formula - - + + - + KSGenEnergyComposite__energy_composite->KSGenValueGauss__energy_gauss - - + + - + KSGenEnergyComposite__energy_composite->KSGenValueGeneralizedGauss__energy_generalized_gauss - - + + - + KSGenEnergyComposite__energy_composite->KSGenValueHistogram__energy_histogram - - + + - + KSGenEnergyComposite__energy_composite->KSGenValueList__energy_list - - + + - + KSGenEnergyComposite__energy_composite->KSGenValueSet__energy_set - - + + - + KSGenEnergyComposite__energy_composite->KSGenValueUniform__energy_uniform - - + + - + KSGenEnergyComposite__energy_composite__energy - -energy + +energy - + KSGenEnergyComposite__energy_composite->KSGenEnergyComposite__energy_composite__energy - - + + - + KSGenEnergyComposite__energy_composite__name - -name + +name - + KSGenEnergyComposite__energy_composite->KSGenEnergyComposite__energy_composite__name - - + + - + KSGenEnergyKryptonEvent__energy_krypton_event__do_auger - -do_auger + +do_auger - + KSGenEnergyKryptonEvent__energy_krypton_event->KSGenEnergyKryptonEvent__energy_krypton_event__do_auger - - + + - + KSGenEnergyKryptonEvent__energy_krypton_event__do_conversion - -do_conversion + +do_conversion - + KSGenEnergyKryptonEvent__energy_krypton_event->KSGenEnergyKryptonEvent__energy_krypton_event__do_conversion - - + + - + KSGenEnergyKryptonEvent__energy_krypton_event__force_conversion - -force_conversion + +force_conversion - + KSGenEnergyKryptonEvent__energy_krypton_event->KSGenEnergyKryptonEvent__energy_krypton_event__force_conversion - - + + - + KSGenEnergyKryptonEvent__energy_krypton_event__name - -name + +name - + KSGenEnergyKryptonEvent__energy_krypton_event->KSGenEnergyKryptonEvent__energy_krypton_event__name - - + + - + KSGenEnergyLeadEvent__energy_lead_event__do_auger - -do_auger + +do_auger - + KSGenEnergyLeadEvent__energy_lead_event->KSGenEnergyLeadEvent__energy_lead_event__do_auger - - + + - + KSGenEnergyLeadEvent__energy_lead_event__do_conversion - -do_conversion + +do_conversion - + KSGenEnergyLeadEvent__energy_lead_event->KSGenEnergyLeadEvent__energy_lead_event__do_conversion - - + + - + KSGenEnergyLeadEvent__energy_lead_event__force_conversion - -force_conversion + +force_conversion - + KSGenEnergyLeadEvent__energy_lead_event->KSGenEnergyLeadEvent__energy_lead_event__force_conversion - - + + - + KSGenEnergyLeadEvent__energy_lead_event__name - -name + +name - + KSGenEnergyLeadEvent__energy_lead_event->KSGenEnergyLeadEvent__energy_lead_event__name - - + + - + KSGenEnergyRadonEvent__energy_radon_event__do_auger - -do_auger + +do_auger - + KSGenEnergyRadonEvent__energy_radon_event->KSGenEnergyRadonEvent__energy_radon_event__do_auger - - + + - + KSGenEnergyRadonEvent__energy_radon_event__do_conversion - -do_conversion + +do_conversion - + KSGenEnergyRadonEvent__energy_radon_event->KSGenEnergyRadonEvent__energy_radon_event__do_conversion - - + + - + KSGenEnergyRadonEvent__energy_radon_event__do_shake_off - -do_shake_off + +do_shake_off - + KSGenEnergyRadonEvent__energy_radon_event->KSGenEnergyRadonEvent__energy_radon_event__do_shake_off - - + + - + KSGenEnergyRadonEvent__energy_radon_event__force_conversion - -force_conversion + +force_conversion - + KSGenEnergyRadonEvent__energy_radon_event->KSGenEnergyRadonEvent__energy_radon_event__force_conversion - - + + - + KSGenEnergyRadonEvent__energy_radon_event__force_shake_off - -force_shake_off + +force_shake_off - + KSGenEnergyRadonEvent__energy_radon_event->KSGenEnergyRadonEvent__energy_radon_event__force_shake_off - - + + - + KSGenEnergyRadonEvent__energy_radon_event__isotope_number - -isotope_number + +isotope_number - + KSGenEnergyRadonEvent__energy_radon_event->KSGenEnergyRadonEvent__energy_radon_event__isotope_number - - + + - + KSGenEnergyRadonEvent__energy_radon_event__name - -name + +name - + KSGenEnergyRadonEvent__energy_radon_event->KSGenEnergyRadonEvent__energy_radon_event__name - - + + - + KSGenEnergyRydberg__energy_rydberg__deposited_energy - -deposited_energy + +deposited_energy - + KSGenEnergyRydberg__energy_rydberg->KSGenEnergyRydberg__energy_rydberg__deposited_energy - - + + - + KSGenEnergyRydberg__energy_rydberg__ionization_energy - -ionization_energy + +ionization_energy - + KSGenEnergyRydberg__energy_rydberg->KSGenEnergyRydberg__energy_rydberg__ionization_energy - - + + - + KSGenEnergyRydberg__energy_rydberg__name - -name + +name - + KSGenEnergyRydberg__energy_rydberg->KSGenEnergyRydberg__energy_rydberg__name - - + + - + KSGenLComposite__l_composite__l_value - -l_value + +l_value - + KSGenLComposite__l_composite->KSGenLComposite__l_composite__l_value - - + + - + KSGenLComposite__l_composite__name - -name + +name - + KSGenLComposite__l_composite->KSGenLComposite__l_composite__name - - + + - + KSGenLComposite__l_composite->KSGenValueFix__l_fix - - + + - + KSGenLComposite__l_composite->KSGenValueFormula__l_formula - - + + - + KSGenLComposite__l_composite->KSGenValueGauss__l_gauss - - + + - + KSGenLComposite__l_composite->KSGenValueList__l_list - - + + - + KSGenLComposite__l_composite->KSGenValueSet__l_set - - + + - + KSGenLComposite__l_composite->KSGenValueUniform__l_uniform - - + + - + KSGenLStatistical__l_statistical__name - -name + +name - + KSGenLStatistical__l_statistical->KSGenLStatistical__l_statistical__name - - + + - + KSGenLUniformMaxN__l_uniform_max_n__name - -name + +name - + KSGenLUniformMaxN__l_uniform_max_n->KSGenLUniformMaxN__l_uniform_max_n__name - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite__name - -name + +name - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenMomentumRectangularComposite__momentum_rectangular_composite__name - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite__space - -space + +space - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenMomentumRectangularComposite__momentum_rectangular_composite__space - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite__surface - -surface + +surface - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenMomentumRectangularComposite__momentum_rectangular_composite__surface - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite__x - -x + +x - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenMomentumRectangularComposite__momentum_rectangular_composite__x - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite__y - -y + +y - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenMomentumRectangularComposite__momentum_rectangular_composite__y - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite__z - -z + +z - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenMomentumRectangularComposite__momentum_rectangular_composite__z - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueFix__x_fix - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueFormula__x_formula - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueGauss__x_gauss - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueHistogram__x_histogram - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueList__x_list - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueSet__x_set - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueUniform__x_uniform - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueFix__y_fix - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueFormula__y_formula - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueGauss__y_gauss - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueHistogram__y_histogram - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueList__y_list - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueSet__y_set - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueUniform__y_uniform - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueFix__z_fix - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueFormula__z_formula - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueGauss__z_gauss - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueHistogram__z_histogram - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueList__z_list - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueSet__z_set - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueUniform__z_uniform - - + + - + KSGenNComposite__n_composite__n_value - -n_value + +n_value - + KSGenNComposite__n_composite->KSGenNComposite__n_composite__n_value - - + + - + KSGenNComposite__n_composite__name - -name + +name - + KSGenNComposite__n_composite->KSGenNComposite__n_composite__name - - + + - + KSGenNComposite__n_composite->KSGenValueFix__n_fix - - + + - + KSGenNComposite__n_composite->KSGenValueFormula__n_formula - - + + - + KSGenNComposite__n_composite->KSGenValueGauss__n_gauss - - + + - + KSGenNComposite__n_composite->KSGenValueList__n_list - - + + - + KSGenNComposite__n_composite->KSGenValuePareto__n_pareto - - + + - + KSGenNComposite__n_composite->KSGenValueSet__n_set - - + + - + KSGenNComposite__n_composite->KSGenValueUniform__n_uniform - - + + - + KSGenValueFix__pid_fix__name - -name + +name - + KSGenValueFix__pid_fix->KSGenValueFix__pid_fix__name - - + + - + KSGenValueFix__pid_fix__value - -value + +value - + KSGenValueFix__pid_fix->KSGenValueFix__pid_fix__value - - + + - + KSGenValueFormula__pid_formula__name - -name + +name - + KSGenValueFormula__pid_formula->KSGenValueFormula__pid_formula__name - - + + - + KSGenValueFormula__pid_formula__value_formula - -value_formula + +value_formula - + KSGenValueFormula__pid_formula->KSGenValueFormula__pid_formula__value_formula - - + + - + KSGenValueFormula__pid_formula__value_max - -value_max + +value_max - + KSGenValueFormula__pid_formula->KSGenValueFormula__pid_formula__value_max - - + + - + KSGenValueFormula__pid_formula__value_min - -value_min + +value_min - + KSGenValueFormula__pid_formula->KSGenValueFormula__pid_formula__value_min - - + + - + KSGenValueGauss__pid_gauss__name - -name + +name - + KSGenValueGauss__pid_gauss->KSGenValueGauss__pid_gauss__name - - + + - + KSGenValueGauss__pid_gauss__value_max - -value_max + +value_max - + KSGenValueGauss__pid_gauss->KSGenValueGauss__pid_gauss__value_max - - + + - + KSGenValueGauss__pid_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGauss__pid_gauss->KSGenValueGauss__pid_gauss__value_mean - - + + - + KSGenValueGauss__pid_gauss__value_min - -value_min + +value_min - + KSGenValueGauss__pid_gauss->KSGenValueGauss__pid_gauss__value_min - - + + - + KSGenValueGauss__pid_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGauss__pid_gauss->KSGenValueGauss__pid_gauss__value_sigma - - + + - + KSGenValueHistogram__pid_histogram__base - -base + +base - + KSGenValueHistogram__pid_histogram->KSGenValueHistogram__pid_histogram__base - - + + - + KSGenValueHistogram__pid_histogram__formula - -formula + +formula - + KSGenValueHistogram__pid_histogram->KSGenValueHistogram__pid_histogram__formula - - + + - + KSGenValueHistogram__pid_histogram__histogram - -histogram + +histogram - + KSGenValueHistogram__pid_histogram->KSGenValueHistogram__pid_histogram__histogram - - + + - + KSGenValueHistogram__pid_histogram__name - -name + +name - + KSGenValueHistogram__pid_histogram->KSGenValueHistogram__pid_histogram__name - - + + - + KSGenValueHistogram__pid_histogram__path - -path + +path - + KSGenValueHistogram__pid_histogram->KSGenValueHistogram__pid_histogram__path - - + + - + KSGenValueList__pid_list__add_value - -add_value + +add_value - + KSGenValueList__pid_list->KSGenValueList__pid_list__add_value - - + + - + KSGenValueList__pid_list__name - -name + +name - + KSGenValueList__pid_list->KSGenValueList__pid_list__name - - + + - + KSGenValueList__pid_list__randomize - -randomize + +randomize - + KSGenValueList__pid_list->KSGenValueList__pid_list__randomize - - + + - + KSGenValuePareto__pid_pareto__cutoff - -cutoff + +cutoff - + KSGenValuePareto__pid_pareto->KSGenValuePareto__pid_pareto__cutoff - - + + - + KSGenValuePareto__pid_pareto__name - -name + +name - + KSGenValuePareto__pid_pareto->KSGenValuePareto__pid_pareto__name - - + + - + KSGenValuePareto__pid_pareto__offset - -offset + +offset - + KSGenValuePareto__pid_pareto->KSGenValuePareto__pid_pareto__offset - - + + - + KSGenValuePareto__pid_pareto__slope - -slope + +slope - + KSGenValuePareto__pid_pareto->KSGenValuePareto__pid_pareto__slope - - + + - + KSGenValuePareto__pid_pareto__value_max - -value_max + +value_max - + KSGenValuePareto__pid_pareto->KSGenValuePareto__pid_pareto__value_max - - + + - + KSGenValuePareto__pid_pareto__value_min - -value_min + +value_min - + KSGenValuePareto__pid_pareto->KSGenValuePareto__pid_pareto__value_min - - + + - + KSGenValueSet__pid_set__name - -name + +name - + KSGenValueSet__pid_set->KSGenValueSet__pid_set__name - - + + - + KSGenValueSet__pid_set__value_count - -value_count + +value_count - + KSGenValueSet__pid_set->KSGenValueSet__pid_set__value_count - - + + - + KSGenValueSet__pid_set__value_increment - -value_increment + +value_increment - + KSGenValueSet__pid_set->KSGenValueSet__pid_set__value_increment - - + + - + KSGenValueSet__pid_set__value_start - -value_start + +value_start - + KSGenValueSet__pid_set->KSGenValueSet__pid_set__value_start - - + + - + KSGenValueSet__pid_set__value_stop - -value_stop + +value_stop - + KSGenValueSet__pid_set->KSGenValueSet__pid_set__value_stop - - + + - + KSGenValueUniform__pid_uniform__name - -name + +name - + KSGenValueUniform__pid_uniform->KSGenValueUniform__pid_uniform__name - - + + - + KSGenValueUniform__pid_uniform__value_max - -value_max + +value_max - + KSGenValueUniform__pid_uniform->KSGenValueUniform__pid_uniform__value_max - - + + - + KSGenValueUniform__pid_uniform__value_min - -value_min + +value_min - + KSGenValueUniform__pid_uniform->KSGenValueUniform__pid_uniform__value_min - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueFix__phi_fix - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueFormula__phi_formula - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueList__phi_list - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueSet__phi_set - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueFix__z_fix - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueFormula__z_formula - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueGauss__z_gauss - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueHistogram__z_histogram - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueList__z_list - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueSet__z_set - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueUniform__z_uniform - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite__name - -name + +name - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenPositionCylindricalComposite__position_cylindrical_composite__name - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite__phi - -phi + +phi - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenPositionCylindricalComposite__position_cylindrical_composite__phi - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite__r - -r + +r - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenPositionCylindricalComposite__position_cylindrical_composite__r - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite__space - -space + +space - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenPositionCylindricalComposite__position_cylindrical_composite__space - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite__surface - -surface + +surface - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenPositionCylindricalComposite__position_cylindrical_composite__surface - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite__z - -z + +z - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenPositionCylindricalComposite__position_cylindrical_composite__z - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueRadiusCylindrical__r_cylindrical - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueFix__r_fix - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueFormula__r_formula - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueRadiusFraction__r_fraction - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueGauss__r_gauss - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueHistogram__r_histogram - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueList__r_list - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueSet__r_set - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueUniform__r_uniform - - + + - + KSGenPositionFluxTube__position_flux_tube->KSGenValueFix__phi_fix - - + + - + KSGenPositionFluxTube__position_flux_tube->KSGenValueGauss__phi_gauss - - + + - + KSGenPositionFluxTube__position_flux_tube->KSGenValueSet__phi_set - - + + - + KSGenPositionFluxTube__position_flux_tube->KSGenValueUniform__phi_uniform - - + + - + KSGenPositionFluxTube__position_flux_tube->KSGenValueFix__z_fix - - + + - + KSGenPositionFluxTube__position_flux_tube->KSGenValueFormula__z_formula - - + + - + KSGenPositionFluxTube__position_flux_tube->KSGenValueGauss__z_gauss - - + + - + KSGenPositionFluxTube__position_flux_tube->KSGenValueSet__z_set - - + + - + KSGenPositionFluxTube__position_flux_tube->KSGenValueUniform__z_uniform - - + + - + KSGenPositionFluxTube__position_flux_tube->KSGenValueFormula__r_formula - - + + - + KSGenPositionFluxTube__position_flux_tube__flux - -flux + +flux - + KSGenPositionFluxTube__position_flux_tube->KSGenPositionFluxTube__position_flux_tube__flux - - + + - + KSGenPositionFluxTube__position_flux_tube__magnetic_field_name - -magnetic_field_name + +magnetic_field_name - + KSGenPositionFluxTube__position_flux_tube->KSGenPositionFluxTube__position_flux_tube__magnetic_field_name - - + + - + KSGenPositionFluxTube__position_flux_tube__n_integration_step - -n_integration_step + +n_integration_step - + KSGenPositionFluxTube__position_flux_tube->KSGenPositionFluxTube__position_flux_tube__n_integration_step - - + + - + KSGenPositionFluxTube__position_flux_tube__name - -name + +name - + KSGenPositionFluxTube__position_flux_tube->KSGenPositionFluxTube__position_flux_tube__name - - + + - + KSGenPositionFluxTube__position_flux_tube__only_surface - -only_surface + +only_surface - + KSGenPositionFluxTube__position_flux_tube->KSGenPositionFluxTube__position_flux_tube__only_surface - - + + - + KSGenPositionFluxTube__position_flux_tube__phi - -phi + +phi - + KSGenPositionFluxTube__position_flux_tube->KSGenPositionFluxTube__position_flux_tube__phi - - + + - + KSGenPositionFluxTube__position_flux_tube__space - -space + +space - + KSGenPositionFluxTube__position_flux_tube->KSGenPositionFluxTube__position_flux_tube__space - - + + - + KSGenPositionFluxTube__position_flux_tube__surface - -surface + +surface - + KSGenPositionFluxTube__position_flux_tube->KSGenPositionFluxTube__position_flux_tube__surface - - + + - + KSGenPositionFluxTube__position_flux_tube__z - -z + +z - + KSGenPositionFluxTube__position_flux_tube->KSGenPositionFluxTube__position_flux_tube__z - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__phi_fix - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFormula__phi_formula - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueList__phi_list - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueSet__phi_set - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__z_fix - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFormula__z_formula - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueGauss__z_gauss - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueHistogram__z_histogram - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueList__z_list - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueSet__z_set - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueUniform__z_uniform - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueRadiusCylindrical__r_cylindrical - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__r_fix - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFormula__r_formula - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueRadiusFraction__r_fraction - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueGauss__r_gauss - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueHistogram__r_histogram - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueList__r_list - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueSet__r_set - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueUniform__r_uniform - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite__name - -name + +name - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenPositionFrustrumComposite__position_frustrum_composite__name - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite__phi - -phi + +phi - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenPositionFrustrumComposite__position_frustrum_composite__phi - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite__r - -r + +r - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenPositionFrustrumComposite__position_frustrum_composite__r - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite__r1 - -r1 + +r1 - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenPositionFrustrumComposite__position_frustrum_composite__r1 - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite__r2 - -r2 + +r2 - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenPositionFrustrumComposite__position_frustrum_composite__r2 - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite__space - -space + +space - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenPositionFrustrumComposite__position_frustrum_composite__space - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite__surface - -surface + +surface - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenPositionFrustrumComposite__position_frustrum_composite__surface - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite__z - -z + +z - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenPositionFrustrumComposite__position_frustrum_composite__z - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite__z1 - -z1 + +z1 - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenPositionFrustrumComposite__position_frustrum_composite__z1 - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite__z2 - -z2 + +z2 - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenPositionFrustrumComposite__position_frustrum_composite__z2 - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__r1_fix - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__r2_fix - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__z1_fix - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__z2_fix - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueZFrustrum__z_frustrum - - + + - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__flux - -flux + +flux - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__flux - - + + - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__magnetic_field_name - -magnetic_field_name + +magnetic_field_name - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__magnetic_field_name - - + + - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__n_integration_step - -n_integration_step + +n_integration_step - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__n_integration_step - - + + - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__name - -name + +name - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__name - - + + - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__phi_max - -phi_max + +phi_max - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__phi_max - - + + - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__phi_min - -phi_min + +phi_min - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__phi_min - - + + - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__r_max - -r_max + +r_max - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__r_max - - + + - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__z_max - -z_max + +z_max - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__z_max - - + + - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__z_min - -z_min + +z_min - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube->KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube__z_min - - + + - + KSGenPositionMask__position_mask->KSGenPositionCylindricalComposite__position_cylindrical_composite - - + + - + KSGenPositionMask__position_mask->KSGenPositionMeshSurfaceRandom__position_mesh_surface_random - - + + - + KSGenPositionMask__position_mask->KSGenPositionRectangularComposite__position_rectangular_composite - - + + - + KSGenPositionMask__position_mask->KSGenPositionSpaceRandom__position_space_random - - + + - + KSGenPositionMask__position_mask->KSGenPositionSphericalComposite__position_spherical_composite - - + + - + KSGenPositionMask__position_mask__max_retries - -max_retries + +max_retries - + KSGenPositionMask__position_mask->KSGenPositionMask__position_mask__max_retries - - + + - + KSGenPositionMask__position_mask__name - -name + +name - + KSGenPositionMask__position_mask->KSGenPositionMask__position_mask__name - - + + - + KSGenPositionMask__position_mask__spaces_allowed - -spaces_allowed + +spaces_allowed - + KSGenPositionMask__position_mask->KSGenPositionMask__position_mask__spaces_allowed - - + + - + KSGenPositionMask__position_mask__spaces_forbidden - -spaces_forbidden + +spaces_forbidden - + KSGenPositionMask__position_mask->KSGenPositionMask__position_mask__spaces_forbidden - - + + - + KSGenPositionMask__position_mask->KSGenPositionSurfaceRandom __position_surface_random - - + + - + KSGenPositionMeshSurfaceRandom__position_mesh_surface_random__name - -name + +name - + KSGenPositionMeshSurfaceRandom__position_mesh_surface_random->KSGenPositionMeshSurfaceRandom__position_mesh_surface_random__name - - + + - + KSGenPositionMeshSurfaceRandom__position_mesh_surface_random__surfaces - -surfaces + +surfaces - + KSGenPositionMeshSurfaceRandom__position_mesh_surface_random->KSGenPositionMeshSurfaceRandom__position_mesh_surface_random__surfaces - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueFix__x_fix - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueFormula__x_formula - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueGauss__x_gauss - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueHistogram__x_histogram - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueList__x_list - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueSet__x_set - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueUniform__x_uniform - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueFix__y_fix - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueFormula__y_formula - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueGauss__y_gauss - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueHistogram__y_histogram - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueList__y_list - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueSet__y_set - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueUniform__y_uniform - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueFix__z_fix - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueFormula__z_formula - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueGauss__z_gauss - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueHistogram__z_histogram - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueList__z_list - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueSet__z_set - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueUniform__z_uniform - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite__name - -name + +name - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenPositionRectangularComposite__position_rectangular_composite__name - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite__space - -space + +space - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenPositionRectangularComposite__position_rectangular_composite__space - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite__surface - -surface + +surface - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenPositionRectangularComposite__position_rectangular_composite__surface - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite__x - -x + +x - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenPositionRectangularComposite__position_rectangular_composite__x - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite__y - -y + +y - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenPositionRectangularComposite__position_rectangular_composite__y - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite__z - -z + +z - + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenPositionRectangularComposite__position_rectangular_composite__z - - + + - + KSGenPositionSpaceRandom__position_space_random__name - -name + +name - + KSGenPositionSpaceRandom__position_space_random->KSGenPositionSpaceRandom__position_space_random__name - - + + - + KSGenPositionSpaceRandom__position_space_random__spaces - -spaces + +spaces - + KSGenPositionSpaceRandom__position_space_random->KSGenPositionSpaceRandom__position_space_random__spaces - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueFix__phi_fix - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueFormula__phi_formula - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueList__phi_list - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueSet__phi_set - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueFix__theta_fix - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueFormula__theta_formula - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueGauss__theta_gauss - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueHistogram__theta_histogram - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueList__theta_list - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueSet__theta_set - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueAngleSpherical__theta_spherical - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueUniform__theta_uniform - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueFix__r_fix - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueFormula__r_formula - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueGauss__r_gauss - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueHistogram__r_histogram - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueList__r_list - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueSet__r_set - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueUniform__r_uniform - - + + - + KSGenPositionSphericalComposite__position_spherical_composite__name - -name + +name - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenPositionSphericalComposite__position_spherical_composite__name - - + + - + KSGenPositionSphericalComposite__position_spherical_composite__phi - -phi + +phi - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenPositionSphericalComposite__position_spherical_composite__phi - - + + - + KSGenPositionSphericalComposite__position_spherical_composite__r - -r + +r - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenPositionSphericalComposite__position_spherical_composite__r - - + + - + KSGenPositionSphericalComposite__position_spherical_composite__space - -space + +space - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenPositionSphericalComposite__position_spherical_composite__space - - + + - + KSGenPositionSphericalComposite__position_spherical_composite__surface - -surface + +surface - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenPositionSphericalComposite__position_spherical_composite__surface - - + + - + KSGenPositionSphericalComposite__position_spherical_composite__theta - -theta + +theta - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenPositionSphericalComposite__position_spherical_composite__theta - - + + - + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueRadiusSpherical__r_spherical - - + + - + KSGenPositionSurfaceAdjustmentStep__position_surface_adjustment_step__length - -length + +length - + KSGenPositionSurfaceAdjustmentStep__position_surface_adjustment_step->KSGenPositionSurfaceAdjustmentStep__position_surface_adjustment_step__length - - + + - + KSGenPositionSurfaceAdjustmentStep__position_surface_adjustment_step__name - -name + +name - + KSGenPositionSurfaceAdjustmentStep__position_surface_adjustment_step->KSGenPositionSurfaceAdjustmentStep__position_surface_adjustment_step__name - - + + - + KSGenPositionSurfaceRandom__position_surface_random__name - -name + +name - + KSGenPositionSurfaceRandom__position_surface_random->KSGenPositionSurfaceRandom__position_surface_random__name - - + + - + KSGenPositionSurfaceRandom__position_surface_random__surfaces - -surfaces + +surfaces - + KSGenPositionSurfaceRandom__position_surface_random->KSGenPositionSurfaceRandom__position_surface_random__surfaces - - + + - + KSGenSpinComposite__spin_composite->KSGenValueFix__phi_fix - - + + - + KSGenSpinComposite__spin_composite->KSGenValueFormula__phi_formula - - + + - + KSGenSpinComposite__spin_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenSpinComposite__spin_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + - + KSGenSpinComposite__spin_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenSpinComposite__spin_composite->KSGenValueList__phi_list - - + + - + KSGenSpinComposite__spin_composite->KSGenValueSet__phi_set - - + + - + KSGenSpinComposite__spin_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenSpinComposite__spin_composite->KSGenValueAngleCosine__theta_cosine - - + + - + KSGenSpinComposite__spin_composite->KSGenValueFix__theta_fix - - + + - + KSGenSpinComposite__spin_composite->KSGenValueFormula__theta_formula - - + + - + KSGenSpinComposite__spin_composite->KSGenValueGauss__theta_gauss - - + + - + KSGenSpinComposite__spin_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + - + KSGenSpinComposite__spin_composite->KSGenValueHistogram__theta_histogram - - + + - + KSGenSpinComposite__spin_composite->KSGenValueList__theta_list - - + + - + KSGenSpinComposite__spin_composite->KSGenValueSet__theta_set - - + + - + KSGenSpinComposite__spin_composite->KSGenValueAngleSpherical__theta_spherical - - + + - + KSGenSpinComposite__spin_composite->KSGenValueUniform__theta_uniform - - + + - + KSGenSpinComposite__spin_composite__name - -name + +name - + KSGenSpinComposite__spin_composite->KSGenSpinComposite__spin_composite__name - - + + - + KSGenSpinComposite__spin_composite__phi - -phi + +phi - + KSGenSpinComposite__spin_composite->KSGenSpinComposite__spin_composite__phi - - + + - + KSGenSpinComposite__spin_composite__space - -space + +space - + KSGenSpinComposite__spin_composite->KSGenSpinComposite__spin_composite__space - - + + - + KSGenSpinComposite__spin_composite__surface - -surface + +surface - + KSGenSpinComposite__spin_composite->KSGenSpinComposite__spin_composite__surface - - + + - + KSGenSpinComposite__spin_composite__theta - -theta + +theta - + KSGenSpinComposite__spin_composite->KSGenSpinComposite__spin_composite__theta - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueFix__phi_fix - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueFormula__phi_formula - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueList__phi_list - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueSet__phi_set - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueAngleCosine__theta_cosine - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueFix__theta_fix - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueFormula__theta_formula - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueGauss__theta_gauss - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueHistogram__theta_histogram - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueList__theta_list - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueSet__theta_set - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueAngleSpherical__theta_spherical - - + + - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueUniform__theta_uniform - - + + - + KSGenSpinRelativeComposite__spin_relative_composite__name - -name + +name - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenSpinRelativeComposite__spin_relative_composite__name - - + + - + KSGenSpinRelativeComposite__spin_relative_composite__phi - -phi + +phi - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenSpinRelativeComposite__spin_relative_composite__phi - - + + - + KSGenSpinRelativeComposite__spin_relative_composite__space - -space + +space - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenSpinRelativeComposite__spin_relative_composite__space - - + + - + KSGenSpinRelativeComposite__spin_relative_composite__surface - -surface + +surface - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenSpinRelativeComposite__spin_relative_composite__surface - - + + - + KSGenSpinRelativeComposite__spin_relative_composite__theta - -theta + +theta - + KSGenSpinRelativeComposite__spin_relative_composite->KSGenSpinRelativeComposite__spin_relative_composite__theta - - + + - + KSGenTimeComposite__time_composite__name - -name + +name - + KSGenTimeComposite__time_composite->KSGenTimeComposite__time_composite__name - - + + - + KSGenTimeComposite__time_composite__time_value - -time_value + +time_value - + KSGenTimeComposite__time_composite->KSGenTimeComposite__time_composite__time_value - - + + - + KSGenTimeComposite__time_composite->KSGenValueFermi__time_fermi - - + + - + KSGenTimeComposite__time_composite->KSGenValueFix__time_fix - - + + - + KSGenTimeComposite__time_composite->KSGenValueFormula__time_formula - - + + - + KSGenTimeComposite__time_composite->KSGenValueGauss__time_gauss - - + + - + KSGenTimeComposite__time_composite->KSGenValueGeneralizedGauss__time_generalized_gauss - - + + - + KSGenTimeComposite__time_composite->KSGenValueHistogram__time_histogram - - + + - + KSGenTimeComposite__time_composite->KSGenValueList__time_list - - + + - + KSGenTimeComposite__time_composite->KSGenValueSet__time_set - - + + - + KSGenTimeComposite__time_composite->KSGenValueUniform__time_uniform - - + + - + KSGenValueFix__l_fix__name - -name + +name - + KSGenValueFix__l_fix->KSGenValueFix__l_fix__name - - + + - + KSGenValueFix__l_fix__value - -value + +value - + KSGenValueFix__l_fix->KSGenValueFix__l_fix__value - - + + - + KSGenValueFormula__l_formula__name - -name + +name - + KSGenValueFormula__l_formula->KSGenValueFormula__l_formula__name - - + + - + KSGenValueFormula__l_formula__value_formula - -value_formula + +value_formula - + KSGenValueFormula__l_formula->KSGenValueFormula__l_formula__value_formula - - + + - + KSGenValueFormula__l_formula__value_max - -value_max + +value_max - + KSGenValueFormula__l_formula->KSGenValueFormula__l_formula__value_max - - + + - + KSGenValueFormula__l_formula__value_min - -value_min + +value_min - + KSGenValueFormula__l_formula->KSGenValueFormula__l_formula__value_min - - + + - + KSGenValueGauss__l_gauss__name - -name + +name - + KSGenValueGauss__l_gauss->KSGenValueGauss__l_gauss__name - - + + - + KSGenValueGauss__l_gauss__value_max - -value_max + +value_max - + KSGenValueGauss__l_gauss->KSGenValueGauss__l_gauss__value_max - - + + - + KSGenValueGauss__l_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGauss__l_gauss->KSGenValueGauss__l_gauss__value_mean - - + + - + KSGenValueGauss__l_gauss__value_min - -value_min + +value_min - + KSGenValueGauss__l_gauss->KSGenValueGauss__l_gauss__value_min - - + + - + KSGenValueGauss__l_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGauss__l_gauss->KSGenValueGauss__l_gauss__value_sigma - - + + - + KSGenValueList__l_list__add_value - -add_value + +add_value - + KSGenValueList__l_list->KSGenValueList__l_list__add_value - - + + - + KSGenValueList__l_list__name - -name + +name - + KSGenValueList__l_list->KSGenValueList__l_list__name - - + + - + KSGenValueList__l_list__randomize - -randomize + +randomize - + KSGenValueList__l_list->KSGenValueList__l_list__randomize - - + + - + KSGenValueSet__l_set__name - -name + +name - + KSGenValueSet__l_set->KSGenValueSet__l_set__name - - + + - + KSGenValueSet__l_set__value_count - -value_count + +value_count - + KSGenValueSet__l_set->KSGenValueSet__l_set__value_count - - + + - + KSGenValueSet__l_set__value_increment - -value_increment + +value_increment - + KSGenValueSet__l_set->KSGenValueSet__l_set__value_increment - - + + - + KSGenValueSet__l_set__value_start - -value_start + +value_start - + KSGenValueSet__l_set->KSGenValueSet__l_set__value_start - - + + - + KSGenValueSet__l_set__value_stop - -value_stop + +value_stop - + KSGenValueSet__l_set->KSGenValueSet__l_set__value_stop - - + + - + KSGenValueUniform__l_uniform__name - -name + +name - + KSGenValueUniform__l_uniform->KSGenValueUniform__l_uniform__name - - + + - + KSGenValueUniform__l_uniform__value_max - -value_max + +value_max - + KSGenValueUniform__l_uniform->KSGenValueUniform__l_uniform__value_max - - + + - + KSGenValueUniform__l_uniform__value_min - -value_min + +value_min - + KSGenValueUniform__l_uniform->KSGenValueUniform__l_uniform__value_min - - + + - + KSGenValueFix__x_fix__name - -name + +name - + KSGenValueFix__x_fix->KSGenValueFix__x_fix__name - - + + - + KSGenValueFix__x_fix__value - -value + +value - + KSGenValueFix__x_fix->KSGenValueFix__x_fix__value - - + + - + KSGenValueFormula__x_formula__name - -name + +name - + KSGenValueFormula__x_formula->KSGenValueFormula__x_formula__name - - + + - + KSGenValueFormula__x_formula__value_formula - -value_formula + +value_formula - + KSGenValueFormula__x_formula->KSGenValueFormula__x_formula__value_formula - - + + - + KSGenValueFormula__x_formula__value_max - -value_max + +value_max - + KSGenValueFormula__x_formula->KSGenValueFormula__x_formula__value_max - - + + - + KSGenValueFormula__x_formula__value_min - -value_min + +value_min - + KSGenValueFormula__x_formula->KSGenValueFormula__x_formula__value_min - - + + - + KSGenValueGauss__x_gauss__name - -name + +name - + KSGenValueGauss__x_gauss->KSGenValueGauss__x_gauss__name - - + + - + KSGenValueGauss__x_gauss__value_max - -value_max + +value_max - + KSGenValueGauss__x_gauss->KSGenValueGauss__x_gauss__value_max - - + + - + KSGenValueGauss__x_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGauss__x_gauss->KSGenValueGauss__x_gauss__value_mean - - + + - + KSGenValueGauss__x_gauss__value_min - -value_min + +value_min - + KSGenValueGauss__x_gauss->KSGenValueGauss__x_gauss__value_min - - + + - + KSGenValueGauss__x_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGauss__x_gauss->KSGenValueGauss__x_gauss__value_sigma - - + + - + KSGenValueHistogram__x_histogram__base - -base + +base - + KSGenValueHistogram__x_histogram->KSGenValueHistogram__x_histogram__base - - + + - + KSGenValueHistogram__x_histogram__formula - -formula + +formula - + KSGenValueHistogram__x_histogram->KSGenValueHistogram__x_histogram__formula - - + + - + KSGenValueHistogram__x_histogram__histogram - -histogram + +histogram - + KSGenValueHistogram__x_histogram->KSGenValueHistogram__x_histogram__histogram - - + + - + KSGenValueHistogram__x_histogram__name - -name + +name - + KSGenValueHistogram__x_histogram->KSGenValueHistogram__x_histogram__name - - + + - + KSGenValueHistogram__x_histogram__path - -path + +path - + KSGenValueHistogram__x_histogram->KSGenValueHistogram__x_histogram__path - - + + - + KSGenValueList__x_list__add_value - -add_value + +add_value - + KSGenValueList__x_list->KSGenValueList__x_list__add_value - - + + - + KSGenValueList__x_list__name - -name + +name - + KSGenValueList__x_list->KSGenValueList__x_list__name - - + + - + KSGenValueList__x_list__randomize - -randomize + +randomize - + KSGenValueList__x_list->KSGenValueList__x_list__randomize - - + + - + KSGenValueSet__x_set__name - -name + +name - + KSGenValueSet__x_set->KSGenValueSet__x_set__name - - + + - + KSGenValueSet__x_set__value_count - -value_count + +value_count - + KSGenValueSet__x_set->KSGenValueSet__x_set__value_count - - + + - + KSGenValueSet__x_set__value_increment - -value_increment + +value_increment - + KSGenValueSet__x_set->KSGenValueSet__x_set__value_increment - - + + - + KSGenValueSet__x_set__value_start - -value_start + +value_start - + KSGenValueSet__x_set->KSGenValueSet__x_set__value_start - - + + - + KSGenValueSet__x_set__value_stop - -value_stop + +value_stop - + KSGenValueSet__x_set->KSGenValueSet__x_set__value_stop - - + + - + KSGenValueUniform__x_uniform__name - -name + +name - + KSGenValueUniform__x_uniform->KSGenValueUniform__x_uniform__name - - + + - + KSGenValueUniform__x_uniform__value_max - -value_max + +value_max - + KSGenValueUniform__x_uniform->KSGenValueUniform__x_uniform__value_max - - + + - + KSGenValueUniform__x_uniform__value_min - -value_min + +value_min - + KSGenValueUniform__x_uniform->KSGenValueUniform__x_uniform__value_min - - + + - + KSGenValueFix__y_fix__name - -name + +name - + KSGenValueFix__y_fix->KSGenValueFix__y_fix__name - - + + - + KSGenValueFix__y_fix__value - -value + +value - + KSGenValueFix__y_fix->KSGenValueFix__y_fix__value - - + + - + KSGenValueFormula__y_formula__name - -name + +name - + KSGenValueFormula__y_formula->KSGenValueFormula__y_formula__name - - + + - + KSGenValueFormula__y_formula__value_formula - -value_formula + +value_formula - + KSGenValueFormula__y_formula->KSGenValueFormula__y_formula__value_formula - - + + - + KSGenValueFormula__y_formula__value_max - -value_max + +value_max - + KSGenValueFormula__y_formula->KSGenValueFormula__y_formula__value_max - - + + - + KSGenValueFormula__y_formula__value_min - -value_min + +value_min - + KSGenValueFormula__y_formula->KSGenValueFormula__y_formula__value_min - - + + - + KSGenValueGauss__y_gauss__name - -name + +name - + KSGenValueGauss__y_gauss->KSGenValueGauss__y_gauss__name - - + + - + KSGenValueGauss__y_gauss__value_max - -value_max + +value_max - + KSGenValueGauss__y_gauss->KSGenValueGauss__y_gauss__value_max - - + + - + KSGenValueGauss__y_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGauss__y_gauss->KSGenValueGauss__y_gauss__value_mean - - + + - + KSGenValueGauss__y_gauss__value_min - -value_min + +value_min - + KSGenValueGauss__y_gauss->KSGenValueGauss__y_gauss__value_min - - + + - + KSGenValueGauss__y_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGauss__y_gauss->KSGenValueGauss__y_gauss__value_sigma - - + + - + KSGenValueHistogram__y_histogram__base - -base + +base - + KSGenValueHistogram__y_histogram->KSGenValueHistogram__y_histogram__base - - + + - + KSGenValueHistogram__y_histogram__formula - -formula + +formula - + KSGenValueHistogram__y_histogram->KSGenValueHistogram__y_histogram__formula - - + + - + KSGenValueHistogram__y_histogram__histogram - -histogram + +histogram - + KSGenValueHistogram__y_histogram->KSGenValueHistogram__y_histogram__histogram - - + + - + KSGenValueHistogram__y_histogram__name - -name + +name - + KSGenValueHistogram__y_histogram->KSGenValueHistogram__y_histogram__name - - + + - + KSGenValueHistogram__y_histogram__path - -path + +path - + KSGenValueHistogram__y_histogram->KSGenValueHistogram__y_histogram__path - - + + - + KSGenValueList__y_list__add_value - -add_value + +add_value - + KSGenValueList__y_list->KSGenValueList__y_list__add_value - - + + - + KSGenValueList__y_list__name - -name + +name - + KSGenValueList__y_list->KSGenValueList__y_list__name - - + + - + KSGenValueList__y_list__randomize - -randomize + +randomize - + KSGenValueList__y_list->KSGenValueList__y_list__randomize - - + + - + KSGenValueSet__y_set__name - -name + +name - + KSGenValueSet__y_set->KSGenValueSet__y_set__name - - + + - + KSGenValueSet__y_set__value_count - -value_count + +value_count - + KSGenValueSet__y_set->KSGenValueSet__y_set__value_count - - + + - + KSGenValueSet__y_set__value_increment - -value_increment + +value_increment - + KSGenValueSet__y_set->KSGenValueSet__y_set__value_increment - - + + - + KSGenValueSet__y_set__value_start - -value_start + +value_start - + KSGenValueSet__y_set->KSGenValueSet__y_set__value_start - - + + - + KSGenValueSet__y_set__value_stop - -value_stop + +value_stop - + KSGenValueSet__y_set->KSGenValueSet__y_set__value_stop - - + + - + KSGenValueUniform__y_uniform__name - -name + +name - + KSGenValueUniform__y_uniform->KSGenValueUniform__y_uniform__name - - + + - + KSGenValueUniform__y_uniform__value_max - -value_max + +value_max - + KSGenValueUniform__y_uniform->KSGenValueUniform__y_uniform__value_max - - + + - + KSGenValueUniform__y_uniform__value_min - -value_min + +value_min - + KSGenValueUniform__y_uniform->KSGenValueUniform__y_uniform__value_min - - + + - + KSGenValueFix__z_fix__name - -name + +name - + KSGenValueFix__z_fix->KSGenValueFix__z_fix__name - - + + - + KSGenValueFix__z_fix__value - -value + +value - + KSGenValueFix__z_fix->KSGenValueFix__z_fix__value - - + + - + KSGenValueFormula__z_formula__name - -name + +name - + KSGenValueFormula__z_formula->KSGenValueFormula__z_formula__name - - + + - + KSGenValueFormula__z_formula__value_formula - -value_formula + +value_formula - + KSGenValueFormula__z_formula->KSGenValueFormula__z_formula__value_formula - - + + - + KSGenValueFormula__z_formula__value_max - -value_max + +value_max - + KSGenValueFormula__z_formula->KSGenValueFormula__z_formula__value_max - - + + - + KSGenValueFormula__z_formula__value_min - -value_min + +value_min - + KSGenValueFormula__z_formula->KSGenValueFormula__z_formula__value_min - - + + - + KSGenValueGauss__z_gauss__name - -name + +name - + KSGenValueGauss__z_gauss->KSGenValueGauss__z_gauss__name - - + + - + KSGenValueGauss__z_gauss__value_max - -value_max + +value_max - + KSGenValueGauss__z_gauss->KSGenValueGauss__z_gauss__value_max - - + + - + KSGenValueGauss__z_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGauss__z_gauss->KSGenValueGauss__z_gauss__value_mean - - + + - + KSGenValueGauss__z_gauss__value_min - -value_min + +value_min - + KSGenValueGauss__z_gauss->KSGenValueGauss__z_gauss__value_min - - + + - + KSGenValueGauss__z_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGauss__z_gauss->KSGenValueGauss__z_gauss__value_sigma - - + + - + KSGenValueHistogram__z_histogram__base - -base + +base - + KSGenValueHistogram__z_histogram->KSGenValueHistogram__z_histogram__base - - + + - + KSGenValueHistogram__z_histogram__formula - -formula + +formula - + KSGenValueHistogram__z_histogram->KSGenValueHistogram__z_histogram__formula - - + + - + KSGenValueHistogram__z_histogram__histogram - -histogram + +histogram - + KSGenValueHistogram__z_histogram->KSGenValueHistogram__z_histogram__histogram - - + + - + KSGenValueHistogram__z_histogram__name - -name + +name - + KSGenValueHistogram__z_histogram->KSGenValueHistogram__z_histogram__name - - + + - + KSGenValueHistogram__z_histogram__path - -path + +path - + KSGenValueHistogram__z_histogram->KSGenValueHistogram__z_histogram__path - - + + - + KSGenValueList__z_list__add_value - -add_value + +add_value - + KSGenValueList__z_list->KSGenValueList__z_list__add_value - - + + - + KSGenValueList__z_list__name - -name + +name - + KSGenValueList__z_list->KSGenValueList__z_list__name - - + + - + KSGenValueList__z_list__randomize - -randomize + +randomize - + KSGenValueList__z_list->KSGenValueList__z_list__randomize - - + + - + KSGenValueSet__z_set__name - -name + +name - + KSGenValueSet__z_set->KSGenValueSet__z_set__name - - + + - + KSGenValueSet__z_set__value_count - -value_count + +value_count - + KSGenValueSet__z_set->KSGenValueSet__z_set__value_count - - + + - + KSGenValueSet__z_set__value_increment - -value_increment + +value_increment - + KSGenValueSet__z_set->KSGenValueSet__z_set__value_increment - - + + - + KSGenValueSet__z_set__value_start - -value_start + +value_start - + KSGenValueSet__z_set->KSGenValueSet__z_set__value_start - - + + - + KSGenValueSet__z_set__value_stop - -value_stop + +value_stop - + KSGenValueSet__z_set->KSGenValueSet__z_set__value_stop - - + + - + KSGenValueUniform__z_uniform__name - -name + +name - + KSGenValueUniform__z_uniform->KSGenValueUniform__z_uniform__name - - + + - + KSGenValueUniform__z_uniform__value_max - -value_max + +value_max - + KSGenValueUniform__z_uniform->KSGenValueUniform__z_uniform__value_max - - + + - + KSGenValueUniform__z_uniform__value_min - -value_min + +value_min - + KSGenValueUniform__z_uniform->KSGenValueUniform__z_uniform__value_min - - + + - + KSGenValueFix__n_fix__name - -name + +name - + KSGenValueFix__n_fix->KSGenValueFix__n_fix__name - - + + - + KSGenValueFix__n_fix__value - -value + +value - + KSGenValueFix__n_fix->KSGenValueFix__n_fix__value - - + + - + KSGenValueFormula__n_formula__name - -name + +name - + KSGenValueFormula__n_formula->KSGenValueFormula__n_formula__name - - + + - + KSGenValueFormula__n_formula__value_formula - -value_formula + +value_formula - + KSGenValueFormula__n_formula->KSGenValueFormula__n_formula__value_formula - - + + - + KSGenValueFormula__n_formula__value_max - -value_max + +value_max - + KSGenValueFormula__n_formula->KSGenValueFormula__n_formula__value_max - - + + - + KSGenValueFormula__n_formula__value_min - -value_min + +value_min - + KSGenValueFormula__n_formula->KSGenValueFormula__n_formula__value_min - - + + - + KSGenValueGauss__n_gauss__name - -name + +name - + KSGenValueGauss__n_gauss->KSGenValueGauss__n_gauss__name - - + + - + KSGenValueGauss__n_gauss__value_max - -value_max + +value_max - + KSGenValueGauss__n_gauss->KSGenValueGauss__n_gauss__value_max - - + + - + KSGenValueGauss__n_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGauss__n_gauss->KSGenValueGauss__n_gauss__value_mean - - + + - + KSGenValueGauss__n_gauss__value_min - -value_min + +value_min - + KSGenValueGauss__n_gauss->KSGenValueGauss__n_gauss__value_min - - + + - + KSGenValueGauss__n_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGauss__n_gauss->KSGenValueGauss__n_gauss__value_sigma - - + + - + KSGenValueList__n_list__add_value - -add_value + +add_value - + KSGenValueList__n_list->KSGenValueList__n_list__add_value - - + + - + KSGenValueList__n_list__name - -name + +name - + KSGenValueList__n_list->KSGenValueList__n_list__name - - + + - + KSGenValueList__n_list__randomize - -randomize + +randomize - + KSGenValueList__n_list->KSGenValueList__n_list__randomize - - + + - + KSGenValuePareto__n_pareto__cutoff - -cutoff + +cutoff - + KSGenValuePareto__n_pareto->KSGenValuePareto__n_pareto__cutoff - - + + - + KSGenValuePareto__n_pareto__name - -name + +name - + KSGenValuePareto__n_pareto->KSGenValuePareto__n_pareto__name - - + + - + KSGenValuePareto__n_pareto__offset - -offset + +offset - + KSGenValuePareto__n_pareto->KSGenValuePareto__n_pareto__offset - - + + - + KSGenValuePareto__n_pareto__slope - -slope + +slope - + KSGenValuePareto__n_pareto->KSGenValuePareto__n_pareto__slope - - + + - + KSGenValuePareto__n_pareto__value_max - -value_max + +value_max - + KSGenValuePareto__n_pareto->KSGenValuePareto__n_pareto__value_max - - + + - + KSGenValuePareto__n_pareto__value_min - -value_min + +value_min - + KSGenValuePareto__n_pareto->KSGenValuePareto__n_pareto__value_min - - + + - + KSGenValueSet__n_set__name - -name + +name - + KSGenValueSet__n_set->KSGenValueSet__n_set__name - - + + - + KSGenValueSet__n_set__value_count - -value_count + +value_count - + KSGenValueSet__n_set->KSGenValueSet__n_set__value_count - - + + - + KSGenValueSet__n_set__value_increment - -value_increment + +value_increment - + KSGenValueSet__n_set->KSGenValueSet__n_set__value_increment - - + + - + KSGenValueSet__n_set__value_start - -value_start + +value_start - + KSGenValueSet__n_set->KSGenValueSet__n_set__value_start - - + + - + KSGenValueSet__n_set__value_stop - -value_stop + +value_stop - + KSGenValueSet__n_set->KSGenValueSet__n_set__value_stop - - + + - + KSGenValueUniform__n_uniform__name - -name + +name - + KSGenValueUniform__n_uniform->KSGenValueUniform__n_uniform__name - - + + - + KSGenValueUniform__n_uniform__value_max - -value_max + +value_max - + KSGenValueUniform__n_uniform->KSGenValueUniform__n_uniform__value_max - - + + - + KSGenValueUniform__n_uniform__value_min - -value_min + +value_min - + KSGenValueUniform__n_uniform->KSGenValueUniform__n_uniform__value_min - - + + - + KSGenValueRadiusCylindrical__r_cylindrical__name - -name + +name - + KSGenValueRadiusCylindrical__r_cylindrical->KSGenValueRadiusCylindrical__r_cylindrical__name - - + + - + KSGenValueRadiusCylindrical__r_cylindrical__radius_max - -radius_max + +radius_max - + KSGenValueRadiusCylindrical__r_cylindrical->KSGenValueRadiusCylindrical__r_cylindrical__radius_max - - + + - + KSGenValueRadiusCylindrical__r_cylindrical__radius_min - -radius_min + +radius_min - + KSGenValueRadiusCylindrical__r_cylindrical->KSGenValueRadiusCylindrical__r_cylindrical__radius_min - - + + - + KSGenValueFix__r_fix__name - -name + +name - + KSGenValueFix__r_fix->KSGenValueFix__r_fix__name - - + + - + KSGenValueFix__r_fix__value - -value + +value - + KSGenValueFix__r_fix->KSGenValueFix__r_fix__value - - + + - + KSGenValueFormula__r_formula__name - -name + +name - + KSGenValueFormula__r_formula->KSGenValueFormula__r_formula__name - - + + - + KSGenValueFormula__r_formula__value_formula - -value_formula + +value_formula - + KSGenValueFormula__r_formula->KSGenValueFormula__r_formula__value_formula - - + + - + KSGenValueFormula__r_formula__value_max - -value_max + +value_max - + KSGenValueFormula__r_formula->KSGenValueFormula__r_formula__value_max - - + + - + KSGenValueFormula__r_formula__value_min - -value_min + +value_min - + KSGenValueFormula__r_formula->KSGenValueFormula__r_formula__value_min - - + + - + KSGenValueRadiusFraction__r_fraction__name - -name + +name - + KSGenValueRadiusFraction__r_fraction->KSGenValueRadiusFraction__r_fraction__name - - + + - + KSGenValueGauss__r_gauss__name - -name + +name - + KSGenValueGauss__r_gauss->KSGenValueGauss__r_gauss__name - - + + - + KSGenValueGauss__r_gauss__value_max - -value_max + +value_max - + KSGenValueGauss__r_gauss->KSGenValueGauss__r_gauss__value_max - - + + - + KSGenValueGauss__r_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGauss__r_gauss->KSGenValueGauss__r_gauss__value_mean - - + + - + KSGenValueGauss__r_gauss__value_min - -value_min + +value_min - + KSGenValueGauss__r_gauss->KSGenValueGauss__r_gauss__value_min - - + + - + KSGenValueGauss__r_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGauss__r_gauss->KSGenValueGauss__r_gauss__value_sigma - - + + - + KSGenValueHistogram__r_histogram__base - -base + +base - + KSGenValueHistogram__r_histogram->KSGenValueHistogram__r_histogram__base - - + + - + KSGenValueHistogram__r_histogram__formula - -formula + +formula - + KSGenValueHistogram__r_histogram->KSGenValueHistogram__r_histogram__formula - - + + - + KSGenValueHistogram__r_histogram__histogram - -histogram + +histogram - + KSGenValueHistogram__r_histogram->KSGenValueHistogram__r_histogram__histogram - - + + - + KSGenValueHistogram__r_histogram__name - -name + +name - + KSGenValueHistogram__r_histogram->KSGenValueHistogram__r_histogram__name - - + + - + KSGenValueHistogram__r_histogram__path - -path + +path - + KSGenValueHistogram__r_histogram->KSGenValueHistogram__r_histogram__path - - + + - + KSGenValueList__r_list__add_value - -add_value + +add_value - + KSGenValueList__r_list->KSGenValueList__r_list__add_value - - + + - + KSGenValueList__r_list__name - -name + +name - + KSGenValueList__r_list->KSGenValueList__r_list__name - - + + - + KSGenValueList__r_list__randomize - -randomize + +randomize - + KSGenValueList__r_list->KSGenValueList__r_list__randomize - - + + - + KSGenValueSet__r_set__name - -name + +name - + KSGenValueSet__r_set->KSGenValueSet__r_set__name - - + + - + KSGenValueSet__r_set__value_count - -value_count + +value_count - + KSGenValueSet__r_set->KSGenValueSet__r_set__value_count - - + + - + KSGenValueSet__r_set__value_increment - -value_increment + +value_increment - + KSGenValueSet__r_set->KSGenValueSet__r_set__value_increment - - + + - + KSGenValueSet__r_set__value_start - -value_start + +value_start - + KSGenValueSet__r_set->KSGenValueSet__r_set__value_start - - + + - + KSGenValueSet__r_set__value_stop - -value_stop + +value_stop - + KSGenValueSet__r_set->KSGenValueSet__r_set__value_stop - - + + - + KSGenValueUniform__r_uniform__name - -name + +name - + KSGenValueUniform__r_uniform->KSGenValueUniform__r_uniform__name - - + + - + KSGenValueUniform__r_uniform__value_max - -value_max + +value_max - + KSGenValueUniform__r_uniform->KSGenValueUniform__r_uniform__value_max - - + + - + KSGenValueUniform__r_uniform__value_min - -value_min + +value_min - + KSGenValueUniform__r_uniform->KSGenValueUniform__r_uniform__value_min - - + + - + KSGenValueFix__r1_fix__name - -name + +name - + KSGenValueFix__r1_fix->KSGenValueFix__r1_fix__name - - + + - + KSGenValueFix__r1_fix__value - -value + +value - + KSGenValueFix__r1_fix->KSGenValueFix__r1_fix__value - - + + - + KSGenValueFix__r2_fix__name - -name + +name - + KSGenValueFix__r2_fix->KSGenValueFix__r2_fix__name - - + + - + KSGenValueFix__r2_fix__value - -value + +value - + KSGenValueFix__r2_fix->KSGenValueFix__r2_fix__value - - + + - + KSGenValueFix__z1_fix__name - -name + +name - + KSGenValueFix__z1_fix->KSGenValueFix__z1_fix__name - - + + - + KSGenValueFix__z1_fix__value - -value + +value - + KSGenValueFix__z1_fix->KSGenValueFix__z1_fix__value - - + + - + KSGenValueFix__z2_fix__name - -name + +name - + KSGenValueFix__z2_fix->KSGenValueFix__z2_fix__name - - + + - + KSGenValueFix__z2_fix__value - -value + +value - + KSGenValueFix__z2_fix->KSGenValueFix__z2_fix__value - - + + - + KSGenValueZFrustrum__z_frustrum__name - -name + +name - + KSGenValueZFrustrum__z_frustrum->KSGenValueZFrustrum__z_frustrum__name - - + + - + KSGenValueZFrustrum__z_frustrum__r1 - -r1 + +r1 - + KSGenValueZFrustrum__z_frustrum->KSGenValueZFrustrum__z_frustrum__r1 - - + + - + KSGenValueZFrustrum__z_frustrum__r2 - -r2 + +r2 - + KSGenValueZFrustrum__z_frustrum->KSGenValueZFrustrum__z_frustrum__r2 - - + + - + KSGenValueZFrustrum__z_frustrum__z1 - -z1 + +z1 - + KSGenValueZFrustrum__z_frustrum->KSGenValueZFrustrum__z_frustrum__z1 - - + + - + KSGenValueZFrustrum__z_frustrum__z2 - -z2 + +z2 - + KSGenValueZFrustrum__z_frustrum->KSGenValueZFrustrum__z_frustrum__z2 - - + + - + KSGenValueRadiusSpherical__r_spherical__name - -name + +name - + KSGenValueRadiusSpherical__r_spherical->KSGenValueRadiusSpherical__r_spherical__name - - + + - + KSGenValueRadiusSpherical__r_spherical__radius_max - -radius_max + +radius_max - + KSGenValueRadiusSpherical__r_spherical->KSGenValueRadiusSpherical__r_spherical__radius_max - - + + - + KSGenValueRadiusSpherical__r_spherical__radius_min - -radius_min + +radius_min - + KSGenValueRadiusSpherical__r_spherical->KSGenValueRadiusSpherical__r_spherical__radius_min - - + + - + KSGenValueFermi__time_fermi__name - -name + +name - + KSGenValueFermi__time_fermi->KSGenValueFermi__time_fermi__name - - + + - + KSGenValueFermi__time_fermi__value_max - -value_max + +value_max - + KSGenValueFermi__time_fermi->KSGenValueFermi__time_fermi__value_max - - + + - + KSGenValueFermi__time_fermi__value_mean - -value_mean + +value_mean - + KSGenValueFermi__time_fermi->KSGenValueFermi__time_fermi__value_mean - - + + - + KSGenValueFermi__time_fermi__value_min - -value_min + +value_min - + KSGenValueFermi__time_fermi->KSGenValueFermi__time_fermi__value_min - - + + - + KSGenValueFermi__time_fermi__value_tau - -value_tau + +value_tau - + KSGenValueFermi__time_fermi->KSGenValueFermi__time_fermi__value_tau - - + + - + KSGenValueFermi__time_fermi__value_temp - -value_temp + +value_temp - + KSGenValueFermi__time_fermi->KSGenValueFermi__time_fermi__value_temp - - + + - + KSGenValueFix__time_fix__name - -name + +name - + KSGenValueFix__time_fix->KSGenValueFix__time_fix__name - - + + - + KSGenValueFix__time_fix__value - -value + +value - + KSGenValueFix__time_fix->KSGenValueFix__time_fix__value - - + + - + KSGenValueFormula__time_formula__name - -name + +name - + KSGenValueFormula__time_formula->KSGenValueFormula__time_formula__name - - + + - + KSGenValueFormula__time_formula__value_formula - -value_formula + +value_formula - + KSGenValueFormula__time_formula->KSGenValueFormula__time_formula__value_formula - - + + - + KSGenValueFormula__time_formula__value_max - -value_max + +value_max - + KSGenValueFormula__time_formula->KSGenValueFormula__time_formula__value_max - - + + - + KSGenValueFormula__time_formula__value_min - -value_min + +value_min - + KSGenValueFormula__time_formula->KSGenValueFormula__time_formula__value_min - - + + - + KSGenValueGauss__time_gauss__name - -name + +name - + KSGenValueGauss__time_gauss->KSGenValueGauss__time_gauss__name - - + + - + KSGenValueGauss__time_gauss__value_max - -value_max + +value_max - + KSGenValueGauss__time_gauss->KSGenValueGauss__time_gauss__value_max - - + + - + KSGenValueGauss__time_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGauss__time_gauss->KSGenValueGauss__time_gauss__value_mean - - + + - + KSGenValueGauss__time_gauss__value_min - -value_min + +value_min - + KSGenValueGauss__time_gauss->KSGenValueGauss__time_gauss__value_min - - + + - + KSGenValueGauss__time_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGauss__time_gauss->KSGenValueGauss__time_gauss__value_sigma - - + + - + KSGenValueGeneralizedGauss__time_generalized_gauss__name - -name + +name - + KSGenValueGeneralizedGauss__time_generalized_gauss->KSGenValueGeneralizedGauss__time_generalized_gauss__name - - + + - + KSGenValueGeneralizedGauss__time_generalized_gauss__value_max - -value_max + +value_max - + KSGenValueGeneralizedGauss__time_generalized_gauss->KSGenValueGeneralizedGauss__time_generalized_gauss__value_max - - + + - + KSGenValueGeneralizedGauss__time_generalized_gauss__value_mean - -value_mean + +value_mean - + KSGenValueGeneralizedGauss__time_generalized_gauss->KSGenValueGeneralizedGauss__time_generalized_gauss__value_mean - - + + - + KSGenValueGeneralizedGauss__time_generalized_gauss__value_min - -value_min + +value_min - + KSGenValueGeneralizedGauss__time_generalized_gauss->KSGenValueGeneralizedGauss__time_generalized_gauss__value_min - - + + - + KSGenValueGeneralizedGauss__time_generalized_gauss__value_sigma - -value_sigma + +value_sigma - + KSGenValueGeneralizedGauss__time_generalized_gauss->KSGenValueGeneralizedGauss__time_generalized_gauss__value_sigma - - + + - + KSGenValueGeneralizedGauss__time_generalized_gauss__value_skew - -value_skew + +value_skew - + KSGenValueGeneralizedGauss__time_generalized_gauss->KSGenValueGeneralizedGauss__time_generalized_gauss__value_skew - - + + - + KSGenValueHistogram__time_histogram__base - -base + +base - + KSGenValueHistogram__time_histogram->KSGenValueHistogram__time_histogram__base - - + + - + KSGenValueHistogram__time_histogram__formula - -formula + +formula - + KSGenValueHistogram__time_histogram->KSGenValueHistogram__time_histogram__formula - - + + - + KSGenValueHistogram__time_histogram__histogram - -histogram + +histogram - + KSGenValueHistogram__time_histogram->KSGenValueHistogram__time_histogram__histogram - - + + - + KSGenValueHistogram__time_histogram__name - -name + +name - + KSGenValueHistogram__time_histogram->KSGenValueHistogram__time_histogram__name - - + + - + KSGenValueHistogram__time_histogram__path - -path + +path - + KSGenValueHistogram__time_histogram->KSGenValueHistogram__time_histogram__path - - + + - + KSGenValueList__time_list__add_value - -add_value + +add_value - + KSGenValueList__time_list->KSGenValueList__time_list__add_value - - + + - + KSGenValueList__time_list__name - -name + +name - + KSGenValueList__time_list->KSGenValueList__time_list__name - - + + - + KSGenValueList__time_list__randomize - -randomize + +randomize - + KSGenValueList__time_list->KSGenValueList__time_list__randomize - - + + - + KSGenValueSet__time_set__name - -name + +name - + KSGenValueSet__time_set->KSGenValueSet__time_set__name - - + + - + KSGenValueSet__time_set__value_count - -value_count + +value_count - + KSGenValueSet__time_set->KSGenValueSet__time_set__value_count - - + + - + KSGenValueSet__time_set__value_increment - -value_increment + +value_increment - + KSGenValueSet__time_set->KSGenValueSet__time_set__value_increment - - + + - + KSGenValueSet__time_set__value_start - -value_start + +value_start - + KSGenValueSet__time_set->KSGenValueSet__time_set__value_start - - + + - + KSGenValueSet__time_set__value_stop - -value_stop + +value_stop - + KSGenValueSet__time_set->KSGenValueSet__time_set__value_stop - - + + - + KSGenValueUniform__time_uniform__name - -name + +name - + KSGenValueUniform__time_uniform->KSGenValueUniform__time_uniform__name - - + + - + KSGenValueUniform__time_uniform__value_max - -value_max + +value_max - + KSGenValueUniform__time_uniform->KSGenValueUniform__time_uniform__value_max - - + + - + KSGenValueUniform__time_uniform__value_min - -value_min + +value_min - + KSGenValueUniform__time_uniform->KSGenValueUniform__time_uniform__value_min - - + + - + KSCommandMemberData__command__child - -child + +child - + KSCommandMemberData__command->KSCommandMemberData__command__child - - + + - + KSCommandMemberData__command__field - -field + +field - + KSCommandMemberData__command->KSCommandMemberData__command__field - - + + - + KSCommandMemberData__command__name - -name + +name - + KSCommandMemberData__command->KSCommandMemberData__command__name - - + + - + KSCommandMemberData__command__parent - -parent + +parent - + KSCommandMemberData__command->KSCommandMemberData__command__parent - - + + - + KSGeoSide__geo_side->KSCommandMemberAddElectricFieldData__add_electric_field - - + + - + KSGeoSide__geo_side->KSCommandMemberAddMagneticFieldData__add_magnetic_field - - + + - + KSGeoSide__geo_side->KSCommandMemberAddStepModifierData__add_step_modifier - - + + - + KSGeoSide__geo_side->KSCommandMemberAddStepOutputData__add_step_output - - + + - + KSGeoSide__geo_side->KSCommandMemberAddTerminatorData__add_terminator - - + + - + KSGeoSide__geo_side->KSCommandMemberAddTrackOutputData__add_track_output - - + + - + KSGeoSide__geo_side->KSCommandMemberClearSurfaceInteractionData__clear_surface_interaction - - + + - + KSGeoSide__geo_side->KSCommandMemberData__command - - + + - + KSGeoSide__geo_side->KSCommandMemberRemoveElectricFieldData__remove_magnetic_field - - + + - + KSGeoSide__geo_side->KSCommandMemberRemoveStepModifierData__remove_step_modifier - - + + - + KSGeoSide__geo_side->KSCommandMemberRemoveStepOutputData__remove_step_output - - + + - + KSGeoSide__geo_side->KSCommandMemberRemoveTerminatorData__remove_terminator - - + + - + KSGeoSide__geo_side->KSCommandMemberRemoveTrackOutputData__remove_track_output - - + + - + KSGeoSide__geo_side->KSCommandMemberSetSurfaceInteractionData__set_surface_interaction - - + + - + KSGeoSide__geo_side__name - -name + +name - + KSGeoSide__geo_side->KSGeoSide__geo_side__name - - + + - + KSGeoSide__geo_side__spaces - -spaces + +spaces - + KSGeoSide__geo_side->KSGeoSide__geo_side__spaces - - + + - + KSGeoSide__geo_side__surfaces - -surfaces + +surfaces - + KSGeoSide__geo_side->KSGeoSide__geo_side__surfaces - - + + - + KSGeoSpace__geo_space->KSCommandMemberAddElectricFieldData__add_electric_field - - + + - + KSGeoSpace__geo_space->KSCommandMemberAddMagneticFieldData__add_magnetic_field - - + + - + KSGeoSpace__geo_space->KSCommandMemberAddStepModifierData__add_step_modifier - - + + - + KSGeoSpace__geo_space->KSCommandMemberAddStepOutputData__add_step_output - - + + - + KSGeoSpace__geo_space->KSCommandMemberAddTerminatorData__add_terminator - - + + - + KSGeoSpace__geo_space->KSCommandMemberAddTrackOutputData__add_track_output - - + + - + KSGeoSpace__geo_space->KSCommandMemberData__command - - + + - + KSGeoSpace__geo_space->KSCommandMemberRemoveStepModifierData__remove_step_modifier - - + + - + KSGeoSpace__geo_space->KSCommandMemberRemoveStepOutputData__remove_step_output - - + + - + KSGeoSpace__geo_space->KSCommandMemberRemoveTerminatorData__remove_terminator - - + + - + KSGeoSpace__geo_space->KSCommandMemberRemoveTrackOutputData__remove_track_output - - + + - + KSGeoSpace__geo_space->KSCommandMemberAddControlData__add_control - - + + - + KSGeoSpace__geo_space->KSCommandMemberAddSpaceInteractionData__add_space_interaction - - + + - + KSGeoSpace__geo_space->KSCommandMemberAddTermData__add_term - - + + - + KSGeoSpace__geo_space->KSCommandMemberClearDensityData__clear_density - - + + - + KSGeoSpace__geo_space->KSCommandMemberClearStepDataData__clear_step_data - - + + - + KSGeoSpace__geo_space->KSCommandMemberClearStepPointData__clear_step_point - - + + - + KSGeoSpace__geo_space->KSCommandMemberClearTrackDataData__clear_track_data - - + + - + KSGeoSpace__geo_space->KSCommandMemberClearTrackPointData__clear_track_point - - + + - + KSGeoSpace__geo_space->KSCommandMemberClearTrajectoryData__clear_trajectory - - + + - + KSGeoSpace__geo_space->KSGeoSide__geo_side - - + + - + KSGeoSpace__geo_space->KSGeoSpace__geo_space - - + + - + KSGeoSpace__geo_space->KSGeoSurface__geo_surface - - + + - + KSGeoSpace__geo_space->KSCommandMemberRemoveControlData__remove_control - - + + - + KSGeoSpace__geo_space->KSCommandMemberRemoveElectricFieldData__remove_electric_field - - + + - + KSGeoSpace__geo_space->KSCommandMemberRemoveMagneticFieldData__remove_magnetic_field - - + + - + KSGeoSpace__geo_space->KSCommandMemberRemoveSpaceInteractionData__remove_space_interaction - - + + - + KSGeoSpace__geo_space->KSCommandMemberRemoveTermData__remove_term - - + + - + KSGeoSpace__geo_space->KSCommandMemberSetDensityData__set_density - - + + - + KSGeoSpace__geo_space->KSCommandMemberSetStepDataData__set_step_data - - + + - + KSGeoSpace__geo_space->KSCommandMemberSetStepPointData__set_step_point - - + + - + KSGeoSpace__geo_space->KSCommandMemberSetTrackDataData__set_track_data - - + + - + KSGeoSpace__geo_space->KSCommandMemberSetTrackPointData__set_track_point - - + + - + KSGeoSpace__geo_space->KSCommandMemberSetTrajectoryData__set_trajectory - - + + - + KSGeoSpace__geo_space__name - -name + +name - + KSGeoSpace__geo_space->KSGeoSpace__geo_space__name - - + + - + KSGeoSpace__geo_space__spaces - -spaces + +spaces - + KSGeoSpace__geo_space->KSGeoSpace__geo_space__spaces - - + + - + KSGeoSurface__geo_surface->KSCommandMemberAddElectricFieldData__add_electric_field - - + + - + KSGeoSurface__geo_surface->KSCommandMemberAddMagneticFieldData__add_magnetic_field - - + + - + KSGeoSurface__geo_surface->KSCommandMemberAddStepModifierData__add_step_modifier - - + + - + KSGeoSurface__geo_surface->KSCommandMemberAddStepOutputData__add_step_output - - + + - + KSGeoSurface__geo_surface->KSCommandMemberAddTerminatorData__add_terminator - - + + - + KSGeoSurface__geo_surface->KSCommandMemberAddTrackOutputData__add_track_output - - + + - + KSGeoSurface__geo_surface->KSCommandMemberClearSurfaceInteractionData__clear_surface_interaction - - + + - + KSGeoSurface__geo_surface->KSCommandMemberData__command - - + + - + KSGeoSurface__geo_surface->KSCommandMemberRemoveElectricFieldData__remove_magnetic_field - - + + - + KSGeoSurface__geo_surface->KSCommandMemberRemoveStepModifierData__remove_step_modifier - - + + - + KSGeoSurface__geo_surface->KSCommandMemberRemoveStepOutputData__remove_step_output - - + + - + KSGeoSurface__geo_surface->KSCommandMemberRemoveTerminatorData__remove_terminator - - + + - + KSGeoSurface__geo_surface->KSCommandMemberRemoveTrackOutputData__remove_track_output - - + + - + KSGeoSurface__geo_surface->KSCommandMemberSetSurfaceInteractionData__set_surface_interaction - - + + - + KSGeoSurface__geo_surface__name - -name + +name - + KSGeoSurface__geo_surface->KSGeoSurface__geo_surface__name - - + + - + KSGeoSurface__geo_surface__spaces - -spaces + +spaces - + KSGeoSurface__geo_surface->KSGeoSurface__geo_surface__spaces - - + + - + KSGeoSurface__geo_surface__surfaces - -surfaces + +surfaces - + KSGeoSurface__geo_surface->KSGeoSurface__geo_surface__surfaces - - + + - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate__life_time - -life_time + +life_time - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate->KSIntDecayCalculatorDeathConstRate__decay_death_const_rate__life_time - - + + - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate->KSIntDecayCalculatorDeathConstRate__decay_death_const_rate__max_pid - - + + - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate->KSIntDecayCalculatorDeathConstRate__decay_death_const_rate__min_pid - - + + - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate__name - -name + +name - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate->KSIntDecayCalculatorDeathConstRate__decay_death_const_rate__name - - + + - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate->KSIntDecayCalculatorDeathConstRate__decay_death_const_rate__target_pid - - + + - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr->KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr__max_pid - - + + - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr->KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr__min_pid - - + + - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr__name - -name + +name - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr->KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr__name - - + + - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr->KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr__target_pid - - + + - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr__temperature - -temperature + +temperature - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr->KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr__temperature - - + + - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation->KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation__max_pid - - + + - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation->KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation__min_pid - - + + - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation__name - -name + +name - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation->KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation__name - - + + - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation->KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation__target_pid - - + + - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation__temperature - -temperature + +temperature - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation->KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation__temperature - - + + - + KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous->KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous__max_pid - - + + - + KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous->KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous__min_pid - - + + - + KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous__name - -name + +name - + KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous->KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous__name - - + + - + KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous->KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous__target_pid - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation->KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation__max_pid - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation->KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation__min_pid - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation__name - -name + +name - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation->KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation__name - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation->KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation__target_pid - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation__temperature - -temperature + +temperature - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation->KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation__temperature - - + + - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation->KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation__max_pid - - + + - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation->KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation__min_pid - - + + - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation__name - -name + +name - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation->KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation__name - - + + - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation->KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation__target_pid - - + + - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation__temperature - -temperature + +temperature - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation->KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation__temperature - - + + - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation->KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation__max_pid - - + + - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation->KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation__min_pid - - + + - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation__name - -name + +name - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation->KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation__name - - + + - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation->KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation__target_pid - - + + - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation__temperature - -temperature + +temperature - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation->KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation__temperature - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous__max_pid - -max_pid + +max_pid - + KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous->KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous__max_pid - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous__min_pid - -min_pid + +min_pid - + KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous->KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous__min_pid - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous__name - -name + +name - + KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous->KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous__name - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous__target_pid - -target_pid + +target_pid - + KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous->KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous__target_pid - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenDirectionSphericalComposite__direction_spherical_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenDirectionSurfaceComposite__direction_surface_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyBetaDecay__energy_beta_decay - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyBetaRecoil__energy_beta_recoil - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyComposite__energy_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyKryptonEvent__energy_krypton_event - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyLeadEvent__energy_lead_event - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyRadonEvent__energy_radon_event - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyRydberg__energy_rydberg - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenLComposite__l_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenLStatistical__l_statistical - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenLUniformMaxN__l_uniform_max_n - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenMomentumRectangularComposite__momentum_rectangular_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenNComposite__n_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueFix__pid_fix - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueFormula__pid_formula - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueGauss__pid_gauss - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueHistogram__pid_histogram - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueList__pid_list - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValuePareto__pid_pareto - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueSet__pid_set - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueUniform__pid_uniform - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionCylindricalComposite__position_cylindrical_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionFluxTube__position_flux_tube - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionFrustrumComposite__position_frustrum_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionMask__position_mask - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionMeshSurfaceRandom__position_mesh_surface_random - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionRectangularComposite__position_rectangular_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionSpaceRandom__position_space_random - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionSphericalComposite__position_spherical_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionSurfaceAdjustmentStep__position_surface_adjustment_step - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionSurfaceRandom__position_surface_random - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenSpinComposite__spin_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenSpinRelativeComposite__spin_relative_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenTimeComposite__time_composite - - + + - + KSGenGeneratorComposite__decay_product_generator__creator - -creator + +creator - + KSGenGeneratorComposite__decay_product_generator->KSGenGeneratorComposite__decay_product_generator__creator - - + + - + KSGenGeneratorComposite__decay_product_generator__name - -name + +name - + KSGenGeneratorComposite__decay_product_generator->KSGenGeneratorComposite__decay_product_generator__name - - + + - + KSGenGeneratorComposite__decay_product_generator__pid - -pid + +pid - + KSGenGeneratorComposite__decay_product_generator->KSGenGeneratorComposite__decay_product_generator__pid - - + + - + KSGenGeneratorComposite__decay_product_generator__special - -special + +special - + KSGenGeneratorComposite__decay_product_generator->KSGenGeneratorComposite__decay_product_generator__special - - + + - + KSGenGeneratorComposite__decay_product_generator__string_id - -string_id + +string_id - + KSGenGeneratorComposite__decay_product_generator->KSGenGeneratorComposite__decay_product_generator__string_id - - + + - + KSIntCalculatorArgonSet__calculator_argon__double_ionisation - -double_ionisation + +double_ionisation - + KSIntCalculatorArgonSet__calculator_argon->KSIntCalculatorArgonSet__calculator_argon__double_ionisation - - + + - + KSIntCalculatorArgonSet__calculator_argon__elastic - -elastic + +elastic - + KSIntCalculatorArgonSet__calculator_argon->KSIntCalculatorArgonSet__calculator_argon__elastic - - + + - + KSIntCalculatorArgonSet__calculator_argon__excitation - -excitation + +excitation - + KSIntCalculatorArgonSet__calculator_argon->KSIntCalculatorArgonSet__calculator_argon__excitation - - + + - + KSIntCalculatorArgonSet__calculator_argon__name - -name + +name - + KSIntCalculatorArgonSet__calculator_argon->KSIntCalculatorArgonSet__calculator_argon__name - - + + - + KSIntCalculatorArgonSet__calculator_argon__single_ionisation - -single_ionisation + +single_ionisation - + KSIntCalculatorArgonSet__calculator_argon->KSIntCalculatorArgonSet__calculator_argon__single_ionisation - - + + - + KSIntCalculatorConstant__calculator_constant__cross_section - -cross_section + +cross_section - + KSIntCalculatorConstant__calculator_constant->KSIntCalculatorConstant__calculator_constant__cross_section - - + + - + KSIntCalculatorConstant__calculator_constant__name - -name + +name - + KSIntCalculatorConstant__calculator_constant->KSIntCalculatorConstant__calculator_constant__name - - + + - + KSIntCalculatorHydrogenSet__calculator_hydrogen__elastic - -elastic + +elastic - + KSIntCalculatorHydrogenSet__calculator_hydrogen->KSIntCalculatorHydrogenSet__calculator_hydrogen__elastic - - + + - + KSIntCalculatorHydrogenSet__calculator_hydrogen__excitation - -excitation + +excitation - + KSIntCalculatorHydrogenSet__calculator_hydrogen->KSIntCalculatorHydrogenSet__calculator_hydrogen__excitation - - + + - + KSIntCalculatorHydrogenSet__calculator_hydrogen__ionisation - -ionisation + +ionisation - + KSIntCalculatorHydrogenSet__calculator_hydrogen->KSIntCalculatorHydrogenSet__calculator_hydrogen__ionisation - - + + - + KSIntCalculatorHydrogenSet__calculator_hydrogen__molecule - -molecule + +molecule - + KSIntCalculatorHydrogenSet__calculator_hydrogen->KSIntCalculatorHydrogenSet__calculator_hydrogen__molecule - - + + - + KSIntCalculatorHydrogenSet__calculator_hydrogen__name - -name + +name - + KSIntCalculatorHydrogenSet__calculator_hydrogen->KSIntCalculatorHydrogenSet__calculator_hydrogen__name - - + + - + KSIntCalculatorIon__calculator_ion__gas - -gas + +gas - + KSIntCalculatorIon__calculator_ion->KSIntCalculatorIon__calculator_ion__gas - - + + - + KSIntCalculatorIon__calculator_ion__name - -name + +name - + KSIntCalculatorIon__calculator_ion->KSIntCalculatorIon__calculator_ion__name - - + + - + KSIntCalculatorKESSSet__calculator_kess__auger_relaxation - -auger_relaxation + +auger_relaxation - + KSIntCalculatorKESSSet__calculator_kess->KSIntCalculatorKESSSet__calculator_kess__auger_relaxation - - + + - + KSIntCalculatorKESSSet__calculator_kess__elastic - -elastic + +elastic - + KSIntCalculatorKESSSet__calculator_kess->KSIntCalculatorKESSSet__calculator_kess__elastic - - + + - + KSIntCalculatorKESSSet__calculator_kess__inelastic - -inelastic + +inelastic - + KSIntCalculatorKESSSet__calculator_kess->KSIntCalculatorKESSSet__calculator_kess__inelastic - - + + - + KSIntCalculatorKESSSet__calculator_kess__name - -name + +name - + KSIntCalculatorKESSSet__calculator_kess->KSIntCalculatorKESSSet__calculator_kess__name - - + + - + KSIntCalculatorKESSSet__calculator_kess__photo_absorbtion - -photo_absorbtion + +photo_absorbtion + + + +KSIntCalculatorKESSSet__calculator_kess->KSIntCalculatorKESSSet__calculator_kess__photo_absorbtion + + + + + +KSIntCalculatorMott__calculator_mott__name + +name + + + +KSIntCalculatorMott__calculator_mott->KSIntCalculatorMott__calculator_mott__name + + + + + +KSIntCalculatorMott__calculator_mott__nucleus + +nucleus + + + +KSIntCalculatorMott__calculator_mott->KSIntCalculatorMott__calculator_mott__nucleus + + + + + +KSIntCalculatorMott__calculator_mott__theta_max + +theta_max + + + +KSIntCalculatorMott__calculator_mott->KSIntCalculatorMott__calculator_mott__theta_max + + - - -KSIntCalculatorKESSSet__calculator_kess->KSIntCalculatorKESSSet__calculator_kess__photo_absorbtion - - + + +KSIntCalculatorMott__calculator_mott__theta_min + +theta_min + + + +KSIntCalculatorMott__calculator_mott->KSIntCalculatorMott__calculator_mott__theta_min + + - + KSIntDensityConstant__density_constant__density - -density + +density - + KSIntDensityConstant__density_constant->KSIntDensityConstant__density_constant__density - - + + - + KSIntDensityConstant__density_constant__name - -name + +name - + KSIntDensityConstant__density_constant->KSIntDensityConstant__density_constant__name - - + + - + KSIntDensityConstant__density_constant__pressure - -pressure + +pressure - + KSIntDensityConstant__density_constant->KSIntDensityConstant__density_constant__pressure - - + + - + KSIntDensityConstant__density_constant__pressure_mbar - -pressure_mbar + +pressure_mbar - + KSIntDensityConstant__density_constant->KSIntDensityConstant__density_constant__pressure_mbar - - + + - + KSIntDensityConstant__density_constant__temperature - -temperature + +temperature - + KSIntDensityConstant__density_constant->KSIntDensityConstant__density_constant__temperature - - + + - + KSTrajControlBChange__control_B_change__fraction - -fraction + +fraction - + KSTrajControlBChange__control_B_change->KSTrajControlBChange__control_B_change__fraction - - + + - + KSTrajControlBChange__control_B_change__name - -name + +name - + KSTrajControlBChange__control_B_change->KSTrajControlBChange__control_B_change__name - - + + - + KSTrajControlCyclotron__control_cyclotron__fraction - -fraction + +fraction - + KSTrajControlCyclotron__control_cyclotron->KSTrajControlCyclotron__control_cyclotron__fraction - - + + - + KSTrajControlCyclotron__control_cyclotron__name - -name + +name - + KSTrajControlCyclotron__control_cyclotron->KSTrajControlCyclotron__control_cyclotron__name - - + + - + KSTrajControlEnergy__control_energy__adjustment - -adjustment + +adjustment - + KSTrajControlEnergy__control_energy->KSTrajControlEnergy__control_energy__adjustment - - + + - + KSTrajControlEnergy__control_energy__adjustment_down - -adjustment_down + +adjustment_down - + KSTrajControlEnergy__control_energy->KSTrajControlEnergy__control_energy__adjustment_down - - + + - + KSTrajControlEnergy__control_energy__adjustment_up - -adjustment_up + +adjustment_up - + KSTrajControlEnergy__control_energy->KSTrajControlEnergy__control_energy__adjustment_up - - + + - + KSTrajControlEnergy__control_energy__initial_step - -initial_step + +initial_step - + KSTrajControlEnergy__control_energy->KSTrajControlEnergy__control_energy__initial_step - - + + - + KSTrajControlEnergy__control_energy__lower_limit - -lower_limit + +lower_limit - + KSTrajControlEnergy__control_energy->KSTrajControlEnergy__control_energy__lower_limit - - + + - + KSTrajControlEnergy__control_energy__max_length - -max_length + +max_length - + KSTrajControlEnergy__control_energy->KSTrajControlEnergy__control_energy__max_length - - + + - + KSTrajControlEnergy__control_energy__min_length - -min_length + +min_length - + KSTrajControlEnergy__control_energy->KSTrajControlEnergy__control_energy__min_length - - + + - + KSTrajControlEnergy__control_energy__name - -name + +name - + KSTrajControlEnergy__control_energy->KSTrajControlEnergy__control_energy__name - - + + - + KSTrajControlEnergy__control_energy__step_rescale - -step_rescale + +step_rescale - + KSTrajControlEnergy__control_energy->KSTrajControlEnergy__control_energy__step_rescale - - + + - + KSTrajControlEnergy__control_energy__upper_limit - -upper_limit + +upper_limit - + KSTrajControlEnergy__control_energy->KSTrajControlEnergy__control_energy__upper_limit - - + + - + KSTrajControlLength__control_length__length - -length + +length - + KSTrajControlLength__control_length->KSTrajControlLength__control_length__length - - + + - + KSTrajControlLength__control_length__name - -name + +name - + KSTrajControlLength__control_length->KSTrajControlLength__control_length__name - - + + - + KSTrajControlMagneticMoment__control_magnetic_moment__lower_limit - -lower_limit + +lower_limit - + KSTrajControlMagneticMoment__control_magnetic_moment->KSTrajControlMagneticMoment__control_magnetic_moment__lower_limit - - + + - + KSTrajControlMagneticMoment__control_magnetic_moment__name - -name + +name - + KSTrajControlMagneticMoment__control_magnetic_moment->KSTrajControlMagneticMoment__control_magnetic_moment__name - - + + - + KSTrajControlMagneticMoment__control_magnetic_moment__upper_limit - -upper_limit + +upper_limit - + KSTrajControlMagneticMoment__control_magnetic_moment->KSTrajControlMagneticMoment__control_magnetic_moment__upper_limit - - + + - + KSTrajControlMomentumNumericalError__control_momentum_error__absolute_momentum_error - -absolute_momentum_error + +absolute_momentum_error - + KSTrajControlMomentumNumericalError__control_momentum_error->KSTrajControlMomentumNumericalError__control_momentum_error__absolute_momentum_error - - + + - + KSTrajControlMomentumNumericalError__control_momentum_error__name - -name + +name - + KSTrajControlMomentumNumericalError__control_momentum_error->KSTrajControlMomentumNumericalError__control_momentum_error__name - - + + - + KSTrajControlMomentumNumericalError__control_momentum_error__safety_factor - -safety_factor + +safety_factor - + KSTrajControlMomentumNumericalError__control_momentum_error->KSTrajControlMomentumNumericalError__control_momentum_error__safety_factor - - + + - + KSTrajControlMomentumNumericalError__control_momentum_error__solver_order - -solver_order + +solver_order - + KSTrajControlMomentumNumericalError__control_momentum_error->KSTrajControlMomentumNumericalError__control_momentum_error__solver_order - - + + - + KSTrajControlPositionNumericalError__control_position_error__absolute_position_error - -absolute_position_error + +absolute_position_error - + KSTrajControlPositionNumericalError__control_position_error->KSTrajControlPositionNumericalError__control_position_error__absolute_position_error - - + + - + KSTrajControlPositionNumericalError__control_position_error__name - -name + +name - + KSTrajControlPositionNumericalError__control_position_error->KSTrajControlPositionNumericalError__control_position_error__name - - + + - + KSTrajControlPositionNumericalError__control_position_error__safety_factor - -safety_factor + +safety_factor - + KSTrajControlPositionNumericalError__control_position_error->KSTrajControlPositionNumericalError__control_position_error__safety_factor - - + + - + KSTrajControlPositionNumericalError__control_position_error__solver_order - -solver_order + +solver_order - + KSTrajControlPositionNumericalError__control_position_error->KSTrajControlPositionNumericalError__control_position_error__solver_order - - + + - + KSTrajControlTime__control_time__name - -name + +name - + KSTrajControlTime__control_time->KSTrajControlTime__control_time__name - - + + - + KSTrajControlTime__control_time__time - -time + +time - + KSTrajControlTime__control_time->KSTrajControlTime__control_time__time - - + + - + KSTrajIntegratorRK54__integrator_rk54__name - -name + +name - + KSTrajIntegratorRK54__integrator_rk54->KSTrajIntegratorRK54__integrator_rk54__name - - + + - + KSTrajIntegratorRK65__integrator_rk65__name - -name + +name - + KSTrajIntegratorRK65__integrator_rk65->KSTrajIntegratorRK65__integrator_rk65__name - - + + - + KSTrajIntegratorRK8__integrator_rk8__name - -name + +name - + KSTrajIntegratorRK8__integrator_rk8->KSTrajIntegratorRK8__integrator_rk8__name - - + + - + KSTrajIntegratorRK86__integrator_rk86__name - -name + +name - + KSTrajIntegratorRK86__integrator_rk86->KSTrajIntegratorRK86__integrator_rk86__name - - + + - + KSTrajIntegratorRK87__integrator_rk87__name - -name + +name - + KSTrajIntegratorRK87__integrator_rk87->KSTrajIntegratorRK87__integrator_rk87__name - - + + - + KSTrajIntegratorRKDP54__integrator_rkdp54__name - -name + +name - + KSTrajIntegratorRKDP54__integrator_rkdp54->KSTrajIntegratorRKDP54__integrator_rkdp54__name - - + + - + KSTrajIntegratorRKDP853__integrator_rkdp853__name - -name + +name - + KSTrajIntegratorRKDP853__integrator_rkdp853->KSTrajIntegratorRKDP853__integrator_rkdp853__name - - + + - + KSTrajInterpolatorContinuousRungeKutta__interpolator_crk__name - -name + +name - + KSTrajInterpolatorContinuousRungeKutta__interpolator_crk->KSTrajInterpolatorContinuousRungeKutta__interpolator_crk__name - - + + - + KSTrajInterpolatorFast__interpolator_fast__name - -name + +name - + KSTrajInterpolatorFast__interpolator_fast->KSTrajInterpolatorFast__interpolator_fast__name - - + + - + KSTrajInterpolatorHermite__interpolator_hermite__name - -name + +name - + KSTrajInterpolatorHermite__interpolator_hermite->KSTrajInterpolatorHermite__interpolator_hermite__name - - + + - + KSTrajTermDrift__term_drift__name - -name + +name - + KSTrajTermDrift__term_drift->KSTrajTermDrift__term_drift__name - - + + - + KSTrajTermGyration__term_gyration__name - -name + +name - + KSTrajTermGyration__term_gyration->KSTrajTermGyration__term_gyration__name - - + + - + KSTrajTermPropagation__term_propagation__direction - -direction + +direction - + KSTrajTermPropagation__term_propagation->KSTrajTermPropagation__term_propagation__direction - - + + - + KSTrajTermPropagation__term_propagation__name - -name + +name - + KSTrajTermPropagation__term_propagation->KSTrajTermPropagation__term_propagation__name - - + + - + KSTrajTermSynchrotron__term_synchrotron__enhancement - -enhancement + +enhancement - + KSTrajTermSynchrotron__term_synchrotron->KSTrajTermSynchrotron__term_synchrotron__enhancement - - + + - + KSTrajTermSynchrotron__term_synchrotron__name - -name + +name - + KSTrajTermSynchrotron__term_synchrotron->KSTrajTermSynchrotron__term_synchrotron__name - - + + - + KSTrajTermSynchrotron__term_synchrotron__old_methode - -old_methode + +old_methode - + KSTrajTermSynchrotron__term_synchrotron->KSTrajTermSynchrotron__term_synchrotron__old_methode - - + + - + KSTrajControlMDot__control_m_dot__fraction - -fraction + +fraction - + KSTrajControlMDot__control_m_dot->KSTrajControlMDot__control_m_dot__fraction - - + + - + KSTrajControlMDot__control_m_dot__name - -name + +name - + KSTrajControlMDot__control_m_dot->KSTrajControlMDot__control_m_dot__name - - + + - + KSTrajControlSpinPrecession__control_spin_precession__fraction - -fraction + +fraction - + KSTrajControlSpinPrecession__control_spin_precession->KSTrajControlSpinPrecession__control_spin_precession__fraction - - + + - + KSTrajControlSpinPrecession__control_spin_precession__name - -name + +name - + KSTrajControlSpinPrecession__control_spin_precession->KSTrajControlSpinPrecession__control_spin_precession__name - - + + - + KSTrajTermGravity__term_gravity__gravity - -gravity + +gravity - + KSTrajTermGravity__term_gravity->KSTrajTermGravity__term_gravity__gravity - - + + - + KSTrajTermGravity__term_gravity__name - -name + +name - + KSTrajTermGravity__term_gravity->KSTrajTermGravity__term_gravity__name - - + + - + KSTrajIntegratorSym4__integrator_sym4__name - -name + +name - + KSTrajIntegratorSym4__integrator_sym4->KSTrajIntegratorSym4__integrator_sym4__name - - + + diff --git a/Documentation/Bindings/bindings_full.md b/Documentation/Bindings/bindings_full.md index a6ca446a7..1160f62b6 100644 --- a/Documentation/Bindings/bindings_full.md +++ b/Documentation/Bindings/bindings_full.md @@ -711,7 +711,7 @@ |element name|source files|child elements|child types|attributes|attribute types| |-----|-----|-----|-----|-----|-----| -|`kassiopeia`|[*KSRootBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Simulation/Source/KSRootBuilder.cxx)|[`kess_elastic_elsepa`](#kesselasticelsepa)
[`kess_inelastic_bethefano`](#kessinelasticbethefano)
[`kess_inelastic_penn`](#kessinelasticpenn)
[`kess_surface_interaction`](#kesssurfaceinteraction)
[`ks_command_group`](#kscommandgroup)
[`ks_command_member`](#kscommandmemberdata)
[`ks_component_delta`](#kscomponentdeltadata)
[`ks_component_group`](#kscomponentgroup)
[`ks_component_integral`](#kscomponentintegraldata)
[`ks_component_math`](#kscomponentmathdata)
[`ks_component_maximum`](#kscomponentmaximumdata)
[`ks_component_maximum_at`](#kscomponentmaximumatdata)
[`ks_component_member`](#kscomponentmemberdata)
[`ks_component_minimum`](#kscomponentminimumdata)
[`ks_component_minimum_at`](#kscomponentminimumatdata)
[`ks_root_electric_field`](#ksrootelectricfield)
[`ks_root_event_modifier`](#ksrooteventmodifier)
[`ks_root_generator`](#ksrootgenerator)
[`ks_root_magnetic_field`](#ksrootmagneticfield)
[`ks_root_run_modifier`](#ksrootrunmodifier)
[`ks_root_space_interaction`](#ksrootspaceinteraction)
[`ks_root_space_navigator`](#ksrootspacenavigator)
[`ks_root_step_modifier`](#ksrootstepmodifier)
[`ks_root_surface_interaction`](#ksrootsurfaceinteraction)
[`ks_root_surface_navigator`](#ksrootsurfacenavigator)
[`ks_root_terminator`](#ksrootterminator)
[`ks_root_track_modifier`](#ksroottrackmodifier)
[`ks_root_trajectory`](#ksroottrajectory)
[`ks_root_writer`](#ksrootwriter)
[`ks_simulation`](#kssimulation)
[`ksfield_electric_constant`](#kelectrostaticconstantfield)
[`ksfield_electric_induced_azi`](#kinducedazimuthalelectricfield)
[`ksfield_electric_potentialmap`](#kelectrostaticpotentialmap)
[`ksfield_electric_potentialmap_calculator`](#kelectrostaticpotentialmapcalculator)
[`ksfield_electric_quadrupole`](#kelectricquadrupolefield)
[`ksfield_electric_ramped`](#krampedelectricfield)
[`ksfield_electric_ramped_2fields`](#krampedelectric2field)
[`ksfield_electromagnet`](#kgstaticelectromagnetfield)
[`ksfield_electrostatic`](#kgelectrostaticboundaryfield)
[`ksfield_magnetic_constant`](#kmagnetostaticconstantfield)
[`ksfield_magnetic_dipole`](#kmagneticdipolefield)
[`ksfield_magnetic_fieldmap`](#kmagnetostaticfieldmap)
[`ksfield_magnetic_fieldmap_calculator`](#kmagnetostaticfieldmapcalculator)
[`ksfield_magnetic_ramped`](#krampedmagneticfield)
[`ksfield_magnetic_super_position`](#kmagneticsuperpositionfield)
[`ksgen_direction_spherical_composite`](#ksgendirectionsphericalcomposite)
[`ksgen_direction_spherical_magnetic_field`](#ksgendirectionsphericalmagneticfield)
[`ksgen_direction_surface_composite`](#ksgendirectionsurfacecomposite)
[`ksgen_energy_beta_decay`](#ksgenenergybetadecay)
[`ksgen_energy_beta_recoil`](#ksgenenergybetarecoil)
[`ksgen_energy_composite`](#ksgenenergycomposite)
[`ksgen_energy_krypton_event`](#ksgenenergykryptonevent)
[`ksgen_energy_lead_event`](#ksgenenergyleadevent)
[`ksgen_energy_radon_event`](#ksgenenergyradonevent)
[`ksgen_energy_rydberg`](#ksgenenergyrydberg)
[`ksgen_generator_composite`](#ksgengeneratorcomposite)
[`ksgen_generator_file`](#ksgengeneratortextfile)
[`ksgen_generator_simulation`](#ksgengeneratorsimulation)
[`ksgen_l_composite`](#ksgenlcomposite)
[`ksgen_l_statistical`](#ksgenlstatistical)
[`ksgen_l_uniform_max_n`](#ksgenluniformmaxn)
[`ksgen_momentum_rectangular_composite`](#ksgenmomentumrectangularcomposite)
[`ksgen_n_composite`](#ksgenncomposite)
[`ksgen_position_cylindrical_composite`](#ksgenpositioncylindricalcomposite)
[`ksgen_position_flux_tube`](#ksgenpositionfluxtube)
[`ksgen_position_frustrum_composite`](#ksgenpositionfrustrumcomposite)
[`ksgen_position_homogeneous_flux_tube`](#ksgenpositionhomogeneousfluxtube)
[`ksgen_position_mask`](#ksgenpositionmask)
[`ksgen_position_mesh_surface_random`](#ksgenpositionmeshsurfacerandom)
[`ksgen_position_rectangular_composite`](#ksgenpositionrectangularcomposite)
[`ksgen_position_space_random`](#ksgenpositionspacerandom)
[`ksgen_position_spherical_composite`](#ksgenpositionsphericalcomposite)
[`ksgen_position_surface_adjustment_step`](#ksgenpositionsurfaceadjustmentstep)
[`ksgen_position_surface_random`](#ksgenpositionsurfacerandom)
[`ksgen_spin_composite`](#ksgenspincomposite)
[`ksgen_spin_composite_relative`](#ksgenspinrelativecomposite)
[`ksgen_time_composite`](#ksgentimecomposite)
[`ksgen_value_angle_cosine`](#ksgenvalueanglecosine)
[`ksgen_value_angle_spherical`](#ksgenvalueanglespherical)
[`ksgen_value_boltzmann`](#ksgenvalueboltzmann)
[`ksgen_value_fermi`](#ksgenvaluefermi)
[`ksgen_value_fix`](#ksgenvaluefix)
[`ksgen_value_formula`](#ksgenvalueformula)
[`ksgen_value_gauss`](#ksgenvaluegauss)
[`ksgen_value_generalized_gauss`](#ksgenvaluegeneralizedgauss)
[`ksgen_value_histogram`](#ksgenvaluehistogram)
[`ksgen_value_list`](#ksgenvaluelist)
[`ksgen_value_pareto`](#ksgenvaluepareto)
[`ksgen_value_radius_cylindrical`](#ksgenvalueradiuscylindrical)
[`ksgen_value_radius_fraction`](#ksgenvalueradiusfraction)
[`ksgen_value_radius_spherical`](#ksgenvalueradiusspherical)
[`ksgen_value_set`](#ksgenvalueset)
[`ksgen_value_uniform`](#ksgenvalueuniform)
[`ksgen_value_z_frustrum`](#ksgenvaluezfrustrum)
[`ksgeo_side`](#ksgeoside)
[`ksgeo_space`](#ksgeospace)
[`ksgeo_surface`](#ksgeosurface)
[`ksint_calculator_constant`](#ksintcalculatorconstant)
[`ksint_calculator_ion`](#ksintcalculatorion)
[`ksint_decay`](#ksintdecay)
[`ksint_decay_calculator_death_const_rate`](#ksintdecaycalculatordeathconstrate)
[`ksint_decay_calculator_ferenc_bbr_transition`](#ksintdecaycalculatorferencbbrtransition)
[`ksint_decay_calculator_ferenc_ionisation`](#ksintdecaycalculatorferencionisation)
[`ksint_decay_calculator_ferenc_spontaneous`](#ksintdecaycalculatorferencspontaneous)
[`ksint_decay_calculator_glukhov_deexcitation`](#ksintdecaycalculatorglukhovdeexcitation)
[`ksint_decay_calculator_glukhov_excitation`](#ksintdecaycalculatorglukhovexcitation)
[`ksint_decay_calculator_glukhov_ionisation`](#ksintdecaycalculatorglukhovionisation)
[`ksint_decay_calculator_glukhov_spontaneous`](#ksintdecaycalculatorglukhovspontaneous)
[`ksint_density_constant`](#ksintdensityconstant)
[`ksint_scattering`](#ksintscattering)
[`ksint_spin_flip`](#ksintspinflip)
[`ksint_spin_flip_pulse`](#ksintspinflippulse)
[`ksint_spin_rotate_y_pulse`](#ksintspinrotateypulse)
[`ksint_surface_UCN`](#ksintsurfaceucn)
[`ksint_surface_diffuse`](#ksintsurfacediffuse)
[`ksint_surface_multiplication`](#ksintsurfacemultiplication)
[`ksint_surface_specular`](#ksintsurfacespecular)
[`ksint_surface_spin_flip`](#ksintsurfacespinflip)
[`ksmod_dynamic_enhancement`](#ksmoddynamicenhancement)
[`ksmod_event_report`](#ksmodeventreport)
[`ksmod_split_on_turn`](#ksmodsplitonturn)
[`ksnav_meshed_space`](#ksnavmeshedspace)
[`ksnav_space`](#ksnavspace)
[`ksnav_surface`](#ksnavsurface)
[`ksterm_death`](#kstermdeath)
[`ksterm_magnetron`](#kstermmagnetron)
[`ksterm_max_energy`](#kstermmaxenergy)
[`ksterm_max_length`](#kstermmaxlength)
[`ksterm_max_long_energy`](#kstermmaxlongenergy)
[`ksterm_max_r`](#kstermmaxr)
[`ksterm_max_step_time`](#kstermmaxsteptime)
[`ksterm_max_steps`](#kstermmaxsteps)
[`ksterm_max_time`](#kstermmaxtime)
[`ksterm_max_total_time`](#kstermmaxtotaltime)
[`ksterm_max_z`](#kstermmaxz)
[`ksterm_min_distance`](#kstermmindistance)
[`ksterm_min_energy`](#kstermminenergy)
[`ksterm_min_long_energy`](#kstermminlongenergy)
[`ksterm_min_r`](#kstermminr)
[`ksterm_min_z`](#kstermminz)
[`ksterm_output`](#kstermoutputdata)
[`ksterm_secondaries`](#kstermsecondaries)
[`ksterm_stepsize`](#kstermstepsize)
[`ksterm_trapped`](#kstermtrapped)
[`ksterm_zh_radius`](#kstermzhradius)
[`kstraj_control_B_change`](#kstrajcontrolbchange)
[`kstraj_control_cyclotron`](#kstrajcontrolcyclotron)
[`kstraj_control_energy`](#kstrajcontrolenergy)
[`kstraj_control_length`](#kstrajcontrollength)
[`kstraj_control_m_dot`](#kstrajcontrolmdot)
[`kstraj_control_magnetic_moment`](#kstrajcontrolmagneticmoment)
[`kstraj_control_momentum_numerical_error`](#kstrajcontrolmomentumnumericalerror)
[`kstraj_control_position_numerical_error`](#kstrajcontrolpositionnumericalerror)
[`kstraj_control_spin_precession`](#kstrajcontrolspinprecession)
[`kstraj_control_time`](#kstrajcontroltime)
[`kstraj_integrator_rk54`](#kstrajintegratorrk54)
[`kstraj_integrator_rk65`](#kstrajintegratorrk65)
[`kstraj_integrator_rk8`](#kstrajintegratorrk8)
[`kstraj_integrator_rk86`](#kstrajintegratorrk86)
[`kstraj_integrator_rk87`](#kstrajintegratorrk87)
[`kstraj_integrator_rkdp54`](#kstrajintegratorrkdp54)
[`kstraj_integrator_rkdp853`](#kstrajintegratorrkdp853)
[`kstraj_integrator_sym4`](#kstrajintegratorsym4)
[`kstraj_interpolator_crk`](#kstrajinterpolatorcontinuousrungekutta)
[`kstraj_interpolator_fast`](#kstrajinterpolatorfast)
[`kstraj_interpolator_hermite`](#kstrajinterpolatorhermite)
[`kstraj_term_constant_force_propagation`](#kstrajtermconstantforcepropagation)
[`kstraj_term_drift`](#kstrajtermdrift)
[`kstraj_term_gravity`](#kstrajtermgravity)
[`kstraj_term_gyration`](#kstrajtermgyration)
[`kstraj_term_propagation`](#kstrajtermpropagation)
[`kstraj_term_synchrotron`](#kstrajtermsynchrotron)
[`kstraj_trajectory_adiabatic`](#kstrajtrajectoryadiabatic)
[`kstraj_trajectory_adiabatic_spin`](#kstrajtrajectoryadiabaticspin)
[`kstraj_trajectory_electric`](#kstrajtrajectoryelectric)
[`kstraj_trajectory_exact`](#kstrajtrajectoryexact)
[`kstraj_trajectory_exact_spin`](#kstrajtrajectoryexactspin)
[`kstraj_trajectory_exact_trapped`](#kstrajtrajectoryexacttrapped)
[`kstraj_trajectory_linear`](#kstrajtrajectorylinear)
[`kstraj_trajectory_magnetic`](#kstrajtrajectorymagnetic)
[`kswrite_ascii`](#kswriteascii)
[`kswrite_root`](#kswriteroot)
[`kswrite_root_condition_output`](#kswriterootconditionoutputdata)
[`kswrite_root_condition_periodic`](#kswriterootconditionperiodicdata)
[`kswrite_root_condition_step`](#kswriterootconditionstepdata)
[`kswrite_root_condition_terminator`](#kswriterootconditionterminatordata)
[`kswrite_vtk`](#kswritevtk)
[`output`](#kscomponentmemberdata)
[`output_delta`](#kscomponentdeltadata)
[`output_group`](#kscomponentgroup)
[`output_integral`](#kscomponentintegraldata)
[`output_math`](#kscomponentmathdata)
[`output_maximum`](#kscomponentmaximumdata)
[`output_maximum_at`](#kscomponentmaximumatdata)
[`output_minimum`](#kscomponentminimumdata)
[`output_minimum_at`](#kscomponentminimumatdata)|*`KESSElasticElsepa`*
*`KESSInelasticBetheFano`*
*`KESSInelasticPenn`*
*`KESSSurfaceInteraction`*
*`KSCommandGroup`*
*`KSCommandMemberData`*
*`KSComponentDeltaData`*
*`KSComponentGroup`*
*`KSComponentIntegralData`*
*`KSComponentMathData`*
*`KSComponentMaximumData`*
*`KSComponentMaximumAtData`*
*`KSComponentMemberData`*
*`KSComponentMinimumData`*
*`KSComponentMinimumAtData`*
*`KSRootElectricField`*
*`KSRootEventModifier`*
*`KSRootGenerator`*
*`KSRootMagneticField`*
*`KSRootRunModifier`*
*`KSRootSpaceInteraction`*
*`KSRootSpaceNavigator`*
*`KSRootStepModifier`*
*`KSRootSurfaceInteraction`*
*`KSRootSurfaceNavigator`*
*`KSRootTerminator`*
*`KSRootTrackModifier`*
*`KSRootTrajectory`*
*`KSRootWriter`*
*`KSSimulation`*
*`KElectrostaticConstantField`*
*`KInducedAzimuthalElectricField`*
*`KElectrostaticPotentialmap`*
*`KElectrostaticPotentialmapCalculator`*
*`KElectricQuadrupoleField`*
*`KRampedElectricField`*
*`KRampedElectric2Field`*
*`KGStaticElectromagnetField`*
*`KGElectrostaticBoundaryField`*
*`KMagnetostaticConstantField`*
*`KMagneticDipoleField`*
*`KMagnetostaticFieldmap`*
*`KMagnetostaticFieldmapCalculator`*
*`KRampedMagneticField`*
*`KMagneticSuperpositionField`*
*`KSGenDirectionSphericalComposite`*
*`KSGenDirectionSphericalMagneticField`*
*`KSGenDirectionSurfaceComposite`*
*`KSGenEnergyBetaDecay`*
*`KSGenEnergyBetaRecoil`*
*`KSGenEnergyComposite`*
*`KSGenEnergyKryptonEvent`*
*`KSGenEnergyLeadEvent`*
*`KSGenEnergyRadonEvent`*
*`KSGenEnergyRydberg`*
*`KSGenGeneratorComposite`*
*`KSGenGeneratorTextFile`*
*`KSGenGeneratorSimulation`*
*`KSGenLComposite`*
*`KSGenLStatistical`*
*`KSGenLUniformMaxN`*
*`KSGenMomentumRectangularComposite`*
*`KSGenNComposite`*
*`KSGenPositionCylindricalComposite`*
*`KSGenPositionFluxTube`*
*`KSGenPositionFrustrumComposite`*
*`KSGenPositionHomogeneousFluxTube`*
*`KSGenPositionMask`*
*`KSGenPositionMeshSurfaceRandom`*
*`KSGenPositionRectangularComposite`*
*`KSGenPositionSpaceRandom`*
*`KSGenPositionSphericalComposite`*
*`KSGenPositionSurfaceAdjustmentStep`*
*`KSGenPositionSurfaceRandom`*
*`KSGenSpinComposite`*
*`KSGenSpinRelativeComposite`*
*`KSGenTimeComposite`*
*`KSGenValueAngleCosine`*
*`KSGenValueAngleSpherical`*
*`KSGenValueBoltzmann`*
*`KSGenValueFermi`*
*`KSGenValueFix`*
*`KSGenValueFormula`*
*`KSGenValueGauss`*
*`KSGenValueGeneralizedGauss`*
*`KSGenValueHistogram`*
*`KSGenValueList`*
*`KSGenValuePareto`*
*`KSGenValueRadiusCylindrical`*
*`KSGenValueRadiusFraction`*
*`KSGenValueRadiusSpherical`*
*`KSGenValueSet`*
*`KSGenValueUniform`*
*`KSGenValueZFrustrum`*
*`KSGeoSide`*
*`KSGeoSpace`*
*`KSGeoSurface`*
*`KSIntCalculatorConstant`*
*`KSIntCalculatorIon`*
*`KSIntDecay`*
*`KSIntDecayCalculatorDeathConstRate`*
*`KSIntDecayCalculatorFerencBBRTransition`*
*`KSIntDecayCalculatorFerencIonisation`*
*`KSIntDecayCalculatorFerencSpontaneous`*
*`KSIntDecayCalculatorGlukhovDeExcitation`*
*`KSIntDecayCalculatorGlukhovExcitation`*
*`KSIntDecayCalculatorGlukhovIonisation`*
*`KSIntDecayCalculatorGlukhovSpontaneous`*
*`KSIntDensityConstant`*
*`KSIntScattering`*
*`KSIntSpinFlip`*
*`KSIntSpinFlipPulse`*
*`KSIntSpinRotateYPulse`*
*`KSIntSurfaceUCN`*
*`KSIntSurfaceDiffuse`*
*`KSIntSurfaceMultiplication`*
*`KSIntSurfaceSpecular`*
*`KSIntSurfaceSpinFlip`*
*`KSModDynamicEnhancement`*
*`KSModEventReport`*
*`KSModSplitOnTurn`*
*`KSNavMeshedSpace`*
*`KSNavSpace`*
*`KSNavSurface`*
*`KSTermDeath`*
*`KSTermMagnetron`*
*`KSTermMaxEnergy`*
*`KSTermMaxLength`*
*`KSTermMaxLongEnergy`*
*`KSTermMaxR`*
*`KSTermMaxStepTime`*
*`KSTermMaxSteps`*
*`KSTermMaxTime`*
*`KSTermMaxTotalTime`*
*`KSTermMaxZ`*
*`KSTermMinDistance`*
*`KSTermMinEnergy`*
*`KSTermMinLongEnergy`*
*`KSTermMinR`*
*`KSTermMinZ`*
*`KSTermOutputData`*
*`KSTermSecondaries`*
*`KSTermStepsize`*
*`KSTermTrapped`*
*`KSTermZHRadius`*
*`KSTrajControlBChange`*
*`KSTrajControlCyclotron`*
*`KSTrajControlEnergy`*
*`KSTrajControlLength`*
*`KSTrajControlMDot`*
*`KSTrajControlMagneticMoment`*
*`KSTrajControlMomentumNumericalError`*
*`KSTrajControlPositionNumericalError`*
*`KSTrajControlSpinPrecession`*
*`KSTrajControlTime`*
*`KSTrajIntegratorRK54`*
*`KSTrajIntegratorRK65`*
*`KSTrajIntegratorRK8`*
*`KSTrajIntegratorRK86`*
*`KSTrajIntegratorRK87`*
*`KSTrajIntegratorRKDP54`*
*`KSTrajIntegratorRKDP853`*
*`KSTrajIntegratorSym4`*
*`KSTrajInterpolatorContinuousRungeKutta`*
*`KSTrajInterpolatorFast`*
*`KSTrajInterpolatorHermite`*
*`KSTrajTermConstantForcePropagation`*
*`KSTrajTermDrift`*
*`KSTrajTermGravity`*
*`KSTrajTermGyration`*
*`KSTrajTermPropagation`*
*`KSTrajTermSynchrotron`*
*`KSTrajTrajectoryAdiabatic`*
*`KSTrajTrajectoryAdiabaticSpin`*
*`KSTrajTrajectoryElectric`*
*`KSTrajTrajectoryExact`*
*`KSTrajTrajectoryExactSpin`*
*`KSTrajTrajectoryExactTrapped`*
*`KSTrajTrajectoryLinear`*
*`KSTrajTrajectoryMagnetic`*
*`KSWriteASCII`*
*`KSWriteROOT`*
*`KSWriteROOTConditionOutputData`*
*`KSWriteROOTConditionPeriodicData`*
*`KSWriteROOTConditionStepData`*
*`KSWriteROOTConditionTerminatorData`*
*`KSWriteVTK`*
*`KSComponentMemberData`*
*`KSComponentDeltaData`*
*`KSComponentGroup`*
*`KSComponentIntegralData`*
*`KSComponentMathData`*
*`KSComponentMaximumData`*
*`KSComponentMaximumAtData`*
*`KSComponentMinimumData`*
*`KSComponentMinimumAtData`*|`random_seed`|*`unsigned int`*| +|`kassiopeia`|[*KSRootBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Simulation/Source/KSRootBuilder.cxx)|[`kess_elastic_elsepa`](#kesselasticelsepa)
[`kess_inelastic_bethefano`](#kessinelasticbethefano)
[`kess_inelastic_penn`](#kessinelasticpenn)
[`kess_surface_interaction`](#kesssurfaceinteraction)
[`ks_command_group`](#kscommandgroup)
[`ks_command_member`](#kscommandmemberdata)
[`ks_component_delta`](#kscomponentdeltadata)
[`ks_component_group`](#kscomponentgroup)
[`ks_component_integral`](#kscomponentintegraldata)
[`ks_component_math`](#kscomponentmathdata)
[`ks_component_maximum`](#kscomponentmaximumdata)
[`ks_component_maximum_at`](#kscomponentmaximumatdata)
[`ks_component_member`](#kscomponentmemberdata)
[`ks_component_minimum`](#kscomponentminimumdata)
[`ks_component_minimum_at`](#kscomponentminimumatdata)
[`ks_root_electric_field`](#ksrootelectricfield)
[`ks_root_event_modifier`](#ksrooteventmodifier)
[`ks_root_generator`](#ksrootgenerator)
[`ks_root_magnetic_field`](#ksrootmagneticfield)
[`ks_root_run_modifier`](#ksrootrunmodifier)
[`ks_root_space_interaction`](#ksrootspaceinteraction)
[`ks_root_space_navigator`](#ksrootspacenavigator)
[`ks_root_step_modifier`](#ksrootstepmodifier)
[`ks_root_surface_interaction`](#ksrootsurfaceinteraction)
[`ks_root_surface_navigator`](#ksrootsurfacenavigator)
[`ks_root_terminator`](#ksrootterminator)
[`ks_root_track_modifier`](#ksroottrackmodifier)
[`ks_root_trajectory`](#ksroottrajectory)
[`ks_root_writer`](#ksrootwriter)
[`ks_simulation`](#kssimulation)
[`ksfield_electric_constant`](#kelectrostaticconstantfield)
[`ksfield_electric_induced_azi`](#kinducedazimuthalelectricfield)
[`ksfield_electric_potentialmap`](#kelectrostaticpotentialmap)
[`ksfield_electric_potentialmap_calculator`](#kelectrostaticpotentialmapcalculator)
[`ksfield_electric_quadrupole`](#kelectricquadrupolefield)
[`ksfield_electric_ramped`](#krampedelectricfield)
[`ksfield_electric_ramped_2fields`](#krampedelectric2field)
[`ksfield_electromagnet`](#kgstaticelectromagnetfield)
[`ksfield_electrostatic`](#kgelectrostaticboundaryfield)
[`ksfield_magnetic_constant`](#kmagnetostaticconstantfield)
[`ksfield_magnetic_dipole`](#kmagneticdipolefield)
[`ksfield_magnetic_fieldmap`](#kmagnetostaticfieldmap)
[`ksfield_magnetic_fieldmap_calculator`](#kmagnetostaticfieldmapcalculator)
[`ksfield_magnetic_ramped`](#krampedmagneticfield)
[`ksfield_magnetic_super_position`](#kmagneticsuperpositionfield)
[`ksgen_direction_spherical_composite`](#ksgendirectionsphericalcomposite)
[`ksgen_direction_spherical_magnetic_field`](#ksgendirectionsphericalmagneticfield)
[`ksgen_direction_surface_composite`](#ksgendirectionsurfacecomposite)
[`ksgen_energy_beta_decay`](#ksgenenergybetadecay)
[`ksgen_energy_beta_recoil`](#ksgenenergybetarecoil)
[`ksgen_energy_composite`](#ksgenenergycomposite)
[`ksgen_energy_krypton_event`](#ksgenenergykryptonevent)
[`ksgen_energy_lead_event`](#ksgenenergyleadevent)
[`ksgen_energy_radon_event`](#ksgenenergyradonevent)
[`ksgen_energy_rydberg`](#ksgenenergyrydberg)
[`ksgen_generator_composite`](#ksgengeneratorcomposite)
[`ksgen_generator_file`](#ksgengeneratortextfile)
[`ksgen_generator_simulation`](#ksgengeneratorsimulation)
[`ksgen_l_composite`](#ksgenlcomposite)
[`ksgen_l_statistical`](#ksgenlstatistical)
[`ksgen_l_uniform_max_n`](#ksgenluniformmaxn)
[`ksgen_momentum_rectangular_composite`](#ksgenmomentumrectangularcomposite)
[`ksgen_n_composite`](#ksgenncomposite)
[`ksgen_position_cylindrical_composite`](#ksgenpositioncylindricalcomposite)
[`ksgen_position_flux_tube`](#ksgenpositionfluxtube)
[`ksgen_position_frustrum_composite`](#ksgenpositionfrustrumcomposite)
[`ksgen_position_homogeneous_flux_tube`](#ksgenpositionhomogeneousfluxtube)
[`ksgen_position_mask`](#ksgenpositionmask)
[`ksgen_position_mesh_surface_random`](#ksgenpositionmeshsurfacerandom)
[`ksgen_position_rectangular_composite`](#ksgenpositionrectangularcomposite)
[`ksgen_position_space_random`](#ksgenpositionspacerandom)
[`ksgen_position_spherical_composite`](#ksgenpositionsphericalcomposite)
[`ksgen_position_surface_adjustment_step`](#ksgenpositionsurfaceadjustmentstep)
[`ksgen_position_surface_random`](#ksgenpositionsurfacerandom)
[`ksgen_spin_composite`](#ksgenspincomposite)
[`ksgen_spin_composite_relative`](#ksgenspinrelativecomposite)
[`ksgen_time_composite`](#ksgentimecomposite)
[`ksgen_value_angle_cosine`](#ksgenvalueanglecosine)
[`ksgen_value_angle_spherical`](#ksgenvalueanglespherical)
[`ksgen_value_boltzmann`](#ksgenvalueboltzmann)
[`ksgen_value_fermi`](#ksgenvaluefermi)
[`ksgen_value_fix`](#ksgenvaluefix)
[`ksgen_value_formula`](#ksgenvalueformula)
[`ksgen_value_gauss`](#ksgenvaluegauss)
[`ksgen_value_generalized_gauss`](#ksgenvaluegeneralizedgauss)
[`ksgen_value_histogram`](#ksgenvaluehistogram)
[`ksgen_value_list`](#ksgenvaluelist)
[`ksgen_value_pareto`](#ksgenvaluepareto)
[`ksgen_value_radius_cylindrical`](#ksgenvalueradiuscylindrical)
[`ksgen_value_radius_fraction`](#ksgenvalueradiusfraction)
[`ksgen_value_radius_spherical`](#ksgenvalueradiusspherical)
[`ksgen_value_set`](#ksgenvalueset)
[`ksgen_value_uniform`](#ksgenvalueuniform)
[`ksgen_value_z_frustrum`](#ksgenvaluezfrustrum)
[`ksgeo_side`](#ksgeoside)
[`ksgeo_space`](#ksgeospace)
[`ksgeo_surface`](#ksgeosurface)
[`ksint_calculator_constant`](#ksintcalculatorconstant)
[`ksint_calculator_ion`](#ksintcalculatorion)
[`ksint_calculator_mott`](#ksintcalculatormott)
[`ksint_decay`](#ksintdecay)
[`ksint_decay_calculator_death_const_rate`](#ksintdecaycalculatordeathconstrate)
[`ksint_decay_calculator_ferenc_bbr_transition`](#ksintdecaycalculatorferencbbrtransition)
[`ksint_decay_calculator_ferenc_ionisation`](#ksintdecaycalculatorferencionisation)
[`ksint_decay_calculator_ferenc_spontaneous`](#ksintdecaycalculatorferencspontaneous)
[`ksint_decay_calculator_glukhov_deexcitation`](#ksintdecaycalculatorglukhovdeexcitation)
[`ksint_decay_calculator_glukhov_excitation`](#ksintdecaycalculatorglukhovexcitation)
[`ksint_decay_calculator_glukhov_ionisation`](#ksintdecaycalculatorglukhovionisation)
[`ksint_decay_calculator_glukhov_spontaneous`](#ksintdecaycalculatorglukhovspontaneous)
[`ksint_density_constant`](#ksintdensityconstant)
[`ksint_scattering`](#ksintscattering)
[`ksint_spin_flip`](#ksintspinflip)
[`ksint_spin_flip_pulse`](#ksintspinflippulse)
[`ksint_spin_rotate_y_pulse`](#ksintspinrotateypulse)
[`ksint_surface_UCN`](#ksintsurfaceucn)
[`ksint_surface_diffuse`](#ksintsurfacediffuse)
[`ksint_surface_multiplication`](#ksintsurfacemultiplication)
[`ksint_surface_scattering`](#ksintsurfacescattering)
[`ksint_surface_specular`](#ksintsurfacespecular)
[`ksint_surface_spin_flip`](#ksintsurfacespinflip)
[`ksmod_dynamic_enhancement`](#ksmoddynamicenhancement)
[`ksmod_event_report`](#ksmodeventreport)
[`ksmod_split_on_turn`](#ksmodsplitonturn)
[`ksnav_meshed_space`](#ksnavmeshedspace)
[`ksnav_space`](#ksnavspace)
[`ksnav_surface`](#ksnavsurface)
[`ksterm_death`](#kstermdeath)
[`ksterm_magnetron`](#kstermmagnetron)
[`ksterm_max_energy`](#kstermmaxenergy)
[`ksterm_max_length`](#kstermmaxlength)
[`ksterm_max_long_energy`](#kstermmaxlongenergy)
[`ksterm_max_r`](#kstermmaxr)
[`ksterm_max_step_time`](#kstermmaxsteptime)
[`ksterm_max_steps`](#kstermmaxsteps)
[`ksterm_max_time`](#kstermmaxtime)
[`ksterm_max_total_time`](#kstermmaxtotaltime)
[`ksterm_max_z`](#kstermmaxz)
[`ksterm_min_distance`](#kstermmindistance)
[`ksterm_min_energy`](#kstermminenergy)
[`ksterm_min_long_energy`](#kstermminlongenergy)
[`ksterm_min_r`](#kstermminr)
[`ksterm_min_z`](#kstermminz)
[`ksterm_output`](#kstermoutputdata)
[`ksterm_secondaries`](#kstermsecondaries)
[`ksterm_stepsize`](#kstermstepsize)
[`ksterm_trapped`](#kstermtrapped)
[`ksterm_zh_radius`](#kstermzhradius)
[`kstraj_control_B_change`](#kstrajcontrolbchange)
[`kstraj_control_cyclotron`](#kstrajcontrolcyclotron)
[`kstraj_control_energy`](#kstrajcontrolenergy)
[`kstraj_control_length`](#kstrajcontrollength)
[`kstraj_control_m_dot`](#kstrajcontrolmdot)
[`kstraj_control_magnetic_moment`](#kstrajcontrolmagneticmoment)
[`kstraj_control_momentum_numerical_error`](#kstrajcontrolmomentumnumericalerror)
[`kstraj_control_position_numerical_error`](#kstrajcontrolpositionnumericalerror)
[`kstraj_control_spin_precession`](#kstrajcontrolspinprecession)
[`kstraj_control_time`](#kstrajcontroltime)
[`kstraj_integrator_rk54`](#kstrajintegratorrk54)
[`kstraj_integrator_rk65`](#kstrajintegratorrk65)
[`kstraj_integrator_rk8`](#kstrajintegratorrk8)
[`kstraj_integrator_rk86`](#kstrajintegratorrk86)
[`kstraj_integrator_rk87`](#kstrajintegratorrk87)
[`kstraj_integrator_rkdp54`](#kstrajintegratorrkdp54)
[`kstraj_integrator_rkdp853`](#kstrajintegratorrkdp853)
[`kstraj_integrator_sym4`](#kstrajintegratorsym4)
[`kstraj_interpolator_crk`](#kstrajinterpolatorcontinuousrungekutta)
[`kstraj_interpolator_fast`](#kstrajinterpolatorfast)
[`kstraj_interpolator_hermite`](#kstrajinterpolatorhermite)
[`kstraj_term_constant_force_propagation`](#kstrajtermconstantforcepropagation)
[`kstraj_term_drift`](#kstrajtermdrift)
[`kstraj_term_gravity`](#kstrajtermgravity)
[`kstraj_term_gyration`](#kstrajtermgyration)
[`kstraj_term_propagation`](#kstrajtermpropagation)
[`kstraj_term_synchrotron`](#kstrajtermsynchrotron)
[`kstraj_trajectory_adiabatic`](#kstrajtrajectoryadiabatic)
[`kstraj_trajectory_adiabatic_spin`](#kstrajtrajectoryadiabaticspin)
[`kstraj_trajectory_electric`](#kstrajtrajectoryelectric)
[`kstraj_trajectory_exact`](#kstrajtrajectoryexact)
[`kstraj_trajectory_exact_spin`](#kstrajtrajectoryexactspin)
[`kstraj_trajectory_exact_trapped`](#kstrajtrajectoryexacttrapped)
[`kstraj_trajectory_linear`](#kstrajtrajectorylinear)
[`kstraj_trajectory_magnetic`](#kstrajtrajectorymagnetic)
[`kswrite_ascii`](#kswriteascii)
[`kswrite_root`](#kswriteroot)
[`kswrite_root_condition_output`](#kswriterootconditionoutputdata)
[`kswrite_root_condition_periodic`](#kswriterootconditionperiodicdata)
[`kswrite_root_condition_step`](#kswriterootconditionstepdata)
[`kswrite_root_condition_terminator`](#kswriterootconditionterminatordata)
[`kswrite_vtk`](#kswritevtk)
[`output`](#kscomponentmemberdata)
[`output_delta`](#kscomponentdeltadata)
[`output_group`](#kscomponentgroup)
[`output_integral`](#kscomponentintegraldata)
[`output_math`](#kscomponentmathdata)
[`output_maximum`](#kscomponentmaximumdata)
[`output_maximum_at`](#kscomponentmaximumatdata)
[`output_minimum`](#kscomponentminimumdata)
[`output_minimum_at`](#kscomponentminimumatdata)|*`KESSElasticElsepa`*
*`KESSInelasticBetheFano`*
*`KESSInelasticPenn`*
*`KESSSurfaceInteraction`*
*`KSCommandGroup`*
*`KSCommandMemberData`*
*`KSComponentDeltaData`*
*`KSComponentGroup`*
*`KSComponentIntegralData`*
*`KSComponentMathData`*
*`KSComponentMaximumData`*
*`KSComponentMaximumAtData`*
*`KSComponentMemberData`*
*`KSComponentMinimumData`*
*`KSComponentMinimumAtData`*
*`KSRootElectricField`*
*`KSRootEventModifier`*
*`KSRootGenerator`*
*`KSRootMagneticField`*
*`KSRootRunModifier`*
*`KSRootSpaceInteraction`*
*`KSRootSpaceNavigator`*
*`KSRootStepModifier`*
*`KSRootSurfaceInteraction`*
*`KSRootSurfaceNavigator`*
*`KSRootTerminator`*
*`KSRootTrackModifier`*
*`KSRootTrajectory`*
*`KSRootWriter`*
*`KSSimulation`*
*`KElectrostaticConstantField`*
*`KInducedAzimuthalElectricField`*
*`KElectrostaticPotentialmap`*
*`KElectrostaticPotentialmapCalculator`*
*`KElectricQuadrupoleField`*
*`KRampedElectricField`*
*`KRampedElectric2Field`*
*`KGStaticElectromagnetField`*
*`KGElectrostaticBoundaryField`*
*`KMagnetostaticConstantField`*
*`KMagneticDipoleField`*
*`KMagnetostaticFieldmap`*
*`KMagnetostaticFieldmapCalculator`*
*`KRampedMagneticField`*
*`KMagneticSuperpositionField`*
*`KSGenDirectionSphericalComposite`*
*`KSGenDirectionSphericalMagneticField`*
*`KSGenDirectionSurfaceComposite`*
*`KSGenEnergyBetaDecay`*
*`KSGenEnergyBetaRecoil`*
*`KSGenEnergyComposite`*
*`KSGenEnergyKryptonEvent`*
*`KSGenEnergyLeadEvent`*
*`KSGenEnergyRadonEvent`*
*`KSGenEnergyRydberg`*
*`KSGenGeneratorComposite`*
*`KSGenGeneratorTextFile`*
*`KSGenGeneratorSimulation`*
*`KSGenLComposite`*
*`KSGenLStatistical`*
*`KSGenLUniformMaxN`*
*`KSGenMomentumRectangularComposite`*
*`KSGenNComposite`*
*`KSGenPositionCylindricalComposite`*
*`KSGenPositionFluxTube`*
*`KSGenPositionFrustrumComposite`*
*`KSGenPositionHomogeneousFluxTube`*
*`KSGenPositionMask`*
*`KSGenPositionMeshSurfaceRandom`*
*`KSGenPositionRectangularComposite`*
*`KSGenPositionSpaceRandom`*
*`KSGenPositionSphericalComposite`*
*`KSGenPositionSurfaceAdjustmentStep`*
*`KSGenPositionSurfaceRandom`*
*`KSGenSpinComposite`*
*`KSGenSpinRelativeComposite`*
*`KSGenTimeComposite`*
*`KSGenValueAngleCosine`*
*`KSGenValueAngleSpherical`*
*`KSGenValueBoltzmann`*
*`KSGenValueFermi`*
*`KSGenValueFix`*
*`KSGenValueFormula`*
*`KSGenValueGauss`*
*`KSGenValueGeneralizedGauss`*
*`KSGenValueHistogram`*
*`KSGenValueList`*
*`KSGenValuePareto`*
*`KSGenValueRadiusCylindrical`*
*`KSGenValueRadiusFraction`*
*`KSGenValueRadiusSpherical`*
*`KSGenValueSet`*
*`KSGenValueUniform`*
*`KSGenValueZFrustrum`*
*`KSGeoSide`*
*`KSGeoSpace`*
*`KSGeoSurface`*
*`KSIntCalculatorConstant`*
*`KSIntCalculatorIon`*
*`KSIntCalculatorMott`*
*`KSIntDecay`*
*`KSIntDecayCalculatorDeathConstRate`*
*`KSIntDecayCalculatorFerencBBRTransition`*
*`KSIntDecayCalculatorFerencIonisation`*
*`KSIntDecayCalculatorFerencSpontaneous`*
*`KSIntDecayCalculatorGlukhovDeExcitation`*
*`KSIntDecayCalculatorGlukhovExcitation`*
*`KSIntDecayCalculatorGlukhovIonisation`*
*`KSIntDecayCalculatorGlukhovSpontaneous`*
*`KSIntDensityConstant`*
*`KSIntScattering`*
*`KSIntSpinFlip`*
*`KSIntSpinFlipPulse`*
*`KSIntSpinRotateYPulse`*
*`KSIntSurfaceUCN`*
*`KSIntSurfaceDiffuse`*
*`KSIntSurfaceMultiplication`*
*`KSIntSurfaceScattering`*
*`KSIntSurfaceSpecular`*
*`KSIntSurfaceSpinFlip`*
*`KSModDynamicEnhancement`*
*`KSModEventReport`*
*`KSModSplitOnTurn`*
*`KSNavMeshedSpace`*
*`KSNavSpace`*
*`KSNavSurface`*
*`KSTermDeath`*
*`KSTermMagnetron`*
*`KSTermMaxEnergy`*
*`KSTermMaxLength`*
*`KSTermMaxLongEnergy`*
*`KSTermMaxR`*
*`KSTermMaxStepTime`*
*`KSTermMaxSteps`*
*`KSTermMaxTime`*
*`KSTermMaxTotalTime`*
*`KSTermMaxZ`*
*`KSTermMinDistance`*
*`KSTermMinEnergy`*
*`KSTermMinLongEnergy`*
*`KSTermMinR`*
*`KSTermMinZ`*
*`KSTermOutputData`*
*`KSTermSecondaries`*
*`KSTermStepsize`*
*`KSTermTrapped`*
*`KSTermZHRadius`*
*`KSTrajControlBChange`*
*`KSTrajControlCyclotron`*
*`KSTrajControlEnergy`*
*`KSTrajControlLength`*
*`KSTrajControlMDot`*
*`KSTrajControlMagneticMoment`*
*`KSTrajControlMomentumNumericalError`*
*`KSTrajControlPositionNumericalError`*
*`KSTrajControlSpinPrecession`*
*`KSTrajControlTime`*
*`KSTrajIntegratorRK54`*
*`KSTrajIntegratorRK65`*
*`KSTrajIntegratorRK8`*
*`KSTrajIntegratorRK86`*
*`KSTrajIntegratorRK87`*
*`KSTrajIntegratorRKDP54`*
*`KSTrajIntegratorRKDP853`*
*`KSTrajIntegratorSym4`*
*`KSTrajInterpolatorContinuousRungeKutta`*
*`KSTrajInterpolatorFast`*
*`KSTrajInterpolatorHermite`*
*`KSTrajTermConstantForcePropagation`*
*`KSTrajTermDrift`*
*`KSTrajTermGravity`*
*`KSTrajTermGyration`*
*`KSTrajTermPropagation`*
*`KSTrajTermSynchrotron`*
*`KSTrajTrajectoryAdiabatic`*
*`KSTrajTrajectoryAdiabaticSpin`*
*`KSTrajTrajectoryElectric`*
*`KSTrajTrajectoryExact`*
*`KSTrajTrajectoryExactSpin`*
*`KSTrajTrajectoryExactTrapped`*
*`KSTrajTrajectoryLinear`*
*`KSTrajTrajectoryMagnetic`*
*`KSWriteASCII`*
*`KSWriteROOT`*
*`KSWriteROOTConditionOutputData`*
*`KSWriteROOTConditionPeriodicData`*
*`KSWriteROOTConditionStepData`*
*`KSWriteROOTConditionTerminatorData`*
*`KSWriteVTK`*
*`KSComponentMemberData`*
*`KSComponentDeltaData`*
*`KSComponentGroup`*
*`KSComponentIntegralData`*
*`KSComponentMathData`*
*`KSComponentMaximumData`*
*`KSComponentMaximumAtData`*
*`KSComponentMinimumData`*
*`KSComponentMinimumAtData`*|`random_seed`|*`unsigned int`*| ### KESSElasticElsepa @@ -1185,7 +1185,7 @@ |element name|source files|child elements|child types|attributes|attribute types| |-----|-----|-----|-----|-----|-----| -|`theta_cosine`|[*KSGenDirectionSphericalCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenDirectionSphericalCompositeBuilder.cxx)
[*KSGenDirectionSphericalMagneticFieldBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenDirectionSphericalMagneticFieldBuilder.cxx)
[*KSGenDirectionSurfaceCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenDirectionSurfaceCompositeBuilder.cxx)
[*KSGenSpinCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenSpinCompositeBuilder.cxx)
[*KSGenSpinRelativeCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenSpinRelativeCompositeBuilder.cxx)
[*KSGenValueAngleCosineBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenValueAngleCosineBuilder.cxx)|— |— |`angle_max`
`angle_min`
`mode`
`name`|*`double`*
*`double`*
*`string`*
*`string`*| +|`theta_cosine`|[*KSGenDirectionSphericalCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenDirectionSphericalCompositeBuilder.cxx)
[*KSGenDirectionSphericalMagneticFieldBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenDirectionSphericalMagneticFieldBuilder.cxx)
[*KSGenDirectionSurfaceCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenDirectionSurfaceCompositeBuilder.cxx)
[*KSGenSpinCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenSpinCompositeBuilder.cxx)
[*KSGenSpinRelativeCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenSpinRelativeCompositeBuilder.cxx)
[*KSGenValueAngleCosineBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenValueAngleCosineBuilder.cxx)|— |— |`angle_max`
`angle_min`
`direction`
`mode`
`name`|*`double`*
*`double`*
*`string`*
*`string`*
*`string`*| #### KSGenValueAngleSpherical @@ -1643,6 +1643,12 @@ |-----|-----|-----|-----|-----|-----| |`ksint_calculator_ion`|[*KSIntCalculatorIonBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntCalculatorIonBuilder.cxx)
[*KSIntScatteringBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntScatteringBuilder.cxx)|— |— |`gas`
`name`|*`string`*
*`string`*| +### KSIntCalculatorMott + +|element name|source files|child elements|child types|attributes|attribute types| +|-----|-----|-----|-----|-----|-----| +|`ksint_calculator_mott`|[*KSIntCalculatorMottBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntCalculatorMottBuilder.cxx)
[*KSIntScatteringBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntScatteringBuilder.cxx)|— |— |`name`
`nucleus`
`theta_max`
`theta_min`|*`string`*
*`string`*
*`double`*
*`double`*| + ### KSIntDecay |element name|source files|child elements|child types|attributes|attribute types| @@ -1707,7 +1713,7 @@ |element name|source files|child elements|child types|attributes|attribute types| |-----|-----|-----|-----|-----|-----| -|`ksint_scattering`|[*KSIntScatteringBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntScatteringBuilder.cxx)|[`calculator_argon`](#ksintcalculatorargonset)
[`calculator_constant`](#ksintcalculatorconstant)
[`calculator_hydrogen`](#ksintcalculatorhydrogenset)
[`calculator_ion`](#ksintcalculatorion)
[`calculator_kess`](#ksintcalculatorkessset)
[`density_constant`](#ksintdensityconstant)|*`KSIntCalculatorArgonSet`*
*`KSIntCalculatorConstant`*
*`KSIntCalculatorHydrogenSet`*
*`KSIntCalculatorIon`*
*`KSIntCalculatorKESSSet`*
*`KSIntDensityConstant`*|`calculator`
`calculators`
`density`
`enhancement`
`name`
`split`|*`string`*
*`string`*
*`string`*
*`double`*
*`string`*
*`bool`*| +|`ksint_scattering`|[*KSIntScatteringBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntScatteringBuilder.cxx)|[`calculator_argon`](#ksintcalculatorargonset)
[`calculator_constant`](#ksintcalculatorconstant)
[`calculator_hydrogen`](#ksintcalculatorhydrogenset)
[`calculator_ion`](#ksintcalculatorion)
[`calculator_kess`](#ksintcalculatorkessset)
[`calculator_mott`](#ksintcalculatormott)
[`density_constant`](#ksintdensityconstant)|*`KSIntCalculatorArgonSet`*
*`KSIntCalculatorConstant`*
*`KSIntCalculatorHydrogenSet`*
*`KSIntCalculatorIon`*
*`KSIntCalculatorKESSSet`*
*`KSIntCalculatorMott`*
*`KSIntDensityConstant`*|`calculator`
`calculators`
`density`
`enhancement`
`name`
`split`|*`string`*
*`string`*
*`string`*
*`double`*
*`string`*
*`bool`*| #### KSIntCalculatorArgonSet @@ -1763,6 +1769,12 @@ |-----|-----|-----|-----|-----|-----| |`ksint_surface_multiplication`|[*KSIntSurfaceMultiplicationBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntSurfaceMultiplicationBuilder.cxx)|— |— |`energy_loss_fraction`
`name`
`required_energy_per_particle_ev`
`side`|*`double`*
*`string`*
*`double`*
*`string`*| +### KSIntSurfaceScattering + +|element name|source files|child elements|child types|attributes|attribute types| +|-----|-----|-----|-----|-----|-----| +|`ksint_surface_scattering`|[*KSIntSurfaceScatteringBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntSurfaceScatteringBuilder.cxx)|— |— |`name`
`scat_loss_fraction`
`scat_probability`
`sec_electron_mean_energy`
`sec_electron_probability`
`side`|*`string`*
*`double`*
*`double`*
*`double`*
*`double`*
*`string`*| + ### KSIntSurfaceSpecular |element name|source files|child elements|child types|attributes|attribute types| diff --git a/Documentation/Bindings/bindings_full.rst b/Documentation/Bindings/bindings_full.rst index db2610520..068fbe24c 100644 --- a/Documentation/Bindings/bindings_full.rst +++ b/Documentation/Bindings/bindings_full.rst @@ -2329,6 +2329,8 @@ KSRoot + + +--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+ + + | | |``ksint_calculator_ion`` |:ref:`KSIntCalculatorIon ` | | | + + +--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+ + + +| | |``ksint_calculator_mott`` |:ref:`KSIntCalculatorMott ` | | | ++ + +--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+ + + | | |``ksint_decay`` |:ref:`KSIntDecay ` | | | + + +--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+ + + | | |``ksint_decay_calculator_death_const_rate`` |:ref:`KSIntDecayCalculatorDeathConstRate ` | | | @@ -2363,6 +2365,8 @@ KSRoot + + +--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+ + + | | |``ksint_surface_multiplication`` |:ref:`KSIntSurfaceMultiplication ` | | | + + +--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+ + + +| | |``ksint_surface_scattering`` |:ref:`KSIntSurfaceScattering ` | | | ++ + +--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+ + + | | |``ksint_surface_specular`` |:ref:`KSIntSurfaceSpecular ` | | | + + +--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+ + + | | |``ksint_surface_spin_flip`` |:ref:`KSIntSurfaceSpinFlip ` | | | @@ -4141,11 +4145,11 @@ KSGenValueAngleCosine + +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + +--------------------------------------------------------------------------------+----------------------------------------+ | |`KSGenDirectionSphericalMagneticFieldBuilder.cxx `_ | | |``angle_min`` |*double* | + +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + +--------------------------------------------------------------------------------+----------------------------------------+ -| |`KSGenDirectionSurfaceCompositeBuilder.cxx `_ | | |``mode`` |*string* | +| |`KSGenDirectionSurfaceCompositeBuilder.cxx `_ | | |``direction`` |*string* | + +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + +--------------------------------------------------------------------------------+----------------------------------------+ -| |`KSGenSpinCompositeBuilder.cxx `_ | | |``name`` |*string* | -+ +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + + + + -| |`KSGenSpinRelativeCompositeBuilder.cxx `_ | | | | | +| |`KSGenSpinCompositeBuilder.cxx `_ | | |``mode`` |*string* | ++ +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + +--------------------------------------------------------------------------------+----------------------------------------+ +| |`KSGenSpinRelativeCompositeBuilder.cxx `_ | | |``name`` |*string* | + +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + + + + | |`KSGenValueAngleCosineBuilder.cxx `_ | | | | | +--------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------+ @@ -5500,6 +5504,23 @@ KSIntCalculatorIon | |`KSIntScatteringBuilder.cxx `_ | | |``name`` |*string* | +--------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------+ +.. _KSIntCalculatorMott: + +KSIntCalculatorMott +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + ++--------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------+ +|element name |source files |child elements |child types |attributes |attribute types | ++================================================================================+================================================================================================================================================================================================================================================+================================================================================+================================================================================================================================================================+================================================================================+========================================+ +|``ksint_calculator_mott`` |`KSIntCalculatorMottBuilder.cxx `_ |— |— |``name`` |*string* | ++ +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + +--------------------------------------------------------------------------------+----------------------------------------+ +| |`KSIntScatteringBuilder.cxx `_ | | |``nucleus`` |*string* | ++ + + + +--------------------------------------------------------------------------------+----------------------------------------+ +| | | | |``theta_max`` |*double* | ++ + + + +--------------------------------------------------------------------------------+----------------------------------------+ +| | | | |``theta_min`` |*double* | ++--------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------+ + .. _KSIntDecay: KSIntDecay @@ -5710,7 +5731,9 @@ KSIntScattering + + +--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------+ | | |``calculator_kess`` |:ref:`KSIntCalculatorKESSSet ` |``name`` |*string* | + + +--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------+ -| | |``density_constant`` |:ref:`KSIntDensityConstant ` |``split`` |*bool* | +| | |``calculator_mott`` |:ref:`KSIntCalculatorMott ` |``split`` |*bool* | ++ + +--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+ + + +| | |``density_constant`` |:ref:`KSIntDensityConstant ` | | | +--------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------+ .. _KSIntCalculatorArgonSet: @@ -5868,6 +5891,27 @@ KSIntSurfaceMultiplication | | | | |``side`` |*string* | +--------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------+ +.. _KSIntSurfaceScattering: + +KSIntSurfaceScattering +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + ++--------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------+ +|element name |source files |child elements |child types |attributes |attribute types | ++================================================================================+================================================================================================================================================================================================================================================+================================================================================+================================================================================================================================================================+================================================================================+========================================+ +|``ksint_surface_scattering`` |`KSIntSurfaceScatteringBuilder.cxx `_ |— |— |``name`` |*string* | ++ + + + +--------------------------------------------------------------------------------+----------------------------------------+ +| | | | |``scat_loss_fraction`` |*double* | ++ + + + +--------------------------------------------------------------------------------+----------------------------------------+ +| | | | |``scat_probability`` |*double* | ++ + + + +--------------------------------------------------------------------------------+----------------------------------------+ +| | | | |``sec_electron_mean_energy`` |*double* | ++ + + + +--------------------------------------------------------------------------------+----------------------------------------+ +| | | | |``sec_electron_probability`` |*double* | ++ + + + +--------------------------------------------------------------------------------+----------------------------------------+ +| | | | |``side`` |*string* | ++--------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+----------------------------------------+ + .. _KSIntSurfaceSpecular: KSIntSurfaceSpecular diff --git a/Documentation/Bindings/bindings_full.svg b/Documentation/Bindings/bindings_full.svg index 381a53fd6..8a282cd99 100644 --- a/Documentation/Bindings/bindings_full.svg +++ b/Documentation/Bindings/bindings_full.svg @@ -4,15 +4,15 @@ - - + + %3 - + cluster_KRoot - -KRoot + +KRoot cluster_KGInterface @@ -21,13 +21,13 @@ cluster_KGWrappedSpace_KGBeam_ - -KGWrappedSpace<KGBeam> + +KGWrappedSpace<KGBeam> cluster_KGBeam - -KGBeam + +KGBeam cluster_KGWrappedSpace_KGCircleWire_ @@ -166,13 +166,13 @@ cluster_KSRoot - -KSRoot + +KSRoot cluster_KSCommandGroup - -KSCommandGroup + +KSCommandGroup cluster_KElectrostaticPotentialmapCalculator @@ -201,8 +201,8 @@ cluster_KKrylovChargeDensitySolver - -KKrylovChargeDensitySolver + +KKrylovChargeDensitySolver cluster_KGStaticElectromagnetField @@ -221,83 +221,83 @@ cluster_KSGenDirectionSphericalComposite - -KSGenDirectionSphericalComposite + +KSGenDirectionSphericalComposite cluster_KSGenEnergyComposite - -KSGenEnergyComposite + +KSGenEnergyComposite cluster_KSGenGeneratorComposite - -KSGenGeneratorComposite + +KSGenGeneratorComposite cluster_KSGenLComposite - -KSGenLComposite + +KSGenLComposite cluster_KSGenMomentumRectangularComposite - -KSGenMomentumRectangularComposite + +KSGenMomentumRectangularComposite cluster_KSGenNComposite - -KSGenNComposite + +KSGenNComposite cluster_KSGenPositionCylindricalComposite - -KSGenPositionCylindricalComposite + +KSGenPositionCylindricalComposite cluster_KSGenPositionFrustrumComposite - -KSGenPositionFrustrumComposite + +KSGenPositionFrustrumComposite cluster_KSGenPositionMask - -KSGenPositionMask + +KSGenPositionMask cluster_KSGenPositionSphericalComposite - -KSGenPositionSphericalComposite + +KSGenPositionSphericalComposite cluster_KSGenTimeComposite - -KSGenTimeComposite + +KSGenTimeComposite cluster_KSGeoSide - -KSGeoSide + +KSGeoSide cluster_KSGeoSpace - -KSGeoSpace + +KSGeoSpace cluster_KSIntDecay - -KSIntDecay + +KSIntDecay cluster_KSIntDecayCalculatorDeathConstRate - -KSIntDecayCalculatorDeathConstRate + +KSIntDecayCalculatorDeathConstRate cluster_KSIntScattering - -KSIntScattering + +KSIntScattering cluster_KSTrajTrajectoryAdiabatic @@ -411,7 +411,7 @@ kemfield - + KRoot__->KEMRoot__kemfield @@ -423,7 +423,7 @@ messages - + KRoot__->KMessageTable__messages @@ -435,7 +435,7 @@ root_window - + KRoot__->KROOTWindow__root_window @@ -447,7 +447,7 @@ run - + KRoot__->KApplicationRunner__run @@ -459,7 +459,7 @@ vtk_window - + KRoot__->KVTKWindow__vtk_window @@ -1355,398 +1355,398 @@ KESSElasticElsepa__kess_elastic_elsepa - -kess_elastic_elsepa + +kess_elastic_elsepa KSRoot__kassiopeia->KESSElasticElsepa__kess_elastic_elsepa - - + + KESSInelasticBetheFano__kess_inelastic_bethefano - -kess_inelastic_bethefano + +kess_inelastic_bethefano KSRoot__kassiopeia->KESSInelasticBetheFano__kess_inelastic_bethefano - - + + KESSInelasticPenn__kess_inelastic_penn - -kess_inelastic_penn + +kess_inelastic_penn KSRoot__kassiopeia->KESSInelasticPenn__kess_inelastic_penn - - + + KESSSurfaceInteraction__kess_surface_interaction - -kess_surface_interaction + +kess_surface_interaction KSRoot__kassiopeia->KESSSurfaceInteraction__kess_surface_interaction - - + + KSCommandGroup__ks_command_group - -ks_command_group + +ks_command_group KSRoot__kassiopeia->KSCommandGroup__ks_command_group - - + + KSCommandMemberData__ks_command_member - -ks_command_member + +ks_command_member KSRoot__kassiopeia->KSCommandMemberData__ks_command_member - - + + KSComponentDeltaData__ks_component_delta - -ks_component_delta + +ks_component_delta KSRoot__kassiopeia->KSComponentDeltaData__ks_component_delta - - + + KSComponentGroup__ks_component_group - -ks_component_group + +ks_component_group KSRoot__kassiopeia->KSComponentGroup__ks_component_group - - + + KSComponentIntegralData__ks_component_integral - -ks_component_integral + +ks_component_integral KSRoot__kassiopeia->KSComponentIntegralData__ks_component_integral - - + + KSComponentMathData__ks_component_math - -ks_component_math + +ks_component_math KSRoot__kassiopeia->KSComponentMathData__ks_component_math - - + + KSComponentMaximumData__ks_component_maximum - -ks_component_maximum + +ks_component_maximum KSRoot__kassiopeia->KSComponentMaximumData__ks_component_maximum - - + + KSComponentMaximumAtData__ks_component_maximum_at - -ks_component_maximum_at + +ks_component_maximum_at KSRoot__kassiopeia->KSComponentMaximumAtData__ks_component_maximum_at - - + + KSComponentMemberData__ks_component_member - -ks_component_member + +ks_component_member KSRoot__kassiopeia->KSComponentMemberData__ks_component_member - - + + KSComponentMinimumData__ks_component_minimum - -ks_component_minimum + +ks_component_minimum KSRoot__kassiopeia->KSComponentMinimumData__ks_component_minimum - - + + KSComponentMinimumAtData__ks_component_minimum_at - -ks_component_minimum_at + +ks_component_minimum_at KSRoot__kassiopeia->KSComponentMinimumAtData__ks_component_minimum_at - - + + KSRootElectricField__ks_root_electric_field - -ks_root_electric_field + +ks_root_electric_field KSRoot__kassiopeia->KSRootElectricField__ks_root_electric_field - - + + KSRootEventModifier__ks_root_event_modifier - -ks_root_event_modifier + +ks_root_event_modifier KSRoot__kassiopeia->KSRootEventModifier__ks_root_event_modifier - - + + KSRootGenerator__ks_root_generator - -ks_root_generator + +ks_root_generator KSRoot__kassiopeia->KSRootGenerator__ks_root_generator - - + + KSRootMagneticField__ks_root_magnetic_field - -ks_root_magnetic_field + +ks_root_magnetic_field KSRoot__kassiopeia->KSRootMagneticField__ks_root_magnetic_field - - + + KSRootRunModifier__ks_root_run_modifier - -ks_root_run_modifier + +ks_root_run_modifier KSRoot__kassiopeia->KSRootRunModifier__ks_root_run_modifier - - + + KSRootSpaceInteraction__ks_root_space_interaction - -ks_root_space_interaction + +ks_root_space_interaction KSRoot__kassiopeia->KSRootSpaceInteraction__ks_root_space_interaction - - + + KSRootSpaceNavigator__ks_root_space_navigator - -ks_root_space_navigator + +ks_root_space_navigator KSRoot__kassiopeia->KSRootSpaceNavigator__ks_root_space_navigator - - + + KSRootStepModifier__ks_root_step_modifier - -ks_root_step_modifier + +ks_root_step_modifier KSRoot__kassiopeia->KSRootStepModifier__ks_root_step_modifier - - + + KSRootSurfaceInteraction__ks_root_surface_interaction - -ks_root_surface_interaction + +ks_root_surface_interaction KSRoot__kassiopeia->KSRootSurfaceInteraction__ks_root_surface_interaction - - + + KSRootSurfaceNavigator__ks_root_surface_navigator - -ks_root_surface_navigator + +ks_root_surface_navigator KSRoot__kassiopeia->KSRootSurfaceNavigator__ks_root_surface_navigator - - + + KSRootTerminator__ks_root_terminator - -ks_root_terminator + +ks_root_terminator KSRoot__kassiopeia->KSRootTerminator__ks_root_terminator - - + + KSRootTrackModifier__ks_root_track_modifier - -ks_root_track_modifier + +ks_root_track_modifier KSRoot__kassiopeia->KSRootTrackModifier__ks_root_track_modifier - - + + KSRootTrajectory__ks_root_trajectory - -ks_root_trajectory + +ks_root_trajectory KSRoot__kassiopeia->KSRootTrajectory__ks_root_trajectory - - + + KSRootWriter__ks_root_writer - -ks_root_writer + +ks_root_writer KSRoot__kassiopeia->KSRootWriter__ks_root_writer - - + + KSSimulation__ks_simulation - -ks_simulation + +ks_simulation KSRoot__kassiopeia->KSSimulation__ks_simulation - - + + KElectrostaticConstantField__ksfield_electric_constant - -ksfield_electric_constant + +ksfield_electric_constant KSRoot__kassiopeia->KElectrostaticConstantField__ksfield_electric_constant - - + + KInducedAzimuthalElectricField__ksfield_electric_induced_azi - -ksfield_electric_induced_azi + +ksfield_electric_induced_azi KSRoot__kassiopeia->KInducedAzimuthalElectricField__ksfield_electric_induced_azi - - + + KElectrostaticPotentialmap__ksfield_electric_potentialmap - -ksfield_electric_potentialmap + +ksfield_electric_potentialmap KSRoot__kassiopeia->KElectrostaticPotentialmap__ksfield_electric_potentialmap - - + + @@ -1763,38 +1763,38 @@ KElectricQuadrupoleField__ksfield_electric_quadrupole - -ksfield_electric_quadrupole + +ksfield_electric_quadrupole KSRoot__kassiopeia->KElectricQuadrupoleField__ksfield_electric_quadrupole - - + + KRampedElectricField__ksfield_electric_ramped - -ksfield_electric_ramped + +ksfield_electric_ramped KSRoot__kassiopeia->KRampedElectricField__ksfield_electric_ramped - - + + KRampedElectric2Field__ksfield_electric_ramped_2fields - -ksfield_electric_ramped_2fields + +ksfield_electric_ramped_2fields KSRoot__kassiopeia->KRampedElectric2Field__ksfield_electric_ramped_2fields - - + + @@ -1811,50 +1811,50 @@ KGElectrostaticBoundaryField__ksfield_electrostatic - -ksfield_electrostatic + +ksfield_electrostatic KSRoot__kassiopeia->KGElectrostaticBoundaryField__ksfield_electrostatic - - + + KMagnetostaticConstantField__ksfield_magnetic_constant - -ksfield_magnetic_constant + +ksfield_magnetic_constant KSRoot__kassiopeia->KMagnetostaticConstantField__ksfield_magnetic_constant - - + + KMagneticDipoleField__ksfield_magnetic_dipole - -ksfield_magnetic_dipole + +ksfield_magnetic_dipole KSRoot__kassiopeia->KMagneticDipoleField__ksfield_magnetic_dipole - - + + KMagnetostaticFieldmap__ksfield_magnetic_fieldmap - -ksfield_magnetic_fieldmap + +ksfield_magnetic_fieldmap KSRoot__kassiopeia->KMagnetostaticFieldmap__ksfield_magnetic_fieldmap - - + + @@ -1871,14 +1871,14 @@ KRampedMagneticField__ksfield_magnetic_ramped - -ksfield_magnetic_ramped + +ksfield_magnetic_ramped KSRoot__kassiopeia->KRampedMagneticField__ksfield_magnetic_ramped - - + + @@ -1895,2243 +1895,2267 @@ KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite - -ksgen_direction_spherical_composite + +ksgen_direction_spherical_composite KSRoot__kassiopeia->KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field - -ksgen_direction_spherical_magnetic_field + +ksgen_direction_spherical_magnetic_field KSRoot__kassiopeia->KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite - -ksgen_direction_surface_composite + +ksgen_direction_surface_composite KSRoot__kassiopeia->KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite - - + + KSGenEnergyBetaDecay__ksgen_energy_beta_decay - -ksgen_energy_beta_decay + +ksgen_energy_beta_decay KSRoot__kassiopeia->KSGenEnergyBetaDecay__ksgen_energy_beta_decay - - + + KSGenEnergyBetaRecoil__ksgen_energy_beta_recoil - -ksgen_energy_beta_recoil + +ksgen_energy_beta_recoil KSRoot__kassiopeia->KSGenEnergyBetaRecoil__ksgen_energy_beta_recoil - - + + KSGenEnergyComposite__ksgen_energy_composite - -ksgen_energy_composite + +ksgen_energy_composite KSRoot__kassiopeia->KSGenEnergyComposite__ksgen_energy_composite - - + + KSGenEnergyKryptonEvent__ksgen_energy_krypton_event - -ksgen_energy_krypton_event + +ksgen_energy_krypton_event KSRoot__kassiopeia->KSGenEnergyKryptonEvent__ksgen_energy_krypton_event - - + + KSGenEnergyLeadEvent__ksgen_energy_lead_event - -ksgen_energy_lead_event + +ksgen_energy_lead_event KSRoot__kassiopeia->KSGenEnergyLeadEvent__ksgen_energy_lead_event - - + + KSGenEnergyRadonEvent__ksgen_energy_radon_event - -ksgen_energy_radon_event + +ksgen_energy_radon_event KSRoot__kassiopeia->KSGenEnergyRadonEvent__ksgen_energy_radon_event - - + + KSGenEnergyRydberg__ksgen_energy_rydberg - -ksgen_energy_rydberg + +ksgen_energy_rydberg KSRoot__kassiopeia->KSGenEnergyRydberg__ksgen_energy_rydberg - - + + KSGenGeneratorComposite__ksgen_generator_composite - -ksgen_generator_composite + +ksgen_generator_composite KSRoot__kassiopeia->KSGenGeneratorComposite__ksgen_generator_composite - - + + KSGenGeneratorTextFile__ksgen_generator_file - -ksgen_generator_file + +ksgen_generator_file KSRoot__kassiopeia->KSGenGeneratorTextFile__ksgen_generator_file - - + + KSGenGeneratorSimulation__ksgen_generator_simulation - -ksgen_generator_simulation + +ksgen_generator_simulation KSRoot__kassiopeia->KSGenGeneratorSimulation__ksgen_generator_simulation - - + + KSGenLComposite__ksgen_l_composite - -ksgen_l_composite + +ksgen_l_composite KSRoot__kassiopeia->KSGenLComposite__ksgen_l_composite - - + + KSGenLStatistical__ksgen_l_statistical - -ksgen_l_statistical + +ksgen_l_statistical KSRoot__kassiopeia->KSGenLStatistical__ksgen_l_statistical - - + + KSGenLUniformMaxN__ksgen_l_uniform_max_n - -ksgen_l_uniform_max_n + +ksgen_l_uniform_max_n KSRoot__kassiopeia->KSGenLUniformMaxN__ksgen_l_uniform_max_n - - + + KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite - -ksgen_momentum_rectangular_composite + +ksgen_momentum_rectangular_composite KSRoot__kassiopeia->KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite - - + + KSGenNComposite__ksgen_n_composite - -ksgen_n_composite + +ksgen_n_composite KSRoot__kassiopeia->KSGenNComposite__ksgen_n_composite - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite - -ksgen_position_cylindrical_composite + +ksgen_position_cylindrical_composite KSRoot__kassiopeia->KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite - - + + KSGenPositionFluxTube__ksgen_position_flux_tube - -ksgen_position_flux_tube + +ksgen_position_flux_tube KSRoot__kassiopeia->KSGenPositionFluxTube__ksgen_position_flux_tube - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite - -ksgen_position_frustrum_composite + +ksgen_position_frustrum_composite KSRoot__kassiopeia->KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite - - + + KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube - -ksgen_position_homogeneous_flux_tube + +ksgen_position_homogeneous_flux_tube KSRoot__kassiopeia->KSGenPositionHomogeneousFluxTube__ksgen_position_homogeneous_flux_tube - - + + KSGenPositionMask__ksgen_position_mask - -ksgen_position_mask + +ksgen_position_mask KSRoot__kassiopeia->KSGenPositionMask__ksgen_position_mask - - + + KSGenPositionMeshSurfaceRandom__ksgen_position_mesh_surface_random - -ksgen_position_mesh_surface_random + +ksgen_position_mesh_surface_random KSRoot__kassiopeia->KSGenPositionMeshSurfaceRandom__ksgen_position_mesh_surface_random - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite - -ksgen_position_rectangular_composite + +ksgen_position_rectangular_composite KSRoot__kassiopeia->KSGenPositionRectangularComposite__ksgen_position_rectangular_composite - - + + KSGenPositionSpaceRandom__ksgen_position_space_random - -ksgen_position_space_random + +ksgen_position_space_random KSRoot__kassiopeia->KSGenPositionSpaceRandom__ksgen_position_space_random - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite - -ksgen_position_spherical_composite + +ksgen_position_spherical_composite KSRoot__kassiopeia->KSGenPositionSphericalComposite__ksgen_position_spherical_composite - - + + KSGenPositionSurfaceAdjustmentStep__ksgen_position_surface_adjustment_step - -ksgen_position_surface_adjustment_step + +ksgen_position_surface_adjustment_step KSRoot__kassiopeia->KSGenPositionSurfaceAdjustmentStep__ksgen_position_surface_adjustment_step - - + + KSGenPositionSurfaceRandom__ksgen_position_surface_random - -ksgen_position_surface_random + +ksgen_position_surface_random KSRoot__kassiopeia->KSGenPositionSurfaceRandom__ksgen_position_surface_random - - + + KSGenSpinComposite__ksgen_spin_composite - -ksgen_spin_composite + +ksgen_spin_composite KSRoot__kassiopeia->KSGenSpinComposite__ksgen_spin_composite - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative - -ksgen_spin_composite_relative + +ksgen_spin_composite_relative KSRoot__kassiopeia->KSGenSpinRelativeComposite__ksgen_spin_composite_relative - - + + KSGenTimeComposite__ksgen_time_composite - -ksgen_time_composite + +ksgen_time_composite KSRoot__kassiopeia->KSGenTimeComposite__ksgen_time_composite - - + + KSGenValueAngleCosine__ksgen_value_angle_cosine - -ksgen_value_angle_cosine + +ksgen_value_angle_cosine KSRoot__kassiopeia->KSGenValueAngleCosine__ksgen_value_angle_cosine - - + + KSGenValueAngleSpherical__ksgen_value_angle_spherical - -ksgen_value_angle_spherical + +ksgen_value_angle_spherical KSRoot__kassiopeia->KSGenValueAngleSpherical__ksgen_value_angle_spherical - - + + KSGenValueBoltzmann__ksgen_value_boltzmann - -ksgen_value_boltzmann + +ksgen_value_boltzmann KSRoot__kassiopeia->KSGenValueBoltzmann__ksgen_value_boltzmann - - + + KSGenValueFermi__ksgen_value_fermi - -ksgen_value_fermi + +ksgen_value_fermi KSRoot__kassiopeia->KSGenValueFermi__ksgen_value_fermi - - + + KSGenValueFix__ksgen_value_fix - -ksgen_value_fix + +ksgen_value_fix KSRoot__kassiopeia->KSGenValueFix__ksgen_value_fix - - + + KSGenValueFormula__ksgen_value_formula - -ksgen_value_formula + +ksgen_value_formula KSRoot__kassiopeia->KSGenValueFormula__ksgen_value_formula - - + + KSGenValueGauss__ksgen_value_gauss - -ksgen_value_gauss + +ksgen_value_gauss KSRoot__kassiopeia->KSGenValueGauss__ksgen_value_gauss - - + + KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss - -ksgen_value_generalized_gauss + +ksgen_value_generalized_gauss KSRoot__kassiopeia->KSGenValueGeneralizedGauss__ksgen_value_generalized_gauss - - + + KSGenValueHistogram__ksgen_value_histogram - -ksgen_value_histogram + +ksgen_value_histogram KSRoot__kassiopeia->KSGenValueHistogram__ksgen_value_histogram - - + + KSGenValueList__ksgen_value_list - -ksgen_value_list + +ksgen_value_list KSRoot__kassiopeia->KSGenValueList__ksgen_value_list - - + + KSGenValuePareto__ksgen_value_pareto - -ksgen_value_pareto + +ksgen_value_pareto KSRoot__kassiopeia->KSGenValuePareto__ksgen_value_pareto - - + + KSGenValueRadiusCylindrical__ksgen_value_radius_cylindrical - -ksgen_value_radius_cylindrical + +ksgen_value_radius_cylindrical KSRoot__kassiopeia->KSGenValueRadiusCylindrical__ksgen_value_radius_cylindrical - - + + KSGenValueRadiusFraction__ksgen_value_radius_fraction - -ksgen_value_radius_fraction + +ksgen_value_radius_fraction KSRoot__kassiopeia->KSGenValueRadiusFraction__ksgen_value_radius_fraction - - + + KSGenValueRadiusSpherical__ksgen_value_radius_spherical - -ksgen_value_radius_spherical + +ksgen_value_radius_spherical KSRoot__kassiopeia->KSGenValueRadiusSpherical__ksgen_value_radius_spherical - - + + KSGenValueSet__ksgen_value_set - -ksgen_value_set + +ksgen_value_set KSRoot__kassiopeia->KSGenValueSet__ksgen_value_set - - + + KSGenValueUniform__ksgen_value_uniform - -ksgen_value_uniform + +ksgen_value_uniform KSRoot__kassiopeia->KSGenValueUniform__ksgen_value_uniform - - + + KSGenValueZFrustrum__ksgen_value_z_frustrum - -ksgen_value_z_frustrum + +ksgen_value_z_frustrum KSRoot__kassiopeia->KSGenValueZFrustrum__ksgen_value_z_frustrum - - + + KSGeoSide__ksgeo_side - -ksgeo_side + +ksgeo_side KSRoot__kassiopeia->KSGeoSide__ksgeo_side - - + + KSGeoSpace__ksgeo_space - -ksgeo_space + +ksgeo_space KSRoot__kassiopeia->KSGeoSpace__ksgeo_space - - + + KSGeoSurface__ksgeo_surface - -ksgeo_surface + +ksgeo_surface KSRoot__kassiopeia->KSGeoSurface__ksgeo_surface - - + + KSIntCalculatorConstant__ksint_calculator_constant - -ksint_calculator_constant + +ksint_calculator_constant KSRoot__kassiopeia->KSIntCalculatorConstant__ksint_calculator_constant - - + + KSIntCalculatorIon__ksint_calculator_ion - -ksint_calculator_ion + +ksint_calculator_ion KSRoot__kassiopeia->KSIntCalculatorIon__ksint_calculator_ion - - + + - + +KSIntCalculatorMott__ksint_calculator_mott + +ksint_calculator_mott + + + +KSRoot__kassiopeia->KSIntCalculatorMott__ksint_calculator_mott + + + + + KSIntDecay__ksint_decay - -ksint_decay + +ksint_decay - + KSRoot__kassiopeia->KSIntDecay__ksint_decay - - + + - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate - -ksint_decay_calculator_death_const_rate + +ksint_decay_calculator_death_const_rate - + KSRoot__kassiopeia->KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate - - + + - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition - -ksint_decay_calculator_ferenc_bbr_transition + +ksint_decay_calculator_ferenc_bbr_transition - + KSRoot__kassiopeia->KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition - - + + - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation - -ksint_decay_calculator_ferenc_ionisation + +ksint_decay_calculator_ferenc_ionisation - + KSRoot__kassiopeia->KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation - - + + - + KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous - -ksint_decay_calculator_ferenc_spontaneous + +ksint_decay_calculator_ferenc_spontaneous - + KSRoot__kassiopeia->KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation - -ksint_decay_calculator_glukhov_deexcitation + +ksint_decay_calculator_glukhov_deexcitation - + KSRoot__kassiopeia->KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation - - + + - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation - -ksint_decay_calculator_glukhov_excitation + +ksint_decay_calculator_glukhov_excitation - + KSRoot__kassiopeia->KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation - - + + - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation - -ksint_decay_calculator_glukhov_ionisation + +ksint_decay_calculator_glukhov_ionisation - + KSRoot__kassiopeia->KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous - -ksint_decay_calculator_glukhov_spontaneous + +ksint_decay_calculator_glukhov_spontaneous - + KSRoot__kassiopeia->KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous - - + + - + KSIntDensityConstant__ksint_density_constant - -ksint_density_constant + +ksint_density_constant - + KSRoot__kassiopeia->KSIntDensityConstant__ksint_density_constant - - + + - + KSIntScattering__ksint_scattering - -ksint_scattering + +ksint_scattering - + KSRoot__kassiopeia->KSIntScattering__ksint_scattering - - + + - + KSIntSpinFlip__ksint_spin_flip - -ksint_spin_flip + +ksint_spin_flip - + KSRoot__kassiopeia->KSIntSpinFlip__ksint_spin_flip - - + + - + KSIntSpinFlipPulse__ksint_spin_flip_pulse - -ksint_spin_flip_pulse + +ksint_spin_flip_pulse - + KSRoot__kassiopeia->KSIntSpinFlipPulse__ksint_spin_flip_pulse - - + + - + KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse - -ksint_spin_rotate_y_pulse + +ksint_spin_rotate_y_pulse - + KSRoot__kassiopeia->KSIntSpinRotateYPulse__ksint_spin_rotate_y_pulse - - + + - + KSIntSurfaceUCN__ksint_surface_UCN - -ksint_surface_UCN + +ksint_surface_UCN - + KSRoot__kassiopeia->KSIntSurfaceUCN__ksint_surface_UCN - - + + - + KSIntSurfaceDiffuse__ksint_surface_diffuse - -ksint_surface_diffuse + +ksint_surface_diffuse - + KSRoot__kassiopeia->KSIntSurfaceDiffuse__ksint_surface_diffuse - - + + - + KSIntSurfaceMultiplication__ksint_surface_multiplication - -ksint_surface_multiplication + +ksint_surface_multiplication - + KSRoot__kassiopeia->KSIntSurfaceMultiplication__ksint_surface_multiplication - - + + + + + +KSIntSurfaceScattering__ksint_surface_scattering + +ksint_surface_scattering + + + +KSRoot__kassiopeia->KSIntSurfaceScattering__ksint_surface_scattering + + - + KSIntSurfaceSpecular__ksint_surface_specular ksint_surface_specular - + KSRoot__kassiopeia->KSIntSurfaceSpecular__ksint_surface_specular - + KSIntSurfaceSpinFlip__ksint_surface_spin_flip ksint_surface_spin_flip - + KSRoot__kassiopeia->KSIntSurfaceSpinFlip__ksint_surface_spin_flip - + KSModDynamicEnhancement__ksmod_dynamic_enhancement ksmod_dynamic_enhancement - + KSRoot__kassiopeia->KSModDynamicEnhancement__ksmod_dynamic_enhancement - + KSModEventReport__ksmod_event_report ksmod_event_report - + KSRoot__kassiopeia->KSModEventReport__ksmod_event_report - + KSModSplitOnTurn__ksmod_split_on_turn ksmod_split_on_turn - + KSRoot__kassiopeia->KSModSplitOnTurn__ksmod_split_on_turn - + KSNavMeshedSpace__ksnav_meshed_space ksnav_meshed_space - + KSRoot__kassiopeia->KSNavMeshedSpace__ksnav_meshed_space - + KSNavSpace__ksnav_space ksnav_space - + KSRoot__kassiopeia->KSNavSpace__ksnav_space - + KSNavSurface__ksnav_surface ksnav_surface - + KSRoot__kassiopeia->KSNavSurface__ksnav_surface - + KSTermDeath__ksterm_death ksterm_death - + KSRoot__kassiopeia->KSTermDeath__ksterm_death - + KSTermMagnetron__ksterm_magnetron ksterm_magnetron - + KSRoot__kassiopeia->KSTermMagnetron__ksterm_magnetron - + KSTermMaxEnergy__ksterm_max_energy ksterm_max_energy - + KSRoot__kassiopeia->KSTermMaxEnergy__ksterm_max_energy - + KSTermMaxLength__ksterm_max_length ksterm_max_length - + KSRoot__kassiopeia->KSTermMaxLength__ksterm_max_length - + KSTermMaxLongEnergy__ksterm_max_long_energy ksterm_max_long_energy - + KSRoot__kassiopeia->KSTermMaxLongEnergy__ksterm_max_long_energy - + KSTermMaxR__ksterm_max_r ksterm_max_r - + KSRoot__kassiopeia->KSTermMaxR__ksterm_max_r - + KSTermMaxStepTime__ksterm_max_step_time ksterm_max_step_time - + KSRoot__kassiopeia->KSTermMaxStepTime__ksterm_max_step_time - + KSTermMaxSteps__ksterm_max_steps ksterm_max_steps - + KSRoot__kassiopeia->KSTermMaxSteps__ksterm_max_steps - + KSTermMaxTime__ksterm_max_time ksterm_max_time - + KSRoot__kassiopeia->KSTermMaxTime__ksterm_max_time - + KSTermMaxTotalTime__ksterm_max_total_time ksterm_max_total_time - + KSRoot__kassiopeia->KSTermMaxTotalTime__ksterm_max_total_time - + KSTermMaxZ__ksterm_max_z ksterm_max_z - + KSRoot__kassiopeia->KSTermMaxZ__ksterm_max_z - + KSTermMinDistance__ksterm_min_distance ksterm_min_distance - + KSRoot__kassiopeia->KSTermMinDistance__ksterm_min_distance - + KSTermMinEnergy__ksterm_min_energy ksterm_min_energy - + KSRoot__kassiopeia->KSTermMinEnergy__ksterm_min_energy - + KSTermMinLongEnergy__ksterm_min_long_energy ksterm_min_long_energy - + KSRoot__kassiopeia->KSTermMinLongEnergy__ksterm_min_long_energy - + KSTermMinR__ksterm_min_r ksterm_min_r - + KSRoot__kassiopeia->KSTermMinR__ksterm_min_r - + KSTermMinZ__ksterm_min_z ksterm_min_z - + KSRoot__kassiopeia->KSTermMinZ__ksterm_min_z - + KSTermOutputData__ksterm_output ksterm_output - + KSRoot__kassiopeia->KSTermOutputData__ksterm_output - + KSTermSecondaries__ksterm_secondaries ksterm_secondaries - + KSRoot__kassiopeia->KSTermSecondaries__ksterm_secondaries - + KSTermStepsize__ksterm_stepsize ksterm_stepsize - + KSRoot__kassiopeia->KSTermStepsize__ksterm_stepsize - + KSTermTrapped__ksterm_trapped ksterm_trapped - + KSRoot__kassiopeia->KSTermTrapped__ksterm_trapped - + KSTermZHRadius__ksterm_zh_radius ksterm_zh_radius - + KSRoot__kassiopeia->KSTermZHRadius__ksterm_zh_radius - + KSTrajControlBChange__kstraj_control_B_change kstraj_control_B_change - + KSRoot__kassiopeia->KSTrajControlBChange__kstraj_control_B_change - + KSTrajControlCyclotron__kstraj_control_cyclotron kstraj_control_cyclotron - + KSRoot__kassiopeia->KSTrajControlCyclotron__kstraj_control_cyclotron - + KSTrajControlEnergy__kstraj_control_energy kstraj_control_energy - + KSRoot__kassiopeia->KSTrajControlEnergy__kstraj_control_energy - + KSTrajControlLength__kstraj_control_length kstraj_control_length - + KSRoot__kassiopeia->KSTrajControlLength__kstraj_control_length - + KSTrajControlMDot__kstraj_control_m_dot kstraj_control_m_dot - + KSRoot__kassiopeia->KSTrajControlMDot__kstraj_control_m_dot - + KSTrajControlMagneticMoment__kstraj_control_magnetic_moment kstraj_control_magnetic_moment - + KSRoot__kassiopeia->KSTrajControlMagneticMoment__kstraj_control_magnetic_moment - + KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error kstraj_control_momentum_numerical_error - + KSRoot__kassiopeia->KSTrajControlMomentumNumericalError__kstraj_control_momentum_numerical_error - + KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error kstraj_control_position_numerical_error - + KSRoot__kassiopeia->KSTrajControlPositionNumericalError__kstraj_control_position_numerical_error - + KSTrajControlSpinPrecession__kstraj_control_spin_precession kstraj_control_spin_precession - + KSRoot__kassiopeia->KSTrajControlSpinPrecession__kstraj_control_spin_precession - + KSTrajControlTime__kstraj_control_time kstraj_control_time - + KSRoot__kassiopeia->KSTrajControlTime__kstraj_control_time - + KSTrajIntegratorRK54__kstraj_integrator_rk54 kstraj_integrator_rk54 - + KSRoot__kassiopeia->KSTrajIntegratorRK54__kstraj_integrator_rk54 - + KSTrajIntegratorRK65__kstraj_integrator_rk65 kstraj_integrator_rk65 - + KSRoot__kassiopeia->KSTrajIntegratorRK65__kstraj_integrator_rk65 - + KSTrajIntegratorRK8__kstraj_integrator_rk8 kstraj_integrator_rk8 - + KSRoot__kassiopeia->KSTrajIntegratorRK8__kstraj_integrator_rk8 - + KSTrajIntegratorRK86__kstraj_integrator_rk86 kstraj_integrator_rk86 - + KSRoot__kassiopeia->KSTrajIntegratorRK86__kstraj_integrator_rk86 - + KSTrajIntegratorRK87__kstraj_integrator_rk87 kstraj_integrator_rk87 - + KSRoot__kassiopeia->KSTrajIntegratorRK87__kstraj_integrator_rk87 - + KSTrajIntegratorRKDP54__kstraj_integrator_rkdp54 kstraj_integrator_rkdp54 - + KSRoot__kassiopeia->KSTrajIntegratorRKDP54__kstraj_integrator_rkdp54 - + KSTrajIntegratorRKDP853__kstraj_integrator_rkdp853 kstraj_integrator_rkdp853 - + KSRoot__kassiopeia->KSTrajIntegratorRKDP853__kstraj_integrator_rkdp853 - + KSTrajIntegratorSym4__kstraj_integrator_sym4 kstraj_integrator_sym4 - + KSRoot__kassiopeia->KSTrajIntegratorSym4__kstraj_integrator_sym4 - + KSTrajInterpolatorContinuousRungeKutta__kstraj_interpolator_crk kstraj_interpolator_crk - + KSRoot__kassiopeia->KSTrajInterpolatorContinuousRungeKutta__kstraj_interpolator_crk - + KSTrajInterpolatorFast__kstraj_interpolator_fast kstraj_interpolator_fast - + KSRoot__kassiopeia->KSTrajInterpolatorFast__kstraj_interpolator_fast - + KSTrajInterpolatorHermite__kstraj_interpolator_hermite kstraj_interpolator_hermite - + KSRoot__kassiopeia->KSTrajInterpolatorHermite__kstraj_interpolator_hermite - + KSTrajTermConstantForcePropagation__kstraj_term_constant_force_propagation kstraj_term_constant_force_propagation - + KSRoot__kassiopeia->KSTrajTermConstantForcePropagation__kstraj_term_constant_force_propagation - + KSTrajTermDrift__kstraj_term_drift kstraj_term_drift - + KSRoot__kassiopeia->KSTrajTermDrift__kstraj_term_drift - + KSTrajTermGravity__kstraj_term_gravity kstraj_term_gravity - + KSRoot__kassiopeia->KSTrajTermGravity__kstraj_term_gravity - + KSTrajTermGyration__kstraj_term_gyration kstraj_term_gyration - + KSRoot__kassiopeia->KSTrajTermGyration__kstraj_term_gyration - + KSTrajTermPropagation__kstraj_term_propagation kstraj_term_propagation - + KSRoot__kassiopeia->KSTrajTermPropagation__kstraj_term_propagation - + KSTrajTermSynchrotron__kstraj_term_synchrotron kstraj_term_synchrotron - + KSRoot__kassiopeia->KSTrajTermSynchrotron__kstraj_term_synchrotron - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic - -kstraj_trajectory_adiabatic + +kstraj_trajectory_adiabatic - + KSRoot__kassiopeia->KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin - -kstraj_trajectory_adiabatic_spin + +kstraj_trajectory_adiabatic_spin - + KSRoot__kassiopeia->KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric - -kstraj_trajectory_electric + +kstraj_trajectory_electric - + KSRoot__kassiopeia->KSTrajTrajectoryElectric__kstraj_trajectory_electric - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact - -kstraj_trajectory_exact + +kstraj_trajectory_exact - + KSRoot__kassiopeia->KSTrajTrajectoryExact__kstraj_trajectory_exact - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin - -kstraj_trajectory_exact_spin + +kstraj_trajectory_exact_spin - + KSRoot__kassiopeia->KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped kstraj_trajectory_exact_trapped - + KSRoot__kassiopeia->KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped - + KSTrajTrajectoryLinear__kstraj_trajectory_linear kstraj_trajectory_linear - + KSRoot__kassiopeia->KSTrajTrajectoryLinear__kstraj_trajectory_linear - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic - -kstraj_trajectory_magnetic + +kstraj_trajectory_magnetic - + KSRoot__kassiopeia->KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic - - + + - + KSWriteASCII__kswrite_ascii kswrite_ascii - + KSRoot__kassiopeia->KSWriteASCII__kswrite_ascii - + KSWriteROOT__kswrite_root kswrite_root - + KSRoot__kassiopeia->KSWriteROOT__kswrite_root - + KSWriteROOTConditionOutputData__kswrite_root_condition_output kswrite_root_condition_output - + KSRoot__kassiopeia->KSWriteROOTConditionOutputData__kswrite_root_condition_output - + KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic kswrite_root_condition_periodic - + KSRoot__kassiopeia->KSWriteROOTConditionPeriodicData__kswrite_root_condition_periodic - + KSWriteROOTConditionStepData__kswrite_root_condition_step kswrite_root_condition_step - + KSRoot__kassiopeia->KSWriteROOTConditionStepData__kswrite_root_condition_step - + KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator kswrite_root_condition_terminator - + KSRoot__kassiopeia->KSWriteROOTConditionTerminatorData__kswrite_root_condition_terminator - + KSWriteVTK__kswrite_vtk kswrite_vtk - + KSRoot__kassiopeia->KSWriteVTK__kswrite_vtk - + KSComponentMemberData__output output - + KSRoot__kassiopeia->KSComponentMemberData__output - + KSComponentDeltaData__output_delta - -output_delta + +output_delta - + KSRoot__kassiopeia->KSComponentDeltaData__output_delta - - + + - + KSComponentGroup__output_group - -output_group + +output_group - + KSRoot__kassiopeia->KSComponentGroup__output_group - - + + - + KSComponentIntegralData__output_integral - -output_integral + +output_integral - + KSRoot__kassiopeia->KSComponentIntegralData__output_integral - - + + - + KSComponentMathData__output_math - -output_math + +output_math - + KSRoot__kassiopeia->KSComponentMathData__output_math - - + + - + KSComponentMaximumData__output_maximum - -output_maximum + +output_maximum - + KSRoot__kassiopeia->KSComponentMaximumData__output_maximum - - + + - + KSComponentMaximumAtData__output_maximum_at - -output_maximum_at + +output_maximum_at - + KSRoot__kassiopeia->KSComponentMaximumAtData__output_maximum_at - - + + - + KSComponentMinimumData__output_minimum - -output_minimum + +output_minimum - + KSRoot__kassiopeia->KSComponentMinimumData__output_minimum - - + + - + KSComponentMinimumAtData__output_minimum_at - -output_minimum_at + +output_minimum_at - + KSRoot__kassiopeia->KSComponentMinimumAtData__output_minimum_at - - + + - + KElectrostaticConstantField__constant_electric_field constant_electric_field - + KEMRoot__kemfield->KElectrostaticConstantField__constant_electric_field - + KMagnetostaticConstantField__constant_magnetic_field constant_magnetic_field - + KEMRoot__kemfield->KMagnetostaticConstantField__constant_magnetic_field - + KElectrostaticPotentialmap__electric_potentialmap electric_potentialmap - + KEMRoot__kemfield->KElectrostaticPotentialmap__electric_potentialmap - + KElectrostaticPotentialmapCalculator__electric_potentialmap_calculator electric_potentialmap_calculator - + KEMRoot__kemfield->KElectrostaticPotentialmapCalculator__electric_potentialmap_calculator - + KElectricQuadrupoleField__electric_quadrupole_field electric_quadrupole_field - + KEMRoot__kemfield->KElectricQuadrupoleField__electric_quadrupole_field - + KGStaticElectromagnetField__electromagnet_field electromagnet_field - + KEMRoot__kemfield->KGStaticElectromagnetField__electromagnet_field - + KGElectrostaticBoundaryField__electrostatic_field electrostatic_field - + KEMRoot__kemfield->KGElectrostaticBoundaryField__electrostatic_field - + KInducedAzimuthalElectricField__induced_azimuthal_electric_field induced_azimuthal_electric_field - + KEMRoot__kemfield->KInducedAzimuthalElectricField__induced_azimuthal_electric_field - + KElectrostaticLinearField__linear_electric_field linear_electric_field - + KEMRoot__kemfield->KElectrostaticLinearField__linear_electric_field - + KMagneticDipoleField__magnetic_dipole_field magnetic_dipole_field - + KEMRoot__kemfield->KMagneticDipoleField__magnetic_dipole_field - + KMagnetostaticFieldmap__magnetic_fieldmap magnetic_fieldmap - + KEMRoot__kemfield->KMagnetostaticFieldmap__magnetic_fieldmap - + KMagnetostaticFieldmapCalculator__magnetic_fieldmap_calculator magnetic_fieldmap_calculator - + KEMRoot__kemfield->KMagnetostaticFieldmapCalculator__magnetic_fieldmap_calculator - + KMagneticSuperpositionField__magnetic_superposition_field magnetic_superposition_field - + KEMRoot__kemfield->KMagneticSuperpositionField__magnetic_superposition_field - + KRampedElectricField__ramped_electric_field ramped_electric_field - + KEMRoot__kemfield->KRampedElectricField__ramped_electric_field - + KRampedMagneticField__ramped_magnetic_field ramped_magnetic_field - + KEMRoot__kemfield->KRampedMagneticField__ramped_magnetic_field - + KRampedElectric2Field__ramped_transitional_electric_field ramped_transitional_electric_field - + KEMRoot__kemfield->KRampedElectric2Field__ramped_transitional_electric_field - + KTextFile__file file - + KMessageTable__messages->KTextFile__file - + KMessageData__message message - + KMessageTable__messages->KMessageData__message - + KGROOTGeometryPainter__root_geometry_painter root_geometry_painter - + KROOTWindow__root_window->KGROOTGeometryPainter__root_geometry_painter - + KSROOTMagFieldPainter__root_magfield_painter root_magfield_painter - + KROOTWindow__root_window->KSROOTMagFieldPainter__root_magfield_painter - + KROOTPad__root_pad root_pad - + KROOTWindow__root_window->KROOTPad__root_pad - + KSROOTPotentialPainter__root_potential_painter root_potential_painter - + KROOTWindow__root_window->KSROOTPotentialPainter__root_potential_painter - + KSROOTTrackPainter__root_track_painter root_track_painter - + KROOTWindow__root_window->KSROOTTrackPainter__root_track_painter - + KSROOTZonalHarmonicsPainter__root_zh_painter root_zh_painter - + KROOTWindow__root_window->KSROOTZonalHarmonicsPainter__root_zh_painter - + KNamedReference__app app - + KApplicationRunner__run->KNamedReference__app - + KGVTKAxialMeshPainter__vtk_axial_mesh_painter vtk_axial_mesh_painter - + KVTKWindow__vtk_window->KGVTKAxialMeshPainter__vtk_axial_mesh_painter - + KGVTKDistanceTester__vtk_distance_tester vtk_distance_tester - + KVTKWindow__vtk_window->KGVTKDistanceTester__vtk_distance_tester - + KSVTKGeneratorPainter__vtk_generator_painter vtk_generator_painter - + KVTKWindow__vtk_window->KSVTKGeneratorPainter__vtk_generator_painter - + KGVTKGeometryPainter__vtk_geometry_painter vtk_geometry_painter - + KVTKWindow__vtk_window->KGVTKGeometryPainter__vtk_geometry_painter - + KGVTKMeshPainter__vtk_mesh_painter vtk_mesh_painter - + KVTKWindow__vtk_window->KGVTKMeshPainter__vtk_mesh_painter - + KGVTKNormalTester__vtk_normal_tester vtk_normal_tester - + KVTKWindow__vtk_window->KGVTKNormalTester__vtk_normal_tester - + KGVTKOutsideTester__vtk_outside_tester vtk_outside_tester - + KVTKWindow__vtk_window->KGVTKOutsideTester__vtk_outside_tester - + KGVTKPointTester__vtk_point_tester vtk_point_tester - + KVTKWindow__vtk_window->KGVTKPointTester__vtk_point_tester - + KGVTKRandomPointTester__vtk_random_point_tester vtk_random_point_tester - + KVTKWindow__vtk_window->KGVTKRandomPointTester__vtk_random_point_tester - + KSVTKTrackPainter__vtk_track_painter vtk_track_painter - + KVTKWindow__vtk_window->KSVTKTrackPainter__vtk_track_painter - + KSVTKTrackTerminatorPainter__vtk_track_terminator_painter vtk_track_terminator_painter - + KVTKWindow__vtk_window->KSVTKTrackTerminatorPainter__vtk_track_terminator_painter @@ -4139,20 +4163,20 @@ KGBeam__beam - -beam + +beam KGWrappedSpace_KGBeam___beam_space->KGBeam__beam - - + + KGWrappedSurface_KGBeam___beam_surface->KGBeam__beam - - + + @@ -4589,26 +4613,26 @@ KGBeamLine__end_line - -end_line + +end_line KGBeam__beam->KGBeamLine__end_line - - + + KGBeamLine__start_line - -start_line + +start_line KGBeam__beam->KGBeamLine__start_line - - + + @@ -4899,19 +4923,19 @@ - + KSCommandGroup__command_group - -command_group + +command_group KSCommandGroup__ks_command_group->KSCommandGroup__command_group - - + + - + KElectrostaticConstantField__field_electric_constant field_electric_constant @@ -4923,7 +4947,7 @@ - + KElectricQuadrupoleField__field_electric_quadrupole field_electric_quadrupole @@ -4935,7 +4959,7 @@ - + KGElectrostaticBoundaryField__field_electrostatic field_electrostatic @@ -4947,7 +4971,7 @@ - + KIntegratingMagnetostaticFieldSolver__integrating_field_solver integrating_field_solver @@ -4959,7 +4983,7 @@ - + KMagfieldCoilsFieldSolver__magfield_coil_field_solver magfield_coil_field_solver @@ -4971,7 +4995,7 @@ - + KZonalHarmonicMagnetostaticFieldSolver__zonal_harmonic_field_solver zonal_harmonic_field_solver @@ -4983,7 +5007,7 @@ - + KBoundaryElementInfoDisplay__boundary_element_info boundary_element_info @@ -4991,11 +5015,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KBoundaryElementInfoDisplay__boundary_element_info - - + + - + KCachedChargeDensitySolver__cached_bem_solver cached_bem_solver @@ -5003,11 +5027,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KCachedChargeDensitySolver__cached_bem_solver - - + + - + KCachedChargeDensitySolver__cached_charge_density_solver cached_charge_density_solver @@ -5015,11 +5039,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KCachedChargeDensitySolver__cached_charge_density_solver - - + + - + KExplicitSuperpositionCachedChargeDensitySolver__explicit_superposition_cached_bem_solver explicit_superposition_cached_bem_solver @@ -5027,11 +5051,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KExplicitSuperpositionCachedChargeDensitySolver__explicit_superposition_cached_bem_solver - - + + - + KExplicitSuperpositionCachedChargeDensitySolver__explicit_superposition_cached_charge_density_solver explicit_superposition_cached_charge_density_solver @@ -5039,11 +5063,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KExplicitSuperpositionCachedChargeDensitySolver__explicit_superposition_cached_charge_density_solver - - + + - + KElectricFastMultipoleFieldSolver__fast_multipole_field_solver fast_multipole_field_solver @@ -5051,11 +5075,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KElectricFastMultipoleFieldSolver__fast_multipole_field_solver - - + + - + KGaussSeidelChargeDensitySolver__gauss_seidel_bem_solver gauss_seidel_bem_solver @@ -5063,11 +5087,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KGaussSeidelChargeDensitySolver__gauss_seidel_bem_solver - - + + - + KGaussSeidelChargeDensitySolver__gauss_seidel_charge_density_solver gauss_seidel_charge_density_solver @@ -5075,11 +5099,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KGaussSeidelChargeDensitySolver__gauss_seidel_charge_density_solver - - + + - + KGaussianEliminationChargeDensitySolver__gaussian_elimination_bem_solver gaussian_elimination_bem_solver @@ -5087,11 +5111,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KGaussianEliminationChargeDensitySolver__gaussian_elimination_bem_solver - - + + - + KGaussianEliminationChargeDensitySolver__gaussian_elimination_charge_density_solver gaussian_elimination_charge_density_solver @@ -5099,11 +5123,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KGaussianEliminationChargeDensitySolver__gaussian_elimination_charge_density_solver - - + + - + KIntegratingElectrostaticFieldSolver__integrating_field_solver integrating_field_solver @@ -5111,11 +5135,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KIntegratingElectrostaticFieldSolver__integrating_field_solver - - + + - + KKrylovChargeDensitySolverOld__krylov_bem_solver krylov_bem_solver @@ -5123,11 +5147,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KKrylovChargeDensitySolverOld__krylov_bem_solver - - + + - + KKrylovChargeDensitySolver__krylov_bem_solver_new krylov_bem_solver_new @@ -5135,11 +5159,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KKrylovChargeDensitySolver__krylov_bem_solver_new - - + + - + KKrylovChargeDensitySolverOld__krylov_bem_solver_old krylov_bem_solver_old @@ -5147,11 +5171,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KKrylovChargeDensitySolverOld__krylov_bem_solver_old - - + + - + KKrylovChargeDensitySolver__krylov_charge_density_solver krylov_charge_density_solver @@ -5159,11 +5183,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KKrylovChargeDensitySolver__krylov_charge_density_solver - - + + - + KKrylovChargeDensitySolverOld__krylov_charge_density_solver_old krylov_charge_density_solver_old @@ -5171,11 +5195,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KKrylovChargeDensitySolverOld__krylov_charge_density_solver_old - - + + - + KRobinHoodChargeDensitySolver__robin_hood_bem_solver robin_hood_bem_solver @@ -5183,11 +5207,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KRobinHoodChargeDensitySolver__robin_hood_bem_solver - - + + - + KRobinHoodChargeDensitySolver__robin_hood_charge_density_solver robin_hood_charge_density_solver @@ -5195,11 +5219,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KRobinHoodChargeDensitySolver__robin_hood_charge_density_solver - - + + - + KElectrostaticBoundaryFieldTimer__timer timer @@ -5207,11 +5231,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KElectrostaticBoundaryFieldTimer__timer - - + + - + KVTKViewerAsBoundaryFieldVisitor__viewer viewer @@ -5219,11 +5243,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KVTKViewerAsBoundaryFieldVisitor__viewer - - + + - + KElectricZHFieldSolver__zonal_harmonic_field_solver zonal_harmonic_field_solver @@ -5231,11 +5255,11 @@ KGElectrostaticBoundaryField__ksfield_electrostatic->KElectricZHFieldSolver__zonal_harmonic_field_solver - - + + - + KStaticElectromagnetField__field_electromagnet field_electromagnet @@ -5247,7 +5271,7 @@ - + KMagnetostaticConstantField__field_magnetic_constant field_magnetic_constant @@ -5259,7 +5283,7 @@ - + KMagneticDipoleFieldBuilder__field_magnetic_dipole field_magnetic_dipole @@ -5271,7 +5295,7 @@ - + KMagneticSuperpositionFieldEntry__add_field add_field @@ -5283,4276 +5307,4288 @@ - + KSGenValueFermi__phi_fermi - -phi_fermi + +phi_fermi KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueFermi__phi_fermi - - + + - + KSGenValueFix__phi_fix - -phi_fix + +phi_fix KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueFix__phi_fix - - + + - + KSGenValueFormula__phi_formula - -phi_formula + +phi_formula KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueFormula__phi_formula - - + + - + KSGenValueGauss__phi_gauss - -phi_gauss + +phi_gauss KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueGauss__phi_gauss - - + + - + KSGenValueGeneralizedGauss__phi_generalized_gauss - -phi_generalized_gauss + +phi_generalized_gauss KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + - + KSGenValueHistogram__phi_histogram - -phi_histogram + +phi_histogram KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueHistogram__phi_histogram - - + + - + KSGenValueList__phi_list - -phi_list + +phi_list KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueList__phi_list - - + + - + KSGenValueSet__phi_set - -phi_set + +phi_set KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueSet__phi_set - - + + - + KSGenValueUniform__phi_uniform - -phi_uniform + +phi_uniform KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueUniform__phi_uniform - - + + - + KSGenValueAngleCosine__theta_cosine - -theta_cosine + +theta_cosine KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueAngleCosine__theta_cosine - - + + - + KSGenValueFermi__theta_fermi - -theta_fermi + +theta_fermi KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueFermi__theta_fermi - - + + - + KSGenValueFix__theta_fix - -theta_fix + +theta_fix KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueFix__theta_fix - - + + - + KSGenValueFormula__theta_formula - -theta_formula + +theta_formula KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueFormula__theta_formula - - + + - + KSGenValueGauss__theta_gauss - -theta_gauss + +theta_gauss KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueGauss__theta_gauss - - + + - + KSGenValueGeneralizedGauss__theta_generalized_gauss - -theta_generalized_gauss + +theta_generalized_gauss KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + - + KSGenValueHistogram__theta_histogram - -theta_histogram + +theta_histogram KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueHistogram__theta_histogram - - + + - + KSGenValueList__theta_list - -theta_list + +theta_list KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueList__theta_list - - + + - + KSGenValueSet__theta_set - -theta_set + +theta_set KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueSet__theta_set - - + + - + KSGenValueAngleSpherical__theta_spherical - -theta_spherical + +theta_spherical KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueAngleSpherical__theta_spherical - - + + - + KSGenValueUniform__theta_uniform - -theta_uniform + +theta_uniform KSGenDirectionSphericalComposite__ksgen_direction_spherical_composite->KSGenValueUniform__theta_uniform - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueFix__phi_fix - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueFormula__phi_formula - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueGauss__phi_gauss - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueHistogram__phi_histogram - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueList__phi_list - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueSet__phi_set - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueUniform__phi_uniform - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueAngleCosine__theta_cosine - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueFix__theta_fix - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueFormula__theta_formula - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueGauss__theta_gauss - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueHistogram__theta_histogram - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueList__theta_list - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueSet__theta_set - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueAngleSpherical__theta_spherical - - + + KSGenDirectionSphericalMagneticField__ksgen_direction_spherical_magnetic_field->KSGenValueUniform__theta_uniform - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueFermi__phi_fermi - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueFix__phi_fix - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueFormula__phi_formula - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueGauss__phi_gauss - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueHistogram__phi_histogram - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueList__phi_list - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueSet__phi_set - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueUniform__phi_uniform - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueAngleCosine__theta_cosine - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueFermi__theta_fermi - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueFix__theta_fix - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueFormula__theta_formula - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueGauss__theta_gauss - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueHistogram__theta_histogram - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueList__theta_list - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueSet__theta_set - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueAngleSpherical__theta_spherical - - + + KSGenDirectionSurfaceComposite__ksgen_direction_surface_composite->KSGenValueUniform__theta_uniform - - + + - + KSGenValueBoltzmann__energy_boltzmann - -energy_boltzmann + +energy_boltzmann KSGenEnergyComposite__ksgen_energy_composite->KSGenValueBoltzmann__energy_boltzmann - - + + - + KSGenValueFermi__energy_fermi - -energy_fermi + +energy_fermi KSGenEnergyComposite__ksgen_energy_composite->KSGenValueFermi__energy_fermi - - + + - + KSGenValueFix__energy_fix - -energy_fix + +energy_fix KSGenEnergyComposite__ksgen_energy_composite->KSGenValueFix__energy_fix - - + + - + KSGenValueFormula__energy_formula - -energy_formula + +energy_formula KSGenEnergyComposite__ksgen_energy_composite->KSGenValueFormula__energy_formula - - + + - + KSGenValueGauss__energy_gauss - -energy_gauss + +energy_gauss KSGenEnergyComposite__ksgen_energy_composite->KSGenValueGauss__energy_gauss - - + + - + KSGenValueGeneralizedGauss__energy_generalized_gauss - -energy_generalized_gauss + +energy_generalized_gauss KSGenEnergyComposite__ksgen_energy_composite->KSGenValueGeneralizedGauss__energy_generalized_gauss - - + + - + KSGenValueHistogram__energy_histogram - -energy_histogram + +energy_histogram KSGenEnergyComposite__ksgen_energy_composite->KSGenValueHistogram__energy_histogram - - + + - + KSGenValueList__energy_list - -energy_list + +energy_list KSGenEnergyComposite__ksgen_energy_composite->KSGenValueList__energy_list - - + + - + KSGenValueSet__energy_set - -energy_set + +energy_set KSGenEnergyComposite__ksgen_energy_composite->KSGenValueSet__energy_set - - + + - + KSGenValueUniform__energy_uniform - -energy_uniform + +energy_uniform KSGenEnergyComposite__ksgen_energy_composite->KSGenValueUniform__energy_uniform - - + + - + KSGenDirectionSphericalComposite__direction_spherical_composite - -direction_spherical_composite + +direction_spherical_composite KSGenGeneratorComposite__ksgen_generator_composite->KSGenDirectionSphericalComposite__direction_spherical_composite - - + + - + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field - -direction_spherical_magnetic_field + +direction_spherical_magnetic_field KSGenGeneratorComposite__ksgen_generator_composite->KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field - - + + - + KSGenDirectionSurfaceComposite__direction_surface_composite - -direction_surface_composite + +direction_surface_composite KSGenGeneratorComposite__ksgen_generator_composite->KSGenDirectionSurfaceComposite__direction_surface_composite - - + + - + KSGenEnergyBetaDecay__energy_beta_decay - -energy_beta_decay + +energy_beta_decay KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyBetaDecay__energy_beta_decay - - + + - + KSGenEnergyBetaRecoil__energy_beta_recoil - -energy_beta_recoil + +energy_beta_recoil KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyBetaRecoil__energy_beta_recoil - - + + - + KSGenEnergyComposite__energy_composite - -energy_composite + +energy_composite KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyComposite__energy_composite - - + + - + KSGenEnergyKryptonEvent__energy_krypton_event - -energy_krypton_event + +energy_krypton_event KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyKryptonEvent__energy_krypton_event - - + + - + KSGenEnergyLeadEvent__energy_lead_event - -energy_lead_event + +energy_lead_event KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyLeadEvent__energy_lead_event - - + + - + KSGenEnergyRadonEvent__energy_radon_event - -energy_radon_event + +energy_radon_event KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyRadonEvent__energy_radon_event - - + + - + KSGenEnergyRydberg__energy_rydberg - -energy_rydberg + +energy_rydberg KSGenGeneratorComposite__ksgen_generator_composite->KSGenEnergyRydberg__energy_rydberg - - + + - + KSGenLComposite__l_composite - -l_composite + +l_composite KSGenGeneratorComposite__ksgen_generator_composite->KSGenLComposite__l_composite - - + + - + KSGenLStatistical__l_statistical - -l_statistical + +l_statistical KSGenGeneratorComposite__ksgen_generator_composite->KSGenLStatistical__l_statistical - - + + - + KSGenLUniformMaxN__l_uniform_max_n - -l_uniform_max_n + +l_uniform_max_n KSGenGeneratorComposite__ksgen_generator_composite->KSGenLUniformMaxN__l_uniform_max_n - - + + - + KSGenMomentumRectangularComposite__momentum_rectangular_composite - -momentum_rectangular_composite + +momentum_rectangular_composite KSGenGeneratorComposite__ksgen_generator_composite->KSGenMomentumRectangularComposite__momentum_rectangular_composite - - + + - + KSGenNComposite__n_composite - -n_composite + +n_composite KSGenGeneratorComposite__ksgen_generator_composite->KSGenNComposite__n_composite - - + + - + KSGenValueFix__pid_fix - -pid_fix + +pid_fix KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueFix__pid_fix - - + + - + KSGenValueFormula__pid_formula - -pid_formula + +pid_formula KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueFormula__pid_formula - - + + - + KSGenValueGauss__pid_gauss - -pid_gauss + +pid_gauss KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueGauss__pid_gauss - - + + - + KSGenValueHistogram__pid_histogram - -pid_histogram + +pid_histogram KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueHistogram__pid_histogram - - + + - + KSGenValueList__pid_list - -pid_list + +pid_list KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueList__pid_list - - + + - + KSGenValuePareto__pid_pareto - -pid_pareto + +pid_pareto KSGenGeneratorComposite__ksgen_generator_composite->KSGenValuePareto__pid_pareto - - + + - + KSGenValueSet__pid_set - -pid_set + +pid_set KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueSet__pid_set - - + + - + KSGenValueUniform__pid_uniform - -pid_uniform + +pid_uniform KSGenGeneratorComposite__ksgen_generator_composite->KSGenValueUniform__pid_uniform - - + + - + KSGenPositionCylindricalComposite__position_cylindrical_composite - -position_cylindrical_composite + +position_cylindrical_composite KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionCylindricalComposite__position_cylindrical_composite - - + + - + KSGenPositionFluxTube__position_flux_tube - -position_flux_tube + +position_flux_tube KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionFluxTube__position_flux_tube - - + + - + KSGenPositionFrustrumComposite__position_frustrum_composite - -position_frustrum_composite + +position_frustrum_composite KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionFrustrumComposite__position_frustrum_composite - - + + - + KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube - -position_homogeneous_flux_tube + +position_homogeneous_flux_tube KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube - - + + - + KSGenPositionMask__position_mask - -position_mask + +position_mask KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionMask__position_mask - - + + - + KSGenPositionMeshSurfaceRandom__position_mesh_surface_random - -position_mesh_surface_random + +position_mesh_surface_random KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionMeshSurfaceRandom__position_mesh_surface_random - - + + - + KSGenPositionRectangularComposite__position_rectangular_composite - -position_rectangular_composite + +position_rectangular_composite KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionRectangularComposite__position_rectangular_composite - - + + - + KSGenPositionSpaceRandom__position_space_random - -position_space_random + +position_space_random KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionSpaceRandom__position_space_random - - + + - + KSGenPositionSphericalComposite__position_spherical_composite - -position_spherical_composite + +position_spherical_composite KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionSphericalComposite__position_spherical_composite - - + + - + KSGenPositionSurfaceAdjustmentStep__position_surface_adjustment_step - -position_surface_adjustment_step + +position_surface_adjustment_step KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionSurfaceAdjustmentStep__position_surface_adjustment_step - - + + - + KSGenPositionSurfaceRandom__position_surface_random - -position_surface_random + +position_surface_random KSGenGeneratorComposite__ksgen_generator_composite->KSGenPositionSurfaceRandom__position_surface_random - - + + - + KSGenSpinComposite__spin_composite - -spin_composite + +spin_composite KSGenGeneratorComposite__ksgen_generator_composite->KSGenSpinComposite__spin_composite - - + + - + KSGenSpinRelativeComposite__spin_relative_composite - -spin_relative_composite + +spin_relative_composite KSGenGeneratorComposite__ksgen_generator_composite->KSGenSpinRelativeComposite__spin_relative_composite - - + + - + KSGenTimeComposite__time_composite - -time_composite + +time_composite KSGenGeneratorComposite__ksgen_generator_composite->KSGenTimeComposite__time_composite - - + + - + KSGenValueFix__l_fix - -l_fix + +l_fix KSGenLComposite__ksgen_l_composite->KSGenValueFix__l_fix - - + + - + KSGenValueFormula__l_formula - -l_formula + +l_formula KSGenLComposite__ksgen_l_composite->KSGenValueFormula__l_formula - - + + - + KSGenValueGauss__l_gauss - -l_gauss + +l_gauss KSGenLComposite__ksgen_l_composite->KSGenValueGauss__l_gauss - - + + - + KSGenValueList__l_list - -l_list + +l_list KSGenLComposite__ksgen_l_composite->KSGenValueList__l_list - - + + - + KSGenValueSet__l_set - -l_set + +l_set KSGenLComposite__ksgen_l_composite->KSGenValueSet__l_set - - + + - + KSGenValueUniform__l_uniform - -l_uniform + +l_uniform KSGenLComposite__ksgen_l_composite->KSGenValueUniform__l_uniform - - + + - + KSGenValueFix__x_fix - -x_fix + +x_fix KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueFix__x_fix - - + + - + KSGenValueFormula__x_formula - -x_formula + +x_formula KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueFormula__x_formula - - + + - + KSGenValueGauss__x_gauss - -x_gauss + +x_gauss KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueGauss__x_gauss - - + + - + KSGenValueHistogram__x_histogram - -x_histogram + +x_histogram KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueHistogram__x_histogram - - + + - + KSGenValueList__x_list - -x_list + +x_list KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueList__x_list - - + + - + KSGenValueSet__x_set - -x_set + +x_set KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueSet__x_set - - + + - + KSGenValueUniform__x_uniform - -x_uniform + +x_uniform KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueUniform__x_uniform - - + + - + KSGenValueFix__y_fix - -y_fix + +y_fix KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueFix__y_fix - - + + - + KSGenValueFormula__y_formula - -y_formula + +y_formula KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueFormula__y_formula - - + + - + KSGenValueGauss__y_gauss - -y_gauss + +y_gauss KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueGauss__y_gauss - - + + - + KSGenValueHistogram__y_histogram - -y_histogram + +y_histogram KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueHistogram__y_histogram - - + + - + KSGenValueList__y_list - -y_list + +y_list KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueList__y_list - - + + - + KSGenValueSet__y_set - -y_set + +y_set KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueSet__y_set - - + + - + KSGenValueUniform__y_uniform - -y_uniform + +y_uniform KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueUniform__y_uniform - - + + - + KSGenValueFix__z_fix - -z_fix + +z_fix KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueFix__z_fix - - + + - + KSGenValueFormula__z_formula - -z_formula + +z_formula KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueFormula__z_formula - - + + - + KSGenValueGauss__z_gauss - -z_gauss + +z_gauss KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueGauss__z_gauss - - + + - + KSGenValueHistogram__z_histogram - -z_histogram + +z_histogram KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueHistogram__z_histogram - - + + - + KSGenValueList__z_list - -z_list + +z_list KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueList__z_list - - + + - + KSGenValueSet__z_set - -z_set + +z_set KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueSet__z_set - - + + - + KSGenValueUniform__z_uniform - -z_uniform + +z_uniform KSGenMomentumRectangularComposite__ksgen_momentum_rectangular_composite->KSGenValueUniform__z_uniform - - + + - + KSGenValueFix__n_fix - -n_fix + +n_fix KSGenNComposite__ksgen_n_composite->KSGenValueFix__n_fix - - + + - + KSGenValueFormula__n_formula - -n_formula + +n_formula KSGenNComposite__ksgen_n_composite->KSGenValueFormula__n_formula - - + + - + KSGenValueGauss__n_gauss - -n_gauss + +n_gauss KSGenNComposite__ksgen_n_composite->KSGenValueGauss__n_gauss - - + + - + KSGenValueList__n_list - -n_list + +n_list KSGenNComposite__ksgen_n_composite->KSGenValueList__n_list - - + + - + KSGenValuePareto__n_pareto - -n_pareto + +n_pareto KSGenNComposite__ksgen_n_composite->KSGenValuePareto__n_pareto - - + + - + KSGenValueSet__n_set - -n_set + +n_set KSGenNComposite__ksgen_n_composite->KSGenValueSet__n_set - - + + - + KSGenValueUniform__n_uniform - -n_uniform + +n_uniform KSGenNComposite__ksgen_n_composite->KSGenValueUniform__n_uniform - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueFix__phi_fix - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueFormula__phi_formula - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueGauss__phi_gauss - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueHistogram__phi_histogram - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueList__phi_list - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueSet__phi_set - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueUniform__phi_uniform - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueFix__z_fix - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueFormula__z_formula - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueGauss__z_gauss - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueHistogram__z_histogram - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueList__z_list - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueSet__z_set - - + + KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueUniform__z_uniform - - + + - + KSGenValueRadiusCylindrical__r_cylindrical - -r_cylindrical + +r_cylindrical KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueRadiusCylindrical__r_cylindrical - - + + - + KSGenValueFix__r_fix - -r_fix + +r_fix KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueFix__r_fix - - + + - + KSGenValueFormula__r_formula - -r_formula + +r_formula KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueFormula__r_formula - - + + - + KSGenValueRadiusFraction__r_fraction - -r_fraction + +r_fraction KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueRadiusFraction__r_fraction - - + + - + KSGenValueGauss__r_gauss - -r_gauss + +r_gauss KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueGauss__r_gauss - - + + - + KSGenValueHistogram__r_histogram - -r_histogram + +r_histogram KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueHistogram__r_histogram - - + + - + KSGenValueList__r_list - -r_list + +r_list KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueList__r_list - - + + - + KSGenValueSet__r_set - -r_set + +r_set KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueSet__r_set - - + + - + KSGenValueUniform__r_uniform - -r_uniform + +r_uniform KSGenPositionCylindricalComposite__ksgen_position_cylindrical_composite->KSGenValueUniform__r_uniform - - + + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueFix__phi_fix - - + + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueGauss__phi_gauss - - + + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueSet__phi_set - - + + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueUniform__phi_uniform - - + + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueFix__z_fix - - + + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueFormula__z_formula - - + + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueGauss__z_gauss - - + + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueSet__z_set - - + + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueUniform__z_uniform - - + + KSGenPositionFluxTube__ksgen_position_flux_tube->KSGenValueFormula__r_formula - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__phi_fix - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFormula__phi_formula - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueGauss__phi_gauss - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueHistogram__phi_histogram - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueList__phi_list - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueSet__phi_set - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueUniform__phi_uniform - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__z_fix - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFormula__z_formula - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueGauss__z_gauss - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueHistogram__z_histogram - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueList__z_list - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueSet__z_set - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueUniform__z_uniform - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueRadiusCylindrical__r_cylindrical - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__r_fix - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFormula__r_formula - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueRadiusFraction__r_fraction - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueGauss__r_gauss - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueHistogram__r_histogram - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueList__r_list - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueSet__r_set - - + + KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueUniform__r_uniform - - + + - + KSGenValueFix__r1_fix - -r1_fix + +r1_fix KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__r1_fix - - + + - + KSGenValueFix__r2_fix - -r2_fix + +r2_fix KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__r2_fix - - + + - + KSGenValueFix__z1_fix - -z1_fix + +z1_fix KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__z1_fix - - + + - + KSGenValueFix__z2_fix - -z2_fix + +z2_fix KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueFix__z2_fix - - + + - + KSGenValueZFrustrum__z_frustrum - -z_frustrum + +z_frustrum KSGenPositionFrustrumComposite__ksgen_position_frustrum_composite->KSGenValueZFrustrum__z_frustrum - - + + KSGenPositionMask__ksgen_position_mask->KSGenPositionCylindricalComposite__position_cylindrical_composite - - + + KSGenPositionMask__ksgen_position_mask->KSGenPositionMeshSurfaceRandom__position_mesh_surface_random - - + + KSGenPositionMask__ksgen_position_mask->KSGenPositionRectangularComposite__position_rectangular_composite - - + + KSGenPositionMask__ksgen_position_mask->KSGenPositionSpaceRandom__position_space_random - - + + KSGenPositionMask__ksgen_position_mask->KSGenPositionSphericalComposite__position_spherical_composite - - + + - + KSGenPositionSurfaceRandom __position_surface_random - -position_surface_random + +position_surface_random KSGenPositionMask__ksgen_position_mask->KSGenPositionSurfaceRandom __position_surface_random - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueFix__x_fix - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueFormula__x_formula - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueGauss__x_gauss - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueHistogram__x_histogram - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueList__x_list - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueSet__x_set - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueUniform__x_uniform - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueFix__y_fix - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueFormula__y_formula - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueGauss__y_gauss - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueHistogram__y_histogram - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueList__y_list - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueSet__y_set - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueUniform__y_uniform - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueFix__z_fix - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueFormula__z_formula - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueGauss__z_gauss - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueHistogram__z_histogram - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueList__z_list - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueSet__z_set - - + + KSGenPositionRectangularComposite__ksgen_position_rectangular_composite->KSGenValueUniform__z_uniform - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueFix__phi_fix - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueFormula__phi_formula - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueGauss__phi_gauss - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueHistogram__phi_histogram - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueList__phi_list - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueSet__phi_set - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueUniform__phi_uniform - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueFix__theta_fix - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueFormula__theta_formula - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueGauss__theta_gauss - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueHistogram__theta_histogram - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueList__theta_list - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueSet__theta_set - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueAngleSpherical__theta_spherical - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueUniform__theta_uniform - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueFix__r_fix - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueFormula__r_formula - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueGauss__r_gauss - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueHistogram__r_histogram - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueList__r_list - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueSet__r_set - - + + KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueUniform__r_uniform - - + + - + KSGenValueRadiusSpherical__r_spherical - -r_spherical + +r_spherical KSGenPositionSphericalComposite__ksgen_position_spherical_composite->KSGenValueRadiusSpherical__r_spherical - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueFix__phi_fix - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueFormula__phi_formula - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueGauss__phi_gauss - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueHistogram__phi_histogram - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueList__phi_list - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueSet__phi_set - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueUniform__phi_uniform - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueAngleCosine__theta_cosine - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueFix__theta_fix - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueFormula__theta_formula - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueGauss__theta_gauss - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueHistogram__theta_histogram - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueList__theta_list - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueSet__theta_set - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueAngleSpherical__theta_spherical - - + + KSGenSpinComposite__ksgen_spin_composite->KSGenValueUniform__theta_uniform - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueFix__phi_fix - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueFormula__phi_formula - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueGauss__phi_gauss - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueHistogram__phi_histogram - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueList__phi_list - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueSet__phi_set - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueUniform__phi_uniform - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueAngleCosine__theta_cosine - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueFix__theta_fix - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueFormula__theta_formula - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueGauss__theta_gauss - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueHistogram__theta_histogram - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueList__theta_list - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueSet__theta_set - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueAngleSpherical__theta_spherical - - + + KSGenSpinRelativeComposite__ksgen_spin_composite_relative->KSGenValueUniform__theta_uniform - - + + - + KSGenValueFermi__time_fermi - -time_fermi + +time_fermi KSGenTimeComposite__ksgen_time_composite->KSGenValueFermi__time_fermi - - + + - + KSGenValueFix__time_fix - -time_fix + +time_fix KSGenTimeComposite__ksgen_time_composite->KSGenValueFix__time_fix - - + + - + KSGenValueFormula__time_formula - -time_formula + +time_formula KSGenTimeComposite__ksgen_time_composite->KSGenValueFormula__time_formula - - + + - + KSGenValueGauss__time_gauss - -time_gauss + +time_gauss KSGenTimeComposite__ksgen_time_composite->KSGenValueGauss__time_gauss - - + + - + KSGenValueGeneralizedGauss__time_generalized_gauss - -time_generalized_gauss + +time_generalized_gauss KSGenTimeComposite__ksgen_time_composite->KSGenValueGeneralizedGauss__time_generalized_gauss - - + + - + KSGenValueHistogram__time_histogram - -time_histogram + +time_histogram KSGenTimeComposite__ksgen_time_composite->KSGenValueHistogram__time_histogram - - + + - + KSGenValueList__time_list - -time_list + +time_list KSGenTimeComposite__ksgen_time_composite->KSGenValueList__time_list - - + + - + KSGenValueSet__time_set - -time_set + +time_set KSGenTimeComposite__ksgen_time_composite->KSGenValueSet__time_set - - + + - + KSGenValueUniform__time_uniform - -time_uniform + +time_uniform KSGenTimeComposite__ksgen_time_composite->KSGenValueUniform__time_uniform - - + + - + KSCommandMemberAddElectricFieldData__add_electric_field - -add_electric_field + +add_electric_field KSGeoSide__ksgeo_side->KSCommandMemberAddElectricFieldData__add_electric_field - - + + - + KSCommandMemberAddMagneticFieldData__add_magnetic_field - -add_magnetic_field + +add_magnetic_field KSGeoSide__ksgeo_side->KSCommandMemberAddMagneticFieldData__add_magnetic_field - - + + - + KSCommandMemberAddStepModifierData__add_step_modifier - -add_step_modifier + +add_step_modifier KSGeoSide__ksgeo_side->KSCommandMemberAddStepModifierData__add_step_modifier - - + + - + KSCommandMemberAddStepOutputData__add_step_output - -add_step_output + +add_step_output KSGeoSide__ksgeo_side->KSCommandMemberAddStepOutputData__add_step_output - - + + - + KSCommandMemberAddTerminatorData__add_terminator - -add_terminator + +add_terminator KSGeoSide__ksgeo_side->KSCommandMemberAddTerminatorData__add_terminator - - + + - + KSCommandMemberAddTrackOutputData__add_track_output - -add_track_output + +add_track_output KSGeoSide__ksgeo_side->KSCommandMemberAddTrackOutputData__add_track_output - - + + - + KSCommandMemberClearSurfaceInteractionData__clear_surface_interaction - -clear_surface_interaction + +clear_surface_interaction KSGeoSide__ksgeo_side->KSCommandMemberClearSurfaceInteractionData__clear_surface_interaction - - + + - + KSCommandMemberData__command - -command + +command KSGeoSide__ksgeo_side->KSCommandMemberData__command - - + + - + KSCommandMemberRemoveElectricFieldData__remove_magnetic_field - -remove_magnetic_field + +remove_magnetic_field KSGeoSide__ksgeo_side->KSCommandMemberRemoveElectricFieldData__remove_magnetic_field - - + + - + KSCommandMemberRemoveStepModifierData__remove_step_modifier - -remove_step_modifier + +remove_step_modifier KSGeoSide__ksgeo_side->KSCommandMemberRemoveStepModifierData__remove_step_modifier - - + + - + KSCommandMemberRemoveStepOutputData__remove_step_output - -remove_step_output + +remove_step_output KSGeoSide__ksgeo_side->KSCommandMemberRemoveStepOutputData__remove_step_output - - + + - + KSCommandMemberRemoveTerminatorData__remove_terminator - -remove_terminator + +remove_terminator KSGeoSide__ksgeo_side->KSCommandMemberRemoveTerminatorData__remove_terminator - - + + - + KSCommandMemberRemoveTrackOutputData__remove_track_output - -remove_track_output + +remove_track_output KSGeoSide__ksgeo_side->KSCommandMemberRemoveTrackOutputData__remove_track_output - - + + - + KSCommandMemberSetSurfaceInteractionData__set_surface_interaction - -set_surface_interaction + +set_surface_interaction KSGeoSide__ksgeo_side->KSCommandMemberSetSurfaceInteractionData__set_surface_interaction - - + + KSGeoSpace__ksgeo_space->KSCommandMemberAddElectricFieldData__add_electric_field - - + + KSGeoSpace__ksgeo_space->KSCommandMemberAddMagneticFieldData__add_magnetic_field - - + + KSGeoSpace__ksgeo_space->KSCommandMemberAddStepModifierData__add_step_modifier - - + + KSGeoSpace__ksgeo_space->KSCommandMemberAddStepOutputData__add_step_output - - + + KSGeoSpace__ksgeo_space->KSCommandMemberAddTerminatorData__add_terminator - - + + KSGeoSpace__ksgeo_space->KSCommandMemberAddTrackOutputData__add_track_output - - + + KSGeoSpace__ksgeo_space->KSCommandMemberData__command - - + + KSGeoSpace__ksgeo_space->KSCommandMemberRemoveStepModifierData__remove_step_modifier - - + + KSGeoSpace__ksgeo_space->KSCommandMemberRemoveStepOutputData__remove_step_output - - + + KSGeoSpace__ksgeo_space->KSCommandMemberRemoveTerminatorData__remove_terminator - - + + KSGeoSpace__ksgeo_space->KSCommandMemberRemoveTrackOutputData__remove_track_output - - + + - + KSCommandMemberAddControlData__add_control - -add_control + +add_control KSGeoSpace__ksgeo_space->KSCommandMemberAddControlData__add_control - - + + - + KSCommandMemberAddSpaceInteractionData__add_space_interaction - -add_space_interaction + +add_space_interaction KSGeoSpace__ksgeo_space->KSCommandMemberAddSpaceInteractionData__add_space_interaction - - + + - + KSCommandMemberAddTermData__add_term - -add_term + +add_term KSGeoSpace__ksgeo_space->KSCommandMemberAddTermData__add_term - - + + - + KSCommandMemberClearDensityData__clear_density - -clear_density + +clear_density KSGeoSpace__ksgeo_space->KSCommandMemberClearDensityData__clear_density - - + + - + KSCommandMemberClearStepDataData__clear_step_data - -clear_step_data + +clear_step_data KSGeoSpace__ksgeo_space->KSCommandMemberClearStepDataData__clear_step_data - - + + - + KSCommandMemberClearStepPointData__clear_step_point - -clear_step_point + +clear_step_point KSGeoSpace__ksgeo_space->KSCommandMemberClearStepPointData__clear_step_point - - + + - + KSCommandMemberClearTrackDataData__clear_track_data - -clear_track_data + +clear_track_data KSGeoSpace__ksgeo_space->KSCommandMemberClearTrackDataData__clear_track_data - - + + - + KSCommandMemberClearTrackPointData__clear_track_point - -clear_track_point + +clear_track_point KSGeoSpace__ksgeo_space->KSCommandMemberClearTrackPointData__clear_track_point - - + + - + KSCommandMemberClearTrajectoryData__clear_trajectory - -clear_trajectory + +clear_trajectory KSGeoSpace__ksgeo_space->KSCommandMemberClearTrajectoryData__clear_trajectory - - + + - + KSGeoSide__geo_side - -geo_side + +geo_side KSGeoSpace__ksgeo_space->KSGeoSide__geo_side - - + + - + KSGeoSpace__geo_space - -geo_space + +geo_space KSGeoSpace__ksgeo_space->KSGeoSpace__geo_space - - + + - + KSGeoSurface__geo_surface - -geo_surface + +geo_surface KSGeoSpace__ksgeo_space->KSGeoSurface__geo_surface - - + + - + KSCommandMemberRemoveControlData__remove_control - -remove_control + +remove_control KSGeoSpace__ksgeo_space->KSCommandMemberRemoveControlData__remove_control - - + + - + KSCommandMemberRemoveElectricFieldData__remove_electric_field - -remove_electric_field + +remove_electric_field KSGeoSpace__ksgeo_space->KSCommandMemberRemoveElectricFieldData__remove_electric_field - - + + - + KSCommandMemberRemoveMagneticFieldData__remove_magnetic_field - -remove_magnetic_field + +remove_magnetic_field KSGeoSpace__ksgeo_space->KSCommandMemberRemoveMagneticFieldData__remove_magnetic_field - - + + - + KSCommandMemberRemoveSpaceInteractionData__remove_space_interaction - -remove_space_interaction + +remove_space_interaction KSGeoSpace__ksgeo_space->KSCommandMemberRemoveSpaceInteractionData__remove_space_interaction - - + + - + KSCommandMemberRemoveTermData__remove_term - -remove_term + +remove_term KSGeoSpace__ksgeo_space->KSCommandMemberRemoveTermData__remove_term - - + + - + KSCommandMemberSetDensityData__set_density - -set_density + +set_density KSGeoSpace__ksgeo_space->KSCommandMemberSetDensityData__set_density - - + + - + KSCommandMemberSetStepDataData__set_step_data - -set_step_data + +set_step_data KSGeoSpace__ksgeo_space->KSCommandMemberSetStepDataData__set_step_data - - + + - + KSCommandMemberSetStepPointData__set_step_point - -set_step_point + +set_step_point KSGeoSpace__ksgeo_space->KSCommandMemberSetStepPointData__set_step_point - - + + - + KSCommandMemberSetTrackDataData__set_track_data - -set_track_data + +set_track_data KSGeoSpace__ksgeo_space->KSCommandMemberSetTrackDataData__set_track_data - - + + - + KSCommandMemberSetTrackPointData__set_track_point - -set_track_point + +set_track_point KSGeoSpace__ksgeo_space->KSCommandMemberSetTrackPointData__set_track_point - - + + - + KSCommandMemberSetTrajectoryData__set_trajectory - -set_trajectory + +set_trajectory KSGeoSpace__ksgeo_space->KSCommandMemberSetTrajectoryData__set_trajectory - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberAddElectricFieldData__add_electric_field - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberAddMagneticFieldData__add_magnetic_field - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberAddStepModifierData__add_step_modifier - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberAddStepOutputData__add_step_output - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberAddTerminatorData__add_terminator - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberAddTrackOutputData__add_track_output - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberClearSurfaceInteractionData__clear_surface_interaction - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberData__command - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberRemoveElectricFieldData__remove_magnetic_field - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberRemoveStepModifierData__remove_step_modifier - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberRemoveStepOutputData__remove_step_output - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberRemoveTerminatorData__remove_terminator - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberRemoveTrackOutputData__remove_track_output - - + + KSGeoSurface__ksgeo_surface->KSCommandMemberSetSurfaceInteractionData__set_surface_interaction - - + + - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate - -decay_death_const_rate + +decay_death_const_rate - + KSIntDecay__ksint_decay->KSIntDecayCalculatorDeathConstRate__decay_death_const_rate - - + + - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr - -decay_ferenc_bbr + +decay_ferenc_bbr - + KSIntDecay__ksint_decay->KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr - - + + - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation - -decay_ferenc_ionisation + +decay_ferenc_ionisation - + KSIntDecay__ksint_decay->KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation - - + + - + KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous - -decay_ferenc_spontaneous + +decay_ferenc_spontaneous - + KSIntDecay__ksint_decay->KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation - -decay_glukhov_deexcitation + +decay_glukhov_deexcitation - + KSIntDecay__ksint_decay->KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation - - + + - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation - -decay_glukhov_excitation + +decay_glukhov_excitation - + KSIntDecay__ksint_decay->KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation - - + + - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation - -decay_glukhov_ionisation + +decay_glukhov_ionisation - + KSIntDecay__ksint_decay->KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous - -decay_glukhov_spontaneous + +decay_glukhov_spontaneous - + KSIntDecay__ksint_decay->KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous - - + + - + KSGenGeneratorComposite__decay_product_generator - -decay_product_generator + +decay_product_generator - + KSIntDecayCalculatorDeathConstRate__ksint_decay_calculator_death_const_rate->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorFerencBBRTransition__ksint_decay_calculator_ferenc_bbr_transition->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorFerencIonisation__ksint_decay_calculator_ferenc_ionisation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorFerencSpontaneous__ksint_decay_calculator_ferenc_spontaneous->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__ksint_decay_calculator_glukhov_deexcitation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovExcitation__ksint_decay_calculator_glukhov_excitation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovIonisation__ksint_decay_calculator_glukhov_ionisation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__ksint_decay_calculator_glukhov_spontaneous->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntCalculatorArgonSet__calculator_argon - -calculator_argon + +calculator_argon - + KSIntScattering__ksint_scattering->KSIntCalculatorArgonSet__calculator_argon - - + + - + KSIntCalculatorConstant__calculator_constant - -calculator_constant + +calculator_constant - + KSIntScattering__ksint_scattering->KSIntCalculatorConstant__calculator_constant - - + + - + KSIntCalculatorHydrogenSet__calculator_hydrogen - -calculator_hydrogen + +calculator_hydrogen - + KSIntScattering__ksint_scattering->KSIntCalculatorHydrogenSet__calculator_hydrogen - - + + - + KSIntCalculatorIon__calculator_ion - -calculator_ion + +calculator_ion - + KSIntScattering__ksint_scattering->KSIntCalculatorIon__calculator_ion - - + + - + KSIntCalculatorKESSSet__calculator_kess - -calculator_kess + +calculator_kess - + KSIntScattering__ksint_scattering->KSIntCalculatorKESSSet__calculator_kess - - + + + + + +KSIntCalculatorMott__calculator_mott + +calculator_mott + + + +KSIntScattering__ksint_scattering->KSIntCalculatorMott__calculator_mott + + - + KSIntDensityConstant__density_constant density_constant - + KSIntScattering__ksint_scattering->KSIntDensityConstant__density_constant - - + + - + KSTrajControlBChange__control_B_change control_B_change - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlBChange__control_B_change - - + + - + KSTrajControlCyclotron__control_cyclotron control_cyclotron - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlCyclotron__control_cyclotron - - + + - + KSTrajControlEnergy__control_energy control_energy - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlEnergy__control_energy - - + + - + KSTrajControlLength__control_length - -control_length + +control_length - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlLength__control_length - - + + - + KSTrajControlMagneticMoment__control_magnetic_moment control_magnetic_moment - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlMagneticMoment__control_magnetic_moment - - + + - + KSTrajControlMomentumNumericalError__control_momentum_error control_momentum_error - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlMomentumNumericalError__control_momentum_error - - + + - + KSTrajControlPositionNumericalError__control_position_error control_position_error - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlPositionNumericalError__control_position_error - - + + - + KSTrajControlTime__control_time - -control_time + +control_time - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajControlTime__control_time - - + + - + KSTrajIntegratorRK54__integrator_rk54 integrator_rk54 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRK54__integrator_rk54 - - + + - + KSTrajIntegratorRK65__integrator_rk65 - -integrator_rk65 + +integrator_rk65 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRK65__integrator_rk65 - - + + - + KSTrajIntegratorRK8__integrator_rk8 - -integrator_rk8 + +integrator_rk8 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajIntegratorRK86__integrator_rk86 - -integrator_rk86 + +integrator_rk86 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRK86__integrator_rk86 - - + + - + KSTrajIntegratorRK87__integrator_rk87 - -integrator_rk87 + +integrator_rk87 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRK87__integrator_rk87 - - + + - + KSTrajIntegratorRKDP54__integrator_rkdp54 - -integrator_rkdp54 + +integrator_rkdp54 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRKDP54__integrator_rkdp54 - - + + - + KSTrajIntegratorRKDP853__integrator_rkdp853 - -integrator_rkdp853 + +integrator_rkdp853 - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajIntegratorRKDP853__integrator_rkdp853 - - + + - + KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - -interpolator_crk + +interpolator_crk - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - - + + - + KSTrajInterpolatorFast__interpolator_fast interpolator_fast - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajInterpolatorFast__interpolator_fast - - + + - + KSTrajInterpolatorHermite__interpolator_hermite interpolator_hermite - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajInterpolatorHermite__interpolator_hermite - - + + - + KSTrajTermDrift__term_drift - -term_drift + +term_drift - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTermDrift__term_drift - - + + - + KSTrajTermGyration__term_gyration - -term_gyration + +term_gyration - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTermGyration__term_gyration - - + + - + KSTrajTermPropagation__term_propagation term_propagation - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTermPropagation__term_propagation - - + + - + KSTrajTermSynchrotron__term_synchrotron term_synchrotron - + KSTrajTrajectoryAdiabatic__kstraj_trajectory_adiabatic->KSTrajTermSynchrotron__term_synchrotron - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlBChange__control_B_change - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlCyclotron__control_cyclotron - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlEnergy__control_energy - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlLength__control_length - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlMagneticMoment__control_magnetic_moment - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlMomentumNumericalError__control_momentum_error - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlPositionNumericalError__control_position_error - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlTime__control_time - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRK54__integrator_rk54 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRK65__integrator_rk65 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRK86__integrator_rk86 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRK87__integrator_rk87 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRKDP54__integrator_rkdp54 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajIntegratorRKDP853__integrator_rkdp853 - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajInterpolatorFast__interpolator_fast - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajInterpolatorHermite__interpolator_hermite - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajTermPropagation__term_propagation - - + + - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajTermSynchrotron__term_synchrotron - - + + - + KSTrajControlMDot__control_m_dot control_m_dot - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlMDot__control_m_dot - - + + - + KSTrajControlSpinPrecession__control_spin_precession control_spin_precession - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajControlSpinPrecession__control_spin_precession - - + + - + KSTrajTermGravity__term_gravity term_gravity - + KSTrajTrajectoryAdiabaticSpin__kstraj_trajectory_adiabatic_spin->KSTrajTermGravity__term_gravity - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajControlBChange__control_B_change - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajControlLength__control_length - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajControlTime__control_time - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRK54__integrator_rk54 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRK65__integrator_rk65 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRK86__integrator_rk86 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRK87__integrator_rk87 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRKDP54__integrator_rkdp54 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajIntegratorRKDP853__integrator_rkdp853 - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajInterpolatorFast__interpolator_fast - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajInterpolatorHermite__interpolator_hermite - - + + - + KSTrajTrajectoryElectric__kstraj_trajectory_electric->KSTrajTermPropagation__term_propagation - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlBChange__control_B_change - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlCyclotron__control_cyclotron - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlEnergy__control_energy - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlLength__control_length - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlMagneticMoment__control_magnetic_moment - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlMomentumNumericalError__control_momentum_error - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlPositionNumericalError__control_position_error - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajControlTime__control_time - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRK54__integrator_rk54 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRK65__integrator_rk65 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRK86__integrator_rk86 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRK87__integrator_rk87 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRKDP54__integrator_rkdp54 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajIntegratorRKDP853__integrator_rkdp853 - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajInterpolatorFast__interpolator_fast - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajInterpolatorHermite__interpolator_hermite - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajTermPropagation__term_propagation - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajTermSynchrotron__term_synchrotron - - + + - + KSTrajTrajectoryExact__kstraj_trajectory_exact->KSTrajTermGravity__term_gravity - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlBChange__control_B_change - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlCyclotron__control_cyclotron - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlEnergy__control_energy - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlLength__control_length - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlMagneticMoment__control_magnetic_moment - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlMomentumNumericalError__control_momentum_error - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlPositionNumericalError__control_position_error - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlTime__control_time - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRK54__integrator_rk54 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRK65__integrator_rk65 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRK86__integrator_rk86 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRK87__integrator_rk87 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRKDP54__integrator_rkdp54 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajIntegratorRKDP853__integrator_rkdp853 - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajInterpolatorFast__interpolator_fast - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajInterpolatorHermite__interpolator_hermite - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajTermPropagation__term_propagation - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajTermSynchrotron__term_synchrotron - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajControlSpinPrecession__control_spin_precession - - + + - + KSTrajTrajectoryExactSpin__kstraj_trajectory_exact_spin->KSTrajTermGravity__term_gravity - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajControlLength__control_length - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajControlTime__control_time - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajTermPropagation__term_propagation - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajTermSynchrotron__term_synchrotron - + KSTrajIntegratorSym4__integrator_sym4 integrator_sym4 - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajIntegratorSym4__integrator_sym4 - + KSTrajInterpolatorContinuousRungeKutta __interpolator_crk interpolator_crk - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajInterpolatorContinuousRungeKutta __interpolator_crk - + KSTrajInterpolatorFast __interpolator_fast interpolator_fast - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajInterpolatorFast __interpolator_fast - + KSTrajInterpolatorHermite __interpolator_hermite interpolator_hermite - + KSTrajTrajectoryExactTrapped__kstraj_trajectory_exact_trapped->KSTrajInterpolatorHermite __interpolator_hermite - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajControlBChange__control_B_change - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajControlLength__control_length - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajControlTime__control_time - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRK54__integrator_rk54 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRK65__integrator_rk65 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRK8__integrator_rk8 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRK86__integrator_rk86 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRK87__integrator_rk87 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRKDP54__integrator_rkdp54 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajIntegratorRKDP853__integrator_rkdp853 - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajInterpolatorContinuousRungeKutta__interpolator_crk - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajInterpolatorFast__interpolator_fast - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajInterpolatorHermite__interpolator_hermite - - + + - + KSTrajTrajectoryMagnetic__kstraj_trajectory_magnetic->KSTrajTermPropagation__term_propagation - - + + KSCommandGroup__command_group->KSCommandGroup__command_group - - + + @@ -9681,7 +9717,7 @@ - + KExplicitSuperpositionSolutionComponent__component component @@ -9699,7 +9735,7 @@ - + KFMVTKElectrostaticTreeViewerData__viewer viewer @@ -9711,7 +9747,7 @@ - + KFMElectrostaticParameters__fftm_multiplication fftm_multiplication @@ -9723,7 +9759,7 @@ - + KFMElectrostaticParameters__preconditioner_electrostatic_parameters preconditioner_electrostatic_parameters @@ -9735,16 +9771,16 @@ - + KKrylovPreconditionerGenerator__krylov_preconditioner - -krylov_preconditioner + +krylov_preconditioner KKrylovChargeDensitySolver__krylov_bem_solver_new->KKrylovPreconditionerGenerator__krylov_preconditioner - - + + @@ -9761,14 +9797,14 @@ KKrylovChargeDensitySolver__krylov_charge_density_solver->KKrylovPreconditionerGenerator__krylov_preconditioner - - + + KKrylovChargeDensitySolverOld__krylov_charge_density_solver_old->KFMElectrostaticParameters__fftm_multiplication - - + + @@ -9779,2411 +9815,2411 @@ KKrylovPreconditionerGenerator__krylov_preconditioner->KKrylovPreconditionerGenerator__krylov_preconditioner - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueFermi__phi_fermi - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueFix__phi_fix - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueFormula__phi_formula - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueGauss__phi_gauss - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueHistogram__phi_histogram - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueList__phi_list - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueSet__phi_set - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueUniform__phi_uniform - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueAngleCosine__theta_cosine - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueFermi__theta_fermi - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueFix__theta_fix - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueFormula__theta_formula - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueGauss__theta_gauss - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueHistogram__theta_histogram - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueList__theta_list - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueSet__theta_set - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueAngleSpherical__theta_spherical - - + + KSGenDirectionSphericalComposite__direction_spherical_composite->KSGenValueUniform__theta_uniform - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueFix__phi_fix - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueFormula__phi_formula - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueGauss__phi_gauss - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueHistogram__phi_histogram - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueList__phi_list - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueSet__phi_set - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueUniform__phi_uniform - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueAngleCosine__theta_cosine - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueFix__theta_fix - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueFormula__theta_formula - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueGauss__theta_gauss - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueHistogram__theta_histogram - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueList__theta_list - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueSet__theta_set - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueAngleSpherical__theta_spherical - - + + KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field->KSGenValueUniform__theta_uniform - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueFermi__phi_fermi - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueFix__phi_fix - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueFormula__phi_formula - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueGauss__phi_gauss - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueHistogram__phi_histogram - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueList__phi_list - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueSet__phi_set - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueUniform__phi_uniform - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueAngleCosine__theta_cosine - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueFermi__theta_fermi - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueFix__theta_fix - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueFormula__theta_formula - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueGauss__theta_gauss - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueHistogram__theta_histogram - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueList__theta_list - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueSet__theta_set - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueAngleSpherical__theta_spherical - - + + KSGenDirectionSurfaceComposite__direction_surface_composite->KSGenValueUniform__theta_uniform - - + + KSGenEnergyComposite__energy_composite->KSGenValueBoltzmann__energy_boltzmann - - + + KSGenEnergyComposite__energy_composite->KSGenValueFermi__energy_fermi - - + + KSGenEnergyComposite__energy_composite->KSGenValueFix__energy_fix - - + + KSGenEnergyComposite__energy_composite->KSGenValueFormula__energy_formula - - + + KSGenEnergyComposite__energy_composite->KSGenValueGauss__energy_gauss - - + + KSGenEnergyComposite__energy_composite->KSGenValueGeneralizedGauss__energy_generalized_gauss - - + + KSGenEnergyComposite__energy_composite->KSGenValueHistogram__energy_histogram - - + + KSGenEnergyComposite__energy_composite->KSGenValueList__energy_list - - + + KSGenEnergyComposite__energy_composite->KSGenValueSet__energy_set - - + + KSGenEnergyComposite__energy_composite->KSGenValueUniform__energy_uniform - - + + KSGenLComposite__l_composite->KSGenValueFix__l_fix - - + + KSGenLComposite__l_composite->KSGenValueFormula__l_formula - - + + KSGenLComposite__l_composite->KSGenValueGauss__l_gauss - - + + KSGenLComposite__l_composite->KSGenValueList__l_list - - + + KSGenLComposite__l_composite->KSGenValueSet__l_set - - + + KSGenLComposite__l_composite->KSGenValueUniform__l_uniform - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueFix__x_fix - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueFormula__x_formula - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueGauss__x_gauss - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueHistogram__x_histogram - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueList__x_list - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueSet__x_set - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueUniform__x_uniform - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueFix__y_fix - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueFormula__y_formula - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueGauss__y_gauss - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueHistogram__y_histogram - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueList__y_list - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueSet__y_set - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueUniform__y_uniform - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueFix__z_fix - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueFormula__z_formula - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueGauss__z_gauss - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueHistogram__z_histogram - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueList__z_list - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueSet__z_set - - + + KSGenMomentumRectangularComposite__momentum_rectangular_composite->KSGenValueUniform__z_uniform - - + + KSGenNComposite__n_composite->KSGenValueFix__n_fix - - + + KSGenNComposite__n_composite->KSGenValueFormula__n_formula - - + + KSGenNComposite__n_composite->KSGenValueGauss__n_gauss - - + + KSGenNComposite__n_composite->KSGenValueList__n_list - - + + KSGenNComposite__n_composite->KSGenValuePareto__n_pareto - - + + KSGenNComposite__n_composite->KSGenValueSet__n_set - - + + KSGenNComposite__n_composite->KSGenValueUniform__n_uniform - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueFix__phi_fix - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueFormula__phi_formula - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueGauss__phi_gauss - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueHistogram__phi_histogram - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueList__phi_list - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueSet__phi_set - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueUniform__phi_uniform - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueFix__z_fix - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueFormula__z_formula - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueGauss__z_gauss - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueHistogram__z_histogram - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueList__z_list - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueSet__z_set - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueUniform__z_uniform - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueRadiusCylindrical__r_cylindrical - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueFix__r_fix - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueFormula__r_formula - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueRadiusFraction__r_fraction - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueGauss__r_gauss - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueHistogram__r_histogram - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueList__r_list - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueSet__r_set - - + + KSGenPositionCylindricalComposite__position_cylindrical_composite->KSGenValueUniform__r_uniform - - + + KSGenPositionFluxTube__position_flux_tube->KSGenValueFix__phi_fix - - + + KSGenPositionFluxTube__position_flux_tube->KSGenValueGauss__phi_gauss - - + + KSGenPositionFluxTube__position_flux_tube->KSGenValueSet__phi_set - - + + KSGenPositionFluxTube__position_flux_tube->KSGenValueUniform__phi_uniform - - + + KSGenPositionFluxTube__position_flux_tube->KSGenValueFix__z_fix - - + + KSGenPositionFluxTube__position_flux_tube->KSGenValueFormula__z_formula - - + + KSGenPositionFluxTube__position_flux_tube->KSGenValueGauss__z_gauss - - + + KSGenPositionFluxTube__position_flux_tube->KSGenValueSet__z_set - - + + KSGenPositionFluxTube__position_flux_tube->KSGenValueUniform__z_uniform - - + + KSGenPositionFluxTube__position_flux_tube->KSGenValueFormula__r_formula - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__phi_fix - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFormula__phi_formula - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueGauss__phi_gauss - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueHistogram__phi_histogram - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueList__phi_list - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueSet__phi_set - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueUniform__phi_uniform - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__z_fix - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFormula__z_formula - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueGauss__z_gauss - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueHistogram__z_histogram - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueList__z_list - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueSet__z_set - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueUniform__z_uniform - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueRadiusCylindrical__r_cylindrical - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__r_fix - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFormula__r_formula - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueRadiusFraction__r_fraction - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueGauss__r_gauss - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueHistogram__r_histogram - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueList__r_list - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueSet__r_set - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueUniform__r_uniform - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__r1_fix - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__r2_fix - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__z1_fix - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueFix__z2_fix - - + + KSGenPositionFrustrumComposite__position_frustrum_composite->KSGenValueZFrustrum__z_frustrum - - + + KSGenPositionMask__position_mask->KSGenPositionCylindricalComposite__position_cylindrical_composite - - + + KSGenPositionMask__position_mask->KSGenPositionMeshSurfaceRandom__position_mesh_surface_random - - + + KSGenPositionMask__position_mask->KSGenPositionRectangularComposite__position_rectangular_composite - - + + KSGenPositionMask__position_mask->KSGenPositionSpaceRandom__position_space_random - - + + KSGenPositionMask__position_mask->KSGenPositionSphericalComposite__position_spherical_composite - - + + KSGenPositionMask__position_mask->KSGenPositionSurfaceRandom __position_surface_random - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueFix__x_fix - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueFormula__x_formula - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueGauss__x_gauss - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueHistogram__x_histogram - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueList__x_list - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueSet__x_set - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueUniform__x_uniform - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueFix__y_fix - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueFormula__y_formula - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueGauss__y_gauss - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueHistogram__y_histogram - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueList__y_list - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueSet__y_set - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueUniform__y_uniform - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueFix__z_fix - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueFormula__z_formula - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueGauss__z_gauss - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueHistogram__z_histogram - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueList__z_list - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueSet__z_set - - + + KSGenPositionRectangularComposite__position_rectangular_composite->KSGenValueUniform__z_uniform - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueFix__phi_fix - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueFormula__phi_formula - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueGauss__phi_gauss - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueHistogram__phi_histogram - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueList__phi_list - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueSet__phi_set - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueUniform__phi_uniform - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueFix__theta_fix - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueFormula__theta_formula - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueGauss__theta_gauss - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueHistogram__theta_histogram - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueList__theta_list - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueSet__theta_set - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueAngleSpherical__theta_spherical - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueUniform__theta_uniform - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueFix__r_fix - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueFormula__r_formula - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueGauss__r_gauss - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueHistogram__r_histogram - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueList__r_list - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueSet__r_set - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueUniform__r_uniform - - + + KSGenPositionSphericalComposite__position_spherical_composite->KSGenValueRadiusSpherical__r_spherical - - + + KSGenSpinComposite__spin_composite->KSGenValueFix__phi_fix - - + + KSGenSpinComposite__spin_composite->KSGenValueFormula__phi_formula - - + + KSGenSpinComposite__spin_composite->KSGenValueGauss__phi_gauss - - + + KSGenSpinComposite__spin_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + KSGenSpinComposite__spin_composite->KSGenValueHistogram__phi_histogram - - + + KSGenSpinComposite__spin_composite->KSGenValueList__phi_list - - + + KSGenSpinComposite__spin_composite->KSGenValueSet__phi_set - - + + KSGenSpinComposite__spin_composite->KSGenValueUniform__phi_uniform - - + + KSGenSpinComposite__spin_composite->KSGenValueAngleCosine__theta_cosine - - + + KSGenSpinComposite__spin_composite->KSGenValueFix__theta_fix - - + + KSGenSpinComposite__spin_composite->KSGenValueFormula__theta_formula - - + + KSGenSpinComposite__spin_composite->KSGenValueGauss__theta_gauss - - + + KSGenSpinComposite__spin_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + KSGenSpinComposite__spin_composite->KSGenValueHistogram__theta_histogram - - + + KSGenSpinComposite__spin_composite->KSGenValueList__theta_list - - + + KSGenSpinComposite__spin_composite->KSGenValueSet__theta_set - - + + KSGenSpinComposite__spin_composite->KSGenValueAngleSpherical__theta_spherical - - + + KSGenSpinComposite__spin_composite->KSGenValueUniform__theta_uniform - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueFix__phi_fix - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueFormula__phi_formula - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueGauss__phi_gauss - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueGeneralizedGauss__phi_generalized_gauss - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueHistogram__phi_histogram - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueList__phi_list - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueSet__phi_set - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueUniform__phi_uniform - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueAngleCosine__theta_cosine - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueFix__theta_fix - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueFormula__theta_formula - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueGauss__theta_gauss - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueGeneralizedGauss__theta_generalized_gauss - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueHistogram__theta_histogram - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueList__theta_list - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueSet__theta_set - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueAngleSpherical__theta_spherical - - + + KSGenSpinRelativeComposite__spin_relative_composite->KSGenValueUniform__theta_uniform - - + + KSGenTimeComposite__time_composite->KSGenValueFermi__time_fermi - - + + KSGenTimeComposite__time_composite->KSGenValueFix__time_fix - - + + KSGenTimeComposite__time_composite->KSGenValueFormula__time_formula - - + + KSGenTimeComposite__time_composite->KSGenValueGauss__time_gauss - - + + KSGenTimeComposite__time_composite->KSGenValueGeneralizedGauss__time_generalized_gauss - - + + KSGenTimeComposite__time_composite->KSGenValueHistogram__time_histogram - - + + KSGenTimeComposite__time_composite->KSGenValueList__time_list - - + + KSGenTimeComposite__time_composite->KSGenValueSet__time_set - - + + KSGenTimeComposite__time_composite->KSGenValueUniform__time_uniform - - + + KSGeoSide__geo_side->KSCommandMemberAddElectricFieldData__add_electric_field - - + + KSGeoSide__geo_side->KSCommandMemberAddMagneticFieldData__add_magnetic_field - - + + KSGeoSide__geo_side->KSCommandMemberAddStepModifierData__add_step_modifier - - + + KSGeoSide__geo_side->KSCommandMemberAddStepOutputData__add_step_output - - + + KSGeoSide__geo_side->KSCommandMemberAddTerminatorData__add_terminator - - + + KSGeoSide__geo_side->KSCommandMemberAddTrackOutputData__add_track_output - - + + KSGeoSide__geo_side->KSCommandMemberClearSurfaceInteractionData__clear_surface_interaction - - + + KSGeoSide__geo_side->KSCommandMemberData__command - - + + KSGeoSide__geo_side->KSCommandMemberRemoveElectricFieldData__remove_magnetic_field - - + + KSGeoSide__geo_side->KSCommandMemberRemoveStepModifierData__remove_step_modifier - - + + KSGeoSide__geo_side->KSCommandMemberRemoveStepOutputData__remove_step_output - - + + KSGeoSide__geo_side->KSCommandMemberRemoveTerminatorData__remove_terminator - - + + KSGeoSide__geo_side->KSCommandMemberRemoveTrackOutputData__remove_track_output - - + + KSGeoSide__geo_side->KSCommandMemberSetSurfaceInteractionData__set_surface_interaction - - + + KSGeoSpace__geo_space->KSCommandMemberAddElectricFieldData__add_electric_field - - + + KSGeoSpace__geo_space->KSCommandMemberAddMagneticFieldData__add_magnetic_field - - + + KSGeoSpace__geo_space->KSCommandMemberAddStepModifierData__add_step_modifier - - + + KSGeoSpace__geo_space->KSCommandMemberAddStepOutputData__add_step_output - - + + KSGeoSpace__geo_space->KSCommandMemberAddTerminatorData__add_terminator - - + + KSGeoSpace__geo_space->KSCommandMemberAddTrackOutputData__add_track_output - - + + KSGeoSpace__geo_space->KSCommandMemberData__command - - + + KSGeoSpace__geo_space->KSCommandMemberRemoveStepModifierData__remove_step_modifier - - + + KSGeoSpace__geo_space->KSCommandMemberRemoveStepOutputData__remove_step_output - - + + KSGeoSpace__geo_space->KSCommandMemberRemoveTerminatorData__remove_terminator - - + + KSGeoSpace__geo_space->KSCommandMemberRemoveTrackOutputData__remove_track_output - - + + KSGeoSpace__geo_space->KSCommandMemberAddControlData__add_control - - + + KSGeoSpace__geo_space->KSCommandMemberAddSpaceInteractionData__add_space_interaction - - + + KSGeoSpace__geo_space->KSCommandMemberAddTermData__add_term - - + + KSGeoSpace__geo_space->KSCommandMemberClearDensityData__clear_density - - + + KSGeoSpace__geo_space->KSCommandMemberClearStepDataData__clear_step_data - - + + KSGeoSpace__geo_space->KSCommandMemberClearStepPointData__clear_step_point - - + + KSGeoSpace__geo_space->KSCommandMemberClearTrackDataData__clear_track_data - - + + KSGeoSpace__geo_space->KSCommandMemberClearTrackPointData__clear_track_point - - + + KSGeoSpace__geo_space->KSCommandMemberClearTrajectoryData__clear_trajectory - - + + KSGeoSpace__geo_space->KSGeoSide__geo_side - - + + KSGeoSpace__geo_space->KSGeoSpace__geo_space - - + + KSGeoSpace__geo_space->KSGeoSurface__geo_surface - - + + KSGeoSpace__geo_space->KSCommandMemberRemoveControlData__remove_control - - + + KSGeoSpace__geo_space->KSCommandMemberRemoveElectricFieldData__remove_electric_field - - + + KSGeoSpace__geo_space->KSCommandMemberRemoveMagneticFieldData__remove_magnetic_field - - + + KSGeoSpace__geo_space->KSCommandMemberRemoveSpaceInteractionData__remove_space_interaction - - + + KSGeoSpace__geo_space->KSCommandMemberRemoveTermData__remove_term - - + + KSGeoSpace__geo_space->KSCommandMemberSetDensityData__set_density - - + + KSGeoSpace__geo_space->KSCommandMemberSetStepDataData__set_step_data - - + + KSGeoSpace__geo_space->KSCommandMemberSetStepPointData__set_step_point - - + + KSGeoSpace__geo_space->KSCommandMemberSetTrackDataData__set_track_data - - + + KSGeoSpace__geo_space->KSCommandMemberSetTrackPointData__set_track_point - - + + KSGeoSpace__geo_space->KSCommandMemberSetTrajectoryData__set_trajectory - - + + KSGeoSurface__geo_surface->KSCommandMemberAddElectricFieldData__add_electric_field - - + + KSGeoSurface__geo_surface->KSCommandMemberAddMagneticFieldData__add_magnetic_field - - + + KSGeoSurface__geo_surface->KSCommandMemberAddStepModifierData__add_step_modifier - - + + KSGeoSurface__geo_surface->KSCommandMemberAddStepOutputData__add_step_output - - + + KSGeoSurface__geo_surface->KSCommandMemberAddTerminatorData__add_terminator - - + + KSGeoSurface__geo_surface->KSCommandMemberAddTrackOutputData__add_track_output - - + + KSGeoSurface__geo_surface->KSCommandMemberClearSurfaceInteractionData__clear_surface_interaction - - + + KSGeoSurface__geo_surface->KSCommandMemberData__command - - + + KSGeoSurface__geo_surface->KSCommandMemberRemoveElectricFieldData__remove_magnetic_field - - + + KSGeoSurface__geo_surface->KSCommandMemberRemoveStepModifierData__remove_step_modifier - - + + KSGeoSurface__geo_surface->KSCommandMemberRemoveStepOutputData__remove_step_output - - + + KSGeoSurface__geo_surface->KSCommandMemberRemoveTerminatorData__remove_terminator - - + + KSGeoSurface__geo_surface->KSCommandMemberRemoveTrackOutputData__remove_track_output - - + + KSGeoSurface__geo_surface->KSCommandMemberSetSurfaceInteractionData__set_surface_interaction - - + + - + KSIntDecayCalculatorDeathConstRate__decay_death_const_rate->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorFerencBBRTransition__decay_ferenc_bbr->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorFerencIonisation__decay_ferenc_ionisation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorFerencSpontaneous__decay_ferenc_spontaneous->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovDeExcitation__decay_glukhov_deexcitation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovExcitation__decay_glukhov_excitation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovIonisation__decay_glukhov_ionisation->KSGenGeneratorComposite__decay_product_generator - - + + - + KSIntDecayCalculatorGlukhovSpontaneous__decay_glukhov_spontaneous->KSGenGeneratorComposite__decay_product_generator - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenDirectionSphericalComposite__direction_spherical_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenDirectionSphericalMagneticField__direction_spherical_magnetic_field - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenDirectionSurfaceComposite__direction_surface_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyBetaDecay__energy_beta_decay - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyBetaRecoil__energy_beta_recoil - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyComposite__energy_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyKryptonEvent__energy_krypton_event - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyLeadEvent__energy_lead_event - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyRadonEvent__energy_radon_event - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenEnergyRydberg__energy_rydberg - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenLComposite__l_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenLStatistical__l_statistical - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenLUniformMaxN__l_uniform_max_n - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenMomentumRectangularComposite__momentum_rectangular_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenNComposite__n_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueFix__pid_fix - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueFormula__pid_formula - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueGauss__pid_gauss - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueHistogram__pid_histogram - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueList__pid_list - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValuePareto__pid_pareto - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueSet__pid_set - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenValueUniform__pid_uniform - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionCylindricalComposite__position_cylindrical_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionFluxTube__position_flux_tube - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionFrustrumComposite__position_frustrum_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionHomogeneousFluxTube__position_homogeneous_flux_tube - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionMask__position_mask - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionMeshSurfaceRandom__position_mesh_surface_random - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionRectangularComposite__position_rectangular_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionSpaceRandom__position_space_random - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionSphericalComposite__position_spherical_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionSurfaceAdjustmentStep__position_surface_adjustment_step - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenPositionSurfaceRandom__position_surface_random - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenSpinComposite__spin_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenSpinRelativeComposite__spin_relative_composite - - + + - + KSGenGeneratorComposite__decay_product_generator->KSGenTimeComposite__time_composite - - + + - + KElectrostaticPotentialmapCalculator__electric_potentialmap_calculator->KElectrostaticConstantField__field_electric_constant - + KElectrostaticPotentialmapCalculator__electric_potentialmap_calculator->KElectricQuadrupoleField__field_electric_quadrupole - + KElectrostaticPotentialmapCalculator__electric_potentialmap_calculator->KGElectrostaticBoundaryField__field_electrostatic - + KGStaticElectromagnetField__electromagnet_field->KIntegratingMagnetostaticFieldSolver__integrating_field_solver - + KGStaticElectromagnetField__electromagnet_field->KMagfieldCoilsFieldSolver__magfield_coil_field_solver - + KGStaticElectromagnetField__electromagnet_field->KZonalHarmonicMagnetostaticFieldSolver__zonal_harmonic_field_solver - + KGElectrostaticBoundaryField__electrostatic_field->KBoundaryElementInfoDisplay__boundary_element_info - + KGElectrostaticBoundaryField__electrostatic_field->KCachedChargeDensitySolver__cached_bem_solver - + KGElectrostaticBoundaryField__electrostatic_field->KCachedChargeDensitySolver__cached_charge_density_solver - + KGElectrostaticBoundaryField__electrostatic_field->KExplicitSuperpositionCachedChargeDensitySolver__explicit_superposition_cached_bem_solver - + KGElectrostaticBoundaryField__electrostatic_field->KExplicitSuperpositionCachedChargeDensitySolver__explicit_superposition_cached_charge_density_solver - + KGElectrostaticBoundaryField__electrostatic_field->KElectricFastMultipoleFieldSolver__fast_multipole_field_solver - + KGElectrostaticBoundaryField__electrostatic_field->KGaussSeidelChargeDensitySolver__gauss_seidel_bem_solver - + KGElectrostaticBoundaryField__electrostatic_field->KGaussSeidelChargeDensitySolver__gauss_seidel_charge_density_solver - + KGElectrostaticBoundaryField__electrostatic_field->KGaussianEliminationChargeDensitySolver__gaussian_elimination_bem_solver - + KGElectrostaticBoundaryField__electrostatic_field->KGaussianEliminationChargeDensitySolver__gaussian_elimination_charge_density_solver - + KGElectrostaticBoundaryField__electrostatic_field->KIntegratingElectrostaticFieldSolver__integrating_field_solver - + KGElectrostaticBoundaryField__electrostatic_field->KKrylovChargeDensitySolverOld__krylov_bem_solver - + KGElectrostaticBoundaryField__electrostatic_field->KKrylovChargeDensitySolver__krylov_bem_solver_new - + KGElectrostaticBoundaryField__electrostatic_field->KKrylovChargeDensitySolverOld__krylov_bem_solver_old - + KGElectrostaticBoundaryField__electrostatic_field->KKrylovChargeDensitySolver__krylov_charge_density_solver - + KGElectrostaticBoundaryField__electrostatic_field->KKrylovChargeDensitySolverOld__krylov_charge_density_solver_old - + KGElectrostaticBoundaryField__electrostatic_field->KRobinHoodChargeDensitySolver__robin_hood_bem_solver - + KGElectrostaticBoundaryField__electrostatic_field->KRobinHoodChargeDensitySolver__robin_hood_charge_density_solver - + KGElectrostaticBoundaryField__electrostatic_field->KElectrostaticBoundaryFieldTimer__timer - + KGElectrostaticBoundaryField__electrostatic_field->KVTKViewerAsBoundaryFieldVisitor__viewer - + KGElectrostaticBoundaryField__electrostatic_field->KElectricZHFieldSolver__zonal_harmonic_field_solver - + KMagnetostaticFieldmapCalculator__magnetic_fieldmap_calculator->KStaticElectromagnetField__field_electromagnet - + KMagnetostaticFieldmapCalculator__magnetic_fieldmap_calculator->KMagnetostaticConstantField__field_magnetic_constant - + KMagnetostaticFieldmapCalculator__magnetic_fieldmap_calculator->KMagneticDipoleFieldBuilder__field_magnetic_dipole - + KMagneticSuperpositionField__magnetic_superposition_field->KMagneticSuperpositionFieldEntry__add_field - + KROOTPad__root_pad->KGROOTGeometryPainter__root_geometry_painter - + KROOTPad__root_pad->KSROOTMagFieldPainter__root_magfield_painter - + KROOTPad__root_pad->KSROOTPotentialPainter__root_potential_painter - + KROOTPad__root_pad->KSROOTTrackPainter__root_track_painter - + KROOTPad__root_pad->KSROOTZonalHarmonicsPainter__root_zh_painter diff --git a/Documentation/Bindings/bindings_full.xml b/Documentation/Bindings/bindings_full.xml index 049c55993..6898e7591 100644 --- a/Documentation/Bindings/bindings_full.xml +++ b/Documentation/Bindings/bindings_full.xml @@ -2152,6 +2152,7 @@ @@ -2315,6 +2316,7 @@ @@ -2479,6 +2481,7 @@ @@ -4194,6 +4197,7 @@ @@ -4348,6 +4352,7 @@ @@ -4701,6 +4706,7 @@ @@ -5022,6 +5028,14 @@ > + + + + + + + + + - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -976,12 +976,12 @@ Example: ##### KGPlanarPolyLoopLineArguments Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -1065,12 +1065,12 @@ Example: ##### KGExtrudedObjectArc Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2095,7 +2095,7 @@ Example: |element name|source files|child elements|child types|attributes|attribute types| |-----|-----|-----|-----|-----|-----| -|`kassiopeia`|[*KSRootBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Simulation/Source/KSRootBuilder.cxx)|[`kess_elastic_elsepa`](#kesselasticelsepa)
[`kess_inelastic_bethefano`](#kessinelasticbethefano)
[`kess_inelastic_penn`](#kessinelasticpenn)
[`kess_surface_interaction`](#kesssurfaceinteraction)
[`ks_command_group`](#kscommandgroup)
[`ks_command_member`](#kscommandmemberdata)
[`ks_component_delta`](#kscomponentdeltadata)
[`ks_component_group`](#kscomponentgroup)
[`ks_component_integral`](#kscomponentintegraldata)
[`ks_component_math`](#kscomponentmathdata)
[`ks_component_maximum`](#kscomponentmaximumdata)
[`ks_component_maximum_at`](#kscomponentmaximumatdata)
[`ks_component_member`](#kscomponentmemberdata)
[`ks_component_minimum`](#kscomponentminimumdata)
[`ks_component_minimum_at`](#kscomponentminimumatdata)
[`ks_root_electric_field`](#ksrootelectricfield)
[`ks_root_event_modifier`](#ksrooteventmodifier)
[`ks_root_generator`](#ksrootgenerator)
[`ks_root_magnetic_field`](#ksrootmagneticfield)
[`ks_root_run_modifier`](#ksrootrunmodifier)
[`ks_root_space_interaction`](#ksrootspaceinteraction)
[`ks_root_space_navigator`](#ksrootspacenavigator)
[`ks_root_step_modifier`](#ksrootstepmodifier)
[`ks_root_surface_interaction`](#ksrootsurfaceinteraction)
[`ks_root_surface_navigator`](#ksrootsurfacenavigator)
[`ks_root_terminator`](#ksrootterminator)
[`ks_root_track_modifier`](#ksroottrackmodifier)
[`ks_root_trajectory`](#ksroottrajectory)
[`ks_root_writer`](#ksrootwriter)
[`ks_simulation`](#kssimulation)
[`ksfield_electric_constant`](#kelectrostaticconstantfield)
[`ksfield_electric_induced_azi`](#kinducedazimuthalelectricfield)
[`ksfield_electric_potentialmap`](#kelectrostaticpotentialmap)
[`ksfield_electric_potentialmap_calculator`](#kelectrostaticpotentialmapcalculator)
[`ksfield_electric_quadrupole`](#kelectricquadrupolefield)
[`ksfield_electric_ramped`](#krampedelectricfield)
[`ksfield_electric_ramped_2fields`](#krampedelectric2field)
[`ksfield_electromagnet`](#kgstaticelectromagnetfield)
[`ksfield_electrostatic`](#kgelectrostaticboundaryfield)
[`ksfield_magnetic_constant`](#kmagnetostaticconstantfield)
[`ksfield_magnetic_dipole`](#kmagneticdipolefield)
[`ksfield_magnetic_fieldmap`](#kmagnetostaticfieldmap)
[`ksfield_magnetic_fieldmap_calculator`](#kmagnetostaticfieldmapcalculator)
[`ksfield_magnetic_ramped`](#krampedmagneticfield)
[`ksfield_magnetic_super_position`](#kmagneticsuperpositionfield)
[`ksgen_direction_spherical_composite`](#ksgendirectionsphericalcomposite)
[`ksgen_direction_spherical_magnetic_field`](#ksgendirectionsphericalmagneticfield)
[`ksgen_direction_surface_composite`](#ksgendirectionsurfacecomposite)
[`ksgen_energy_beta_decay`](#ksgenenergybetadecay)
[`ksgen_energy_beta_recoil`](#ksgenenergybetarecoil)
[`ksgen_energy_composite`](#ksgenenergycomposite)
[`ksgen_energy_krypton_event`](#ksgenenergykryptonevent)
[`ksgen_energy_lead_event`](#ksgenenergyleadevent)
[`ksgen_energy_radon_event`](#ksgenenergyradonevent)
[`ksgen_energy_rydberg`](#ksgenenergyrydberg)
[`ksgen_generator_composite`](#ksgengeneratorcomposite)
[`ksgen_generator_file`](#ksgengeneratortextfile)
[`ksgen_generator_simulation`](#ksgengeneratorsimulation)
[`ksgen_l_composite`](#ksgenlcomposite)
[`ksgen_l_statistical`](#ksgenlstatistical)
[`ksgen_l_uniform_max_n`](#ksgenluniformmaxn)
[`ksgen_momentum_rectangular_composite`](#ksgenmomentumrectangularcomposite)
[`ksgen_n_composite`](#ksgenncomposite)
[`ksgen_position_cylindrical_composite`](#ksgenpositioncylindricalcomposite)
[`ksgen_position_flux_tube`](#ksgenpositionfluxtube)
[`ksgen_position_frustrum_composite`](#ksgenpositionfrustrumcomposite)
[`ksgen_position_homogeneous_flux_tube`](#ksgenpositionhomogeneousfluxtube)
[`ksgen_position_mask`](#ksgenpositionmask)
[`ksgen_position_mesh_surface_random`](#ksgenpositionmeshsurfacerandom)
[`ksgen_position_rectangular_composite`](#ksgenpositionrectangularcomposite)
[`ksgen_position_space_random`](#ksgenpositionspacerandom)
[`ksgen_position_spherical_composite`](#ksgenpositionsphericalcomposite)
[`ksgen_position_surface_adjustment_step`](#ksgenpositionsurfaceadjustmentstep)
[`ksgen_position_surface_random`](#ksgenpositionsurfacerandom)
[`ksgen_spin_composite`](#ksgenspincomposite)
[`ksgen_spin_composite_relative`](#ksgenspinrelativecomposite)
[`ksgen_time_composite`](#ksgentimecomposite)
[`ksgen_value_angle_cosine`](#ksgenvalueanglecosine)
[`ksgen_value_angle_spherical`](#ksgenvalueanglespherical)
[`ksgen_value_boltzmann`](#ksgenvalueboltzmann)
[`ksgen_value_fermi`](#ksgenvaluefermi)
[`ksgen_value_fix`](#ksgenvaluefix)
[`ksgen_value_formula`](#ksgenvalueformula)
[`ksgen_value_gauss`](#ksgenvaluegauss)
[`ksgen_value_generalized_gauss`](#ksgenvaluegeneralizedgauss)
[`ksgen_value_histogram`](#ksgenvaluehistogram)
[`ksgen_value_list`](#ksgenvaluelist)
[`ksgen_value_pareto`](#ksgenvaluepareto)
[`ksgen_value_radius_cylindrical`](#ksgenvalueradiuscylindrical)
[`ksgen_value_radius_fraction`](#ksgenvalueradiusfraction)
[`ksgen_value_radius_spherical`](#ksgenvalueradiusspherical)
[`ksgen_value_set`](#ksgenvalueset)
[`ksgen_value_uniform`](#ksgenvalueuniform)
[`ksgen_value_z_frustrum`](#ksgenvaluezfrustrum)
[`ksgeo_side`](#ksgeoside)
[`ksgeo_space`](#ksgeospace)
[`ksgeo_surface`](#ksgeosurface)
[`ksint_calculator_constant`](#ksintcalculatorconstant)
[`ksint_calculator_ion`](#ksintcalculatorion)
[`ksint_decay`](#ksintdecay)
[`ksint_decay_calculator_death_const_rate`](#ksintdecaycalculatordeathconstrate)
[`ksint_decay_calculator_ferenc_bbr_transition`](#ksintdecaycalculatorferencbbrtransition)
[`ksint_decay_calculator_ferenc_ionisation`](#ksintdecaycalculatorferencionisation)
[`ksint_decay_calculator_ferenc_spontaneous`](#ksintdecaycalculatorferencspontaneous)
[`ksint_decay_calculator_glukhov_deexcitation`](#ksintdecaycalculatorglukhovdeexcitation)
[`ksint_decay_calculator_glukhov_excitation`](#ksintdecaycalculatorglukhovexcitation)
[`ksint_decay_calculator_glukhov_ionisation`](#ksintdecaycalculatorglukhovionisation)
[`ksint_decay_calculator_glukhov_spontaneous`](#ksintdecaycalculatorglukhovspontaneous)
[`ksint_density_constant`](#ksintdensityconstant)
[`ksint_scattering`](#ksintscattering)
[`ksint_spin_flip`](#ksintspinflip)
[`ksint_spin_flip_pulse`](#ksintspinflippulse)
[`ksint_spin_rotate_y_pulse`](#ksintspinrotateypulse)
[`ksint_surface_UCN`](#ksintsurfaceucn)
[`ksint_surface_diffuse`](#ksintsurfacediffuse)
[`ksint_surface_multiplication`](#ksintsurfacemultiplication)
[`ksint_surface_specular`](#ksintsurfacespecular)
[`ksint_surface_spin_flip`](#ksintsurfacespinflip)
[`ksmod_dynamic_enhancement`](#ksmoddynamicenhancement)
[`ksmod_event_report`](#ksmodeventreport)
[`ksmod_split_on_turn`](#ksmodsplitonturn)
[`ksnav_meshed_space`](#ksnavmeshedspace)
[`ksnav_space`](#ksnavspace)
[`ksnav_surface`](#ksnavsurface)
[`ksterm_death`](#kstermdeath)
[`ksterm_magnetron`](#kstermmagnetron)
[`ksterm_max_energy`](#kstermmaxenergy)
[`ksterm_max_length`](#kstermmaxlength)
[`ksterm_max_long_energy`](#kstermmaxlongenergy)
[`ksterm_max_r`](#kstermmaxr)
[`ksterm_max_step_time`](#kstermmaxsteptime)
[`ksterm_max_steps`](#kstermmaxsteps)
[`ksterm_max_time`](#kstermmaxtime)
[`ksterm_max_total_time`](#kstermmaxtotaltime)
[`ksterm_max_z`](#kstermmaxz)
[`ksterm_min_distance`](#kstermmindistance)
[`ksterm_min_energy`](#kstermminenergy)
[`ksterm_min_long_energy`](#kstermminlongenergy)
[`ksterm_min_r`](#kstermminr)
[`ksterm_min_z`](#kstermminz)
[`ksterm_output`](#kstermoutputdata)
[`ksterm_secondaries`](#kstermsecondaries)
[`ksterm_stepsize`](#kstermstepsize)
[`ksterm_trapped`](#kstermtrapped)
[`ksterm_zh_radius`](#kstermzhradius)
[`kstraj_control_B_change`](#kstrajcontrolbchange)
[`kstraj_control_cyclotron`](#kstrajcontrolcyclotron)
[`kstraj_control_energy`](#kstrajcontrolenergy)
[`kstraj_control_length`](#kstrajcontrollength)
[`kstraj_control_m_dot`](#kstrajcontrolmdot)
[`kstraj_control_magnetic_moment`](#kstrajcontrolmagneticmoment)
[`kstraj_control_momentum_numerical_error`](#kstrajcontrolmomentumnumericalerror)
[`kstraj_control_position_numerical_error`](#kstrajcontrolpositionnumericalerror)
[`kstraj_control_spin_precession`](#kstrajcontrolspinprecession)
[`kstraj_control_time`](#kstrajcontroltime)
[`kstraj_integrator_rk54`](#kstrajintegratorrk54)
[`kstraj_integrator_rk65`](#kstrajintegratorrk65)
[`kstraj_integrator_rk8`](#kstrajintegratorrk8)
[`kstraj_integrator_rk86`](#kstrajintegratorrk86)
[`kstraj_integrator_rk87`](#kstrajintegratorrk87)
[`kstraj_integrator_rkdp54`](#kstrajintegratorrkdp54)
[`kstraj_integrator_rkdp853`](#kstrajintegratorrkdp853)
[`kstraj_integrator_sym4`](#kstrajintegratorsym4)
[`kstraj_interpolator_crk`](#kstrajinterpolatorcontinuousrungekutta)
[`kstraj_interpolator_fast`](#kstrajinterpolatorfast)
[`kstraj_interpolator_hermite`](#kstrajinterpolatorhermite)
[`kstraj_term_constant_force_propagation`](#kstrajtermconstantforcepropagation)
[`kstraj_term_drift`](#kstrajtermdrift)
[`kstraj_term_gravity`](#kstrajtermgravity)
[`kstraj_term_gyration`](#kstrajtermgyration)
[`kstraj_term_propagation`](#kstrajtermpropagation)
[`kstraj_term_synchrotron`](#kstrajtermsynchrotron)
[`kstraj_trajectory_adiabatic`](#kstrajtrajectoryadiabatic)
[`kstraj_trajectory_adiabatic_spin`](#kstrajtrajectoryadiabaticspin)
[`kstraj_trajectory_electric`](#kstrajtrajectoryelectric)
[`kstraj_trajectory_exact`](#kstrajtrajectoryexact)
[`kstraj_trajectory_exact_spin`](#kstrajtrajectoryexactspin)
[`kstraj_trajectory_exact_trapped`](#kstrajtrajectoryexacttrapped)
[`kstraj_trajectory_linear`](#kstrajtrajectorylinear)
[`kstraj_trajectory_magnetic`](#kstrajtrajectorymagnetic)
[`kswrite_ascii`](#kswriteascii)
[`kswrite_root`](#kswriteroot)
[`kswrite_root_condition_output`](#kswriterootconditionoutputdata)
[`kswrite_root_condition_periodic`](#kswriterootconditionperiodicdata)
[`kswrite_root_condition_step`](#kswriterootconditionstepdata)
[`kswrite_root_condition_terminator`](#kswriterootconditionterminatordata)
[`kswrite_vtk`](#kswritevtk)
[`output`](#kscomponentmemberdata)
[`output_delta`](#kscomponentdeltadata)
[`output_group`](#kscomponentgroup)
[`output_integral`](#kscomponentintegraldata)
[`output_math`](#kscomponentmathdata)
[`output_maximum`](#kscomponentmaximumdata)
[`output_maximum_at`](#kscomponentmaximumatdata)
[`output_minimum`](#kscomponentminimumdata)
[`output_minimum_at`](#kscomponentminimumatdata)|*`KESSElasticElsepa`*
*`KESSInelasticBetheFano`*
*`KESSInelasticPenn`*
*`KESSSurfaceInteraction`*
*`KSCommandGroup`*
*`KSCommandMemberData`*
*`KSComponentDeltaData`*
*`KSComponentGroup`*
*`KSComponentIntegralData`*
*`KSComponentMathData`*
*`KSComponentMaximumData`*
*`KSComponentMaximumAtData`*
*`KSComponentMemberData`*
*`KSComponentMinimumData`*
*`KSComponentMinimumAtData`*
*`KSRootElectricField`*
*`KSRootEventModifier`*
*`KSRootGenerator`*
*`KSRootMagneticField`*
*`KSRootRunModifier`*
*`KSRootSpaceInteraction`*
*`KSRootSpaceNavigator`*
*`KSRootStepModifier`*
*`KSRootSurfaceInteraction`*
*`KSRootSurfaceNavigator`*
*`KSRootTerminator`*
*`KSRootTrackModifier`*
*`KSRootTrajectory`*
*`KSRootWriter`*
*`KSSimulation`*
*`KElectrostaticConstantField`*
*`KInducedAzimuthalElectricField`*
*`KElectrostaticPotentialmap`*
*`KElectrostaticPotentialmapCalculator`*
*`KElectricQuadrupoleField`*
*`KRampedElectricField`*
*`KRampedElectric2Field`*
*`KGStaticElectromagnetField`*
*`KGElectrostaticBoundaryField`*
*`KMagnetostaticConstantField`*
*`KMagneticDipoleField`*
*`KMagnetostaticFieldmap`*
*`KMagnetostaticFieldmapCalculator`*
*`KRampedMagneticField`*
*`KMagneticSuperpositionField`*
*`KSGenDirectionSphericalComposite`*
*`KSGenDirectionSphericalMagneticField`*
*`KSGenDirectionSurfaceComposite`*
*`KSGenEnergyBetaDecay`*
*`KSGenEnergyBetaRecoil`*
*`KSGenEnergyComposite`*
*`KSGenEnergyKryptonEvent`*
*`KSGenEnergyLeadEvent`*
*`KSGenEnergyRadonEvent`*
*`KSGenEnergyRydberg`*
*`KSGenGeneratorComposite`*
*`KSGenGeneratorTextFile`*
*`KSGenGeneratorSimulation`*
*`KSGenLComposite`*
*`KSGenLStatistical`*
*`KSGenLUniformMaxN`*
*`KSGenMomentumRectangularComposite`*
*`KSGenNComposite`*
*`KSGenPositionCylindricalComposite`*
*`KSGenPositionFluxTube`*
*`KSGenPositionFrustrumComposite`*
*`KSGenPositionHomogeneousFluxTube`*
*`KSGenPositionMask`*
*`KSGenPositionMeshSurfaceRandom`*
*`KSGenPositionRectangularComposite`*
*`KSGenPositionSpaceRandom`*
*`KSGenPositionSphericalComposite`*
*`KSGenPositionSurfaceAdjustmentStep`*
*`KSGenPositionSurfaceRandom`*
*`KSGenSpinComposite`*
*`KSGenSpinRelativeComposite`*
*`KSGenTimeComposite`*
*`KSGenValueAngleCosine`*
*`KSGenValueAngleSpherical`*
*`KSGenValueBoltzmann`*
*`KSGenValueFermi`*
*`KSGenValueFix`*
*`KSGenValueFormula`*
*`KSGenValueGauss`*
*`KSGenValueGeneralizedGauss`*
*`KSGenValueHistogram`*
*`KSGenValueList`*
*`KSGenValuePareto`*
*`KSGenValueRadiusCylindrical`*
*`KSGenValueRadiusFraction`*
*`KSGenValueRadiusSpherical`*
*`KSGenValueSet`*
*`KSGenValueUniform`*
*`KSGenValueZFrustrum`*
*`KSGeoSide`*
*`KSGeoSpace`*
*`KSGeoSurface`*
*`KSIntCalculatorConstant`*
*`KSIntCalculatorIon`*
*`KSIntDecay`*
*`KSIntDecayCalculatorDeathConstRate`*
*`KSIntDecayCalculatorFerencBBRTransition`*
*`KSIntDecayCalculatorFerencIonisation`*
*`KSIntDecayCalculatorFerencSpontaneous`*
*`KSIntDecayCalculatorGlukhovDeExcitation`*
*`KSIntDecayCalculatorGlukhovExcitation`*
*`KSIntDecayCalculatorGlukhovIonisation`*
*`KSIntDecayCalculatorGlukhovSpontaneous`*
*`KSIntDensityConstant`*
*`KSIntScattering`*
*`KSIntSpinFlip`*
*`KSIntSpinFlipPulse`*
*`KSIntSpinRotateYPulse`*
*`KSIntSurfaceUCN`*
*`KSIntSurfaceDiffuse`*
*`KSIntSurfaceMultiplication`*
*`KSIntSurfaceSpecular`*
*`KSIntSurfaceSpinFlip`*
*`KSModDynamicEnhancement`*
*`KSModEventReport`*
*`KSModSplitOnTurn`*
*`KSNavMeshedSpace`*
*`KSNavSpace`*
*`KSNavSurface`*
*`KSTermDeath`*
*`KSTermMagnetron`*
*`KSTermMaxEnergy`*
*`KSTermMaxLength`*
*`KSTermMaxLongEnergy`*
*`KSTermMaxR`*
*`KSTermMaxStepTime`*
*`KSTermMaxSteps`*
*`KSTermMaxTime`*
*`KSTermMaxTotalTime`*
*`KSTermMaxZ`*
*`KSTermMinDistance`*
*`KSTermMinEnergy`*
*`KSTermMinLongEnergy`*
*`KSTermMinR`*
*`KSTermMinZ`*
*`KSTermOutputData`*
*`KSTermSecondaries`*
*`KSTermStepsize`*
*`KSTermTrapped`*
*`KSTermZHRadius`*
*`KSTrajControlBChange`*
*`KSTrajControlCyclotron`*
*`KSTrajControlEnergy`*
*`KSTrajControlLength`*
*`KSTrajControlMDot`*
*`KSTrajControlMagneticMoment`*
*`KSTrajControlMomentumNumericalError`*
*`KSTrajControlPositionNumericalError`*
*`KSTrajControlSpinPrecession`*
*`KSTrajControlTime`*
*`KSTrajIntegratorRK54`*
*`KSTrajIntegratorRK65`*
*`KSTrajIntegratorRK8`*
*`KSTrajIntegratorRK86`*
*`KSTrajIntegratorRK87`*
*`KSTrajIntegratorRKDP54`*
*`KSTrajIntegratorRKDP853`*
*`KSTrajIntegratorSym4`*
*`KSTrajInterpolatorContinuousRungeKutta`*
*`KSTrajInterpolatorFast`*
*`KSTrajInterpolatorHermite`*
*`KSTrajTermConstantForcePropagation`*
*`KSTrajTermDrift`*
*`KSTrajTermGravity`*
*`KSTrajTermGyration`*
*`KSTrajTermPropagation`*
*`KSTrajTermSynchrotron`*
*`KSTrajTrajectoryAdiabatic`*
*`KSTrajTrajectoryAdiabaticSpin`*
*`KSTrajTrajectoryElectric`*
*`KSTrajTrajectoryExact`*
*`KSTrajTrajectoryExactSpin`*
*`KSTrajTrajectoryExactTrapped`*
*`KSTrajTrajectoryLinear`*
*`KSTrajTrajectoryMagnetic`*
*`KSWriteASCII`*
*`KSWriteROOT`*
*`KSWriteROOTConditionOutputData`*
*`KSWriteROOTConditionPeriodicData`*
*`KSWriteROOTConditionStepData`*
*`KSWriteROOTConditionTerminatorData`*
*`KSWriteVTK`*
*`KSComponentMemberData`*
*`KSComponentDeltaData`*
*`KSComponentGroup`*
*`KSComponentIntegralData`*
*`KSComponentMathData`*
*`KSComponentMaximumData`*
*`KSComponentMaximumAtData`*
*`KSComponentMinimumData`*
*`KSComponentMinimumAtData`*|`random_seed`|*`unsigned int`*| +|`kassiopeia`|[*KSRootBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Simulation/Source/KSRootBuilder.cxx)|[`kess_elastic_elsepa`](#kesselasticelsepa)
[`kess_inelastic_bethefano`](#kessinelasticbethefano)
[`kess_inelastic_penn`](#kessinelasticpenn)
[`kess_surface_interaction`](#kesssurfaceinteraction)
[`ks_command_group`](#kscommandgroup)
[`ks_command_member`](#kscommandmemberdata)
[`ks_component_delta`](#kscomponentdeltadata)
[`ks_component_group`](#kscomponentgroup)
[`ks_component_integral`](#kscomponentintegraldata)
[`ks_component_math`](#kscomponentmathdata)
[`ks_component_maximum`](#kscomponentmaximumdata)
[`ks_component_maximum_at`](#kscomponentmaximumatdata)
[`ks_component_member`](#kscomponentmemberdata)
[`ks_component_minimum`](#kscomponentminimumdata)
[`ks_component_minimum_at`](#kscomponentminimumatdata)
[`ks_root_electric_field`](#ksrootelectricfield)
[`ks_root_event_modifier`](#ksrooteventmodifier)
[`ks_root_generator`](#ksrootgenerator)
[`ks_root_magnetic_field`](#ksrootmagneticfield)
[`ks_root_run_modifier`](#ksrootrunmodifier)
[`ks_root_space_interaction`](#ksrootspaceinteraction)
[`ks_root_space_navigator`](#ksrootspacenavigator)
[`ks_root_step_modifier`](#ksrootstepmodifier)
[`ks_root_surface_interaction`](#ksrootsurfaceinteraction)
[`ks_root_surface_navigator`](#ksrootsurfacenavigator)
[`ks_root_terminator`](#ksrootterminator)
[`ks_root_track_modifier`](#ksroottrackmodifier)
[`ks_root_trajectory`](#ksroottrajectory)
[`ks_root_writer`](#ksrootwriter)
[`ks_simulation`](#kssimulation)
[`ksfield_electric_constant`](#kelectrostaticconstantfield)
[`ksfield_electric_induced_azi`](#kinducedazimuthalelectricfield)
[`ksfield_electric_potentialmap`](#kelectrostaticpotentialmap)
[`ksfield_electric_potentialmap_calculator`](#kelectrostaticpotentialmapcalculator)
[`ksfield_electric_quadrupole`](#kelectricquadrupolefield)
[`ksfield_electric_ramped`](#krampedelectricfield)
[`ksfield_electric_ramped_2fields`](#krampedelectric2field)
[`ksfield_electromagnet`](#kgstaticelectromagnetfield)
[`ksfield_electrostatic`](#kgelectrostaticboundaryfield)
[`ksfield_magnetic_constant`](#kmagnetostaticconstantfield)
[`ksfield_magnetic_dipole`](#kmagneticdipolefield)
[`ksfield_magnetic_fieldmap`](#kmagnetostaticfieldmap)
[`ksfield_magnetic_fieldmap_calculator`](#kmagnetostaticfieldmapcalculator)
[`ksfield_magnetic_ramped`](#krampedmagneticfield)
[`ksfield_magnetic_super_position`](#kmagneticsuperpositionfield)
[`ksgen_direction_spherical_composite`](#ksgendirectionsphericalcomposite)
[`ksgen_direction_spherical_magnetic_field`](#ksgendirectionsphericalmagneticfield)
[`ksgen_direction_surface_composite`](#ksgendirectionsurfacecomposite)
[`ksgen_energy_beta_decay`](#ksgenenergybetadecay)
[`ksgen_energy_beta_recoil`](#ksgenenergybetarecoil)
[`ksgen_energy_composite`](#ksgenenergycomposite)
[`ksgen_energy_krypton_event`](#ksgenenergykryptonevent)
[`ksgen_energy_lead_event`](#ksgenenergyleadevent)
[`ksgen_energy_radon_event`](#ksgenenergyradonevent)
[`ksgen_energy_rydberg`](#ksgenenergyrydberg)
[`ksgen_generator_composite`](#ksgengeneratorcomposite)
[`ksgen_generator_file`](#ksgengeneratortextfile)
[`ksgen_generator_simulation`](#ksgengeneratorsimulation)
[`ksgen_l_composite`](#ksgenlcomposite)
[`ksgen_l_statistical`](#ksgenlstatistical)
[`ksgen_l_uniform_max_n`](#ksgenluniformmaxn)
[`ksgen_momentum_rectangular_composite`](#ksgenmomentumrectangularcomposite)
[`ksgen_n_composite`](#ksgenncomposite)
[`ksgen_position_cylindrical_composite`](#ksgenpositioncylindricalcomposite)
[`ksgen_position_flux_tube`](#ksgenpositionfluxtube)
[`ksgen_position_frustrum_composite`](#ksgenpositionfrustrumcomposite)
[`ksgen_position_homogeneous_flux_tube`](#ksgenpositionhomogeneousfluxtube)
[`ksgen_position_mask`](#ksgenpositionmask)
[`ksgen_position_mesh_surface_random`](#ksgenpositionmeshsurfacerandom)
[`ksgen_position_rectangular_composite`](#ksgenpositionrectangularcomposite)
[`ksgen_position_space_random`](#ksgenpositionspacerandom)
[`ksgen_position_spherical_composite`](#ksgenpositionsphericalcomposite)
[`ksgen_position_surface_adjustment_step`](#ksgenpositionsurfaceadjustmentstep)
[`ksgen_position_surface_random`](#ksgenpositionsurfacerandom)
[`ksgen_spin_composite`](#ksgenspincomposite)
[`ksgen_spin_composite_relative`](#ksgenspinrelativecomposite)
[`ksgen_time_composite`](#ksgentimecomposite)
[`ksgen_value_angle_cosine`](#ksgenvalueanglecosine)
[`ksgen_value_angle_spherical`](#ksgenvalueanglespherical)
[`ksgen_value_boltzmann`](#ksgenvalueboltzmann)
[`ksgen_value_fermi`](#ksgenvaluefermi)
[`ksgen_value_fix`](#ksgenvaluefix)
[`ksgen_value_formula`](#ksgenvalueformula)
[`ksgen_value_gauss`](#ksgenvaluegauss)
[`ksgen_value_generalized_gauss`](#ksgenvaluegeneralizedgauss)
[`ksgen_value_histogram`](#ksgenvaluehistogram)
[`ksgen_value_list`](#ksgenvaluelist)
[`ksgen_value_pareto`](#ksgenvaluepareto)
[`ksgen_value_radius_cylindrical`](#ksgenvalueradiuscylindrical)
[`ksgen_value_radius_fraction`](#ksgenvalueradiusfraction)
[`ksgen_value_radius_spherical`](#ksgenvalueradiusspherical)
[`ksgen_value_set`](#ksgenvalueset)
[`ksgen_value_uniform`](#ksgenvalueuniform)
[`ksgen_value_z_frustrum`](#ksgenvaluezfrustrum)
[`ksgeo_side`](#ksgeoside)
[`ksgeo_space`](#ksgeospace)
[`ksgeo_surface`](#ksgeosurface)
[`ksint_calculator_constant`](#ksintcalculatorconstant)
[`ksint_calculator_ion`](#ksintcalculatorion)
[`ksint_calculator_mott`](#ksintcalculatormott)
[`ksint_decay`](#ksintdecay)
[`ksint_decay_calculator_death_const_rate`](#ksintdecaycalculatordeathconstrate)
[`ksint_decay_calculator_ferenc_bbr_transition`](#ksintdecaycalculatorferencbbrtransition)
[`ksint_decay_calculator_ferenc_ionisation`](#ksintdecaycalculatorferencionisation)
[`ksint_decay_calculator_ferenc_spontaneous`](#ksintdecaycalculatorferencspontaneous)
[`ksint_decay_calculator_glukhov_deexcitation`](#ksintdecaycalculatorglukhovdeexcitation)
[`ksint_decay_calculator_glukhov_excitation`](#ksintdecaycalculatorglukhovexcitation)
[`ksint_decay_calculator_glukhov_ionisation`](#ksintdecaycalculatorglukhovionisation)
[`ksint_decay_calculator_glukhov_spontaneous`](#ksintdecaycalculatorglukhovspontaneous)
[`ksint_density_constant`](#ksintdensityconstant)
[`ksint_scattering`](#ksintscattering)
[`ksint_spin_flip`](#ksintspinflip)
[`ksint_spin_flip_pulse`](#ksintspinflippulse)
[`ksint_spin_rotate_y_pulse`](#ksintspinrotateypulse)
[`ksint_surface_UCN`](#ksintsurfaceucn)
[`ksint_surface_diffuse`](#ksintsurfacediffuse)
[`ksint_surface_multiplication`](#ksintsurfacemultiplication)
[`ksint_surface_scattering`](#ksintsurfacescattering)
[`ksint_surface_specular`](#ksintsurfacespecular)
[`ksint_surface_spin_flip`](#ksintsurfacespinflip)
[`ksmod_dynamic_enhancement`](#ksmoddynamicenhancement)
[`ksmod_event_report`](#ksmodeventreport)
[`ksmod_split_on_turn`](#ksmodsplitonturn)
[`ksnav_meshed_space`](#ksnavmeshedspace)
[`ksnav_space`](#ksnavspace)
[`ksnav_surface`](#ksnavsurface)
[`ksterm_death`](#kstermdeath)
[`ksterm_magnetron`](#kstermmagnetron)
[`ksterm_max_energy`](#kstermmaxenergy)
[`ksterm_max_length`](#kstermmaxlength)
[`ksterm_max_long_energy`](#kstermmaxlongenergy)
[`ksterm_max_r`](#kstermmaxr)
[`ksterm_max_step_time`](#kstermmaxsteptime)
[`ksterm_max_steps`](#kstermmaxsteps)
[`ksterm_max_time`](#kstermmaxtime)
[`ksterm_max_total_time`](#kstermmaxtotaltime)
[`ksterm_max_z`](#kstermmaxz)
[`ksterm_min_distance`](#kstermmindistance)
[`ksterm_min_energy`](#kstermminenergy)
[`ksterm_min_long_energy`](#kstermminlongenergy)
[`ksterm_min_r`](#kstermminr)
[`ksterm_min_z`](#kstermminz)
[`ksterm_output`](#kstermoutputdata)
[`ksterm_secondaries`](#kstermsecondaries)
[`ksterm_stepsize`](#kstermstepsize)
[`ksterm_trapped`](#kstermtrapped)
[`ksterm_zh_radius`](#kstermzhradius)
[`kstraj_control_B_change`](#kstrajcontrolbchange)
[`kstraj_control_cyclotron`](#kstrajcontrolcyclotron)
[`kstraj_control_energy`](#kstrajcontrolenergy)
[`kstraj_control_length`](#kstrajcontrollength)
[`kstraj_control_m_dot`](#kstrajcontrolmdot)
[`kstraj_control_magnetic_moment`](#kstrajcontrolmagneticmoment)
[`kstraj_control_momentum_numerical_error`](#kstrajcontrolmomentumnumericalerror)
[`kstraj_control_position_numerical_error`](#kstrajcontrolpositionnumericalerror)
[`kstraj_control_spin_precession`](#kstrajcontrolspinprecession)
[`kstraj_control_time`](#kstrajcontroltime)
[`kstraj_integrator_rk54`](#kstrajintegratorrk54)
[`kstraj_integrator_rk65`](#kstrajintegratorrk65)
[`kstraj_integrator_rk8`](#kstrajintegratorrk8)
[`kstraj_integrator_rk86`](#kstrajintegratorrk86)
[`kstraj_integrator_rk87`](#kstrajintegratorrk87)
[`kstraj_integrator_rkdp54`](#kstrajintegratorrkdp54)
[`kstraj_integrator_rkdp853`](#kstrajintegratorrkdp853)
[`kstraj_integrator_sym4`](#kstrajintegratorsym4)
[`kstraj_interpolator_crk`](#kstrajinterpolatorcontinuousrungekutta)
[`kstraj_interpolator_fast`](#kstrajinterpolatorfast)
[`kstraj_interpolator_hermite`](#kstrajinterpolatorhermite)
[`kstraj_term_constant_force_propagation`](#kstrajtermconstantforcepropagation)
[`kstraj_term_drift`](#kstrajtermdrift)
[`kstraj_term_gravity`](#kstrajtermgravity)
[`kstraj_term_gyration`](#kstrajtermgyration)
[`kstraj_term_propagation`](#kstrajtermpropagation)
[`kstraj_term_synchrotron`](#kstrajtermsynchrotron)
[`kstraj_trajectory_adiabatic`](#kstrajtrajectoryadiabatic)
[`kstraj_trajectory_adiabatic_spin`](#kstrajtrajectoryadiabaticspin)
[`kstraj_trajectory_electric`](#kstrajtrajectoryelectric)
[`kstraj_trajectory_exact`](#kstrajtrajectoryexact)
[`kstraj_trajectory_exact_spin`](#kstrajtrajectoryexactspin)
[`kstraj_trajectory_exact_trapped`](#kstrajtrajectoryexacttrapped)
[`kstraj_trajectory_linear`](#kstrajtrajectorylinear)
[`kstraj_trajectory_magnetic`](#kstrajtrajectorymagnetic)
[`kswrite_ascii`](#kswriteascii)
[`kswrite_root`](#kswriteroot)
[`kswrite_root_condition_output`](#kswriterootconditionoutputdata)
[`kswrite_root_condition_periodic`](#kswriterootconditionperiodicdata)
[`kswrite_root_condition_step`](#kswriterootconditionstepdata)
[`kswrite_root_condition_terminator`](#kswriterootconditionterminatordata)
[`kswrite_vtk`](#kswritevtk)
[`output`](#kscomponentmemberdata)
[`output_delta`](#kscomponentdeltadata)
[`output_group`](#kscomponentgroup)
[`output_integral`](#kscomponentintegraldata)
[`output_math`](#kscomponentmathdata)
[`output_maximum`](#kscomponentmaximumdata)
[`output_maximum_at`](#kscomponentmaximumatdata)
[`output_minimum`](#kscomponentminimumdata)
[`output_minimum_at`](#kscomponentminimumatdata)|*`KESSElasticElsepa`*
*`KESSInelasticBetheFano`*
*`KESSInelasticPenn`*
*`KESSSurfaceInteraction`*
*`KSCommandGroup`*
*`KSCommandMemberData`*
*`KSComponentDeltaData`*
*`KSComponentGroup`*
*`KSComponentIntegralData`*
*`KSComponentMathData`*
*`KSComponentMaximumData`*
*`KSComponentMaximumAtData`*
*`KSComponentMemberData`*
*`KSComponentMinimumData`*
*`KSComponentMinimumAtData`*
*`KSRootElectricField`*
*`KSRootEventModifier`*
*`KSRootGenerator`*
*`KSRootMagneticField`*
*`KSRootRunModifier`*
*`KSRootSpaceInteraction`*
*`KSRootSpaceNavigator`*
*`KSRootStepModifier`*
*`KSRootSurfaceInteraction`*
*`KSRootSurfaceNavigator`*
*`KSRootTerminator`*
*`KSRootTrackModifier`*
*`KSRootTrajectory`*
*`KSRootWriter`*
*`KSSimulation`*
*`KElectrostaticConstantField`*
*`KInducedAzimuthalElectricField`*
*`KElectrostaticPotentialmap`*
*`KElectrostaticPotentialmapCalculator`*
*`KElectricQuadrupoleField`*
*`KRampedElectricField`*
*`KRampedElectric2Field`*
*`KGStaticElectromagnetField`*
*`KGElectrostaticBoundaryField`*
*`KMagnetostaticConstantField`*
*`KMagneticDipoleField`*
*`KMagnetostaticFieldmap`*
*`KMagnetostaticFieldmapCalculator`*
*`KRampedMagneticField`*
*`KMagneticSuperpositionField`*
*`KSGenDirectionSphericalComposite`*
*`KSGenDirectionSphericalMagneticField`*
*`KSGenDirectionSurfaceComposite`*
*`KSGenEnergyBetaDecay`*
*`KSGenEnergyBetaRecoil`*
*`KSGenEnergyComposite`*
*`KSGenEnergyKryptonEvent`*
*`KSGenEnergyLeadEvent`*
*`KSGenEnergyRadonEvent`*
*`KSGenEnergyRydberg`*
*`KSGenGeneratorComposite`*
*`KSGenGeneratorTextFile`*
*`KSGenGeneratorSimulation`*
*`KSGenLComposite`*
*`KSGenLStatistical`*
*`KSGenLUniformMaxN`*
*`KSGenMomentumRectangularComposite`*
*`KSGenNComposite`*
*`KSGenPositionCylindricalComposite`*
*`KSGenPositionFluxTube`*
*`KSGenPositionFrustrumComposite`*
*`KSGenPositionHomogeneousFluxTube`*
*`KSGenPositionMask`*
*`KSGenPositionMeshSurfaceRandom`*
*`KSGenPositionRectangularComposite`*
*`KSGenPositionSpaceRandom`*
*`KSGenPositionSphericalComposite`*
*`KSGenPositionSurfaceAdjustmentStep`*
*`KSGenPositionSurfaceRandom`*
*`KSGenSpinComposite`*
*`KSGenSpinRelativeComposite`*
*`KSGenTimeComposite`*
*`KSGenValueAngleCosine`*
*`KSGenValueAngleSpherical`*
*`KSGenValueBoltzmann`*
*`KSGenValueFermi`*
*`KSGenValueFix`*
*`KSGenValueFormula`*
*`KSGenValueGauss`*
*`KSGenValueGeneralizedGauss`*
*`KSGenValueHistogram`*
*`KSGenValueList`*
*`KSGenValuePareto`*
*`KSGenValueRadiusCylindrical`*
*`KSGenValueRadiusFraction`*
*`KSGenValueRadiusSpherical`*
*`KSGenValueSet`*
*`KSGenValueUniform`*
*`KSGenValueZFrustrum`*
*`KSGeoSide`*
*`KSGeoSpace`*
*`KSGeoSurface`*
*`KSIntCalculatorConstant`*
*`KSIntCalculatorIon`*
*`KSIntCalculatorMott`*
*`KSIntDecay`*
*`KSIntDecayCalculatorDeathConstRate`*
*`KSIntDecayCalculatorFerencBBRTransition`*
*`KSIntDecayCalculatorFerencIonisation`*
*`KSIntDecayCalculatorFerencSpontaneous`*
*`KSIntDecayCalculatorGlukhovDeExcitation`*
*`KSIntDecayCalculatorGlukhovExcitation`*
*`KSIntDecayCalculatorGlukhovIonisation`*
*`KSIntDecayCalculatorGlukhovSpontaneous`*
*`KSIntDensityConstant`*
*`KSIntScattering`*
*`KSIntSpinFlip`*
*`KSIntSpinFlipPulse`*
*`KSIntSpinRotateYPulse`*
*`KSIntSurfaceUCN`*
*`KSIntSurfaceDiffuse`*
*`KSIntSurfaceMultiplication`*
*`KSIntSurfaceScattering`*
*`KSIntSurfaceSpecular`*
*`KSIntSurfaceSpinFlip`*
*`KSModDynamicEnhancement`*
*`KSModEventReport`*
*`KSModSplitOnTurn`*
*`KSNavMeshedSpace`*
*`KSNavSpace`*
*`KSNavSurface`*
*`KSTermDeath`*
*`KSTermMagnetron`*
*`KSTermMaxEnergy`*
*`KSTermMaxLength`*
*`KSTermMaxLongEnergy`*
*`KSTermMaxR`*
*`KSTermMaxStepTime`*
*`KSTermMaxSteps`*
*`KSTermMaxTime`*
*`KSTermMaxTotalTime`*
*`KSTermMaxZ`*
*`KSTermMinDistance`*
*`KSTermMinEnergy`*
*`KSTermMinLongEnergy`*
*`KSTermMinR`*
*`KSTermMinZ`*
*`KSTermOutputData`*
*`KSTermSecondaries`*
*`KSTermStepsize`*
*`KSTermTrapped`*
*`KSTermZHRadius`*
*`KSTrajControlBChange`*
*`KSTrajControlCyclotron`*
*`KSTrajControlEnergy`*
*`KSTrajControlLength`*
*`KSTrajControlMDot`*
*`KSTrajControlMagneticMoment`*
*`KSTrajControlMomentumNumericalError`*
*`KSTrajControlPositionNumericalError`*
*`KSTrajControlSpinPrecession`*
*`KSTrajControlTime`*
*`KSTrajIntegratorRK54`*
*`KSTrajIntegratorRK65`*
*`KSTrajIntegratorRK8`*
*`KSTrajIntegratorRK86`*
*`KSTrajIntegratorRK87`*
*`KSTrajIntegratorRKDP54`*
*`KSTrajIntegratorRKDP853`*
*`KSTrajIntegratorSym4`*
*`KSTrajInterpolatorContinuousRungeKutta`*
*`KSTrajInterpolatorFast`*
*`KSTrajInterpolatorHermite`*
*`KSTrajTermConstantForcePropagation`*
*`KSTrajTermDrift`*
*`KSTrajTermGravity`*
*`KSTrajTermGyration`*
*`KSTrajTermPropagation`*
*`KSTrajTermSynchrotron`*
*`KSTrajTrajectoryAdiabatic`*
*`KSTrajTrajectoryAdiabaticSpin`*
*`KSTrajTrajectoryElectric`*
*`KSTrajTrajectoryExact`*
*`KSTrajTrajectoryExactSpin`*
*`KSTrajTrajectoryExactTrapped`*
*`KSTrajTrajectoryLinear`*
*`KSTrajTrajectoryMagnetic`*
*`KSWriteASCII`*
*`KSWriteROOT`*
*`KSWriteROOTConditionOutputData`*
*`KSWriteROOTConditionPeriodicData`*
*`KSWriteROOTConditionStepData`*
*`KSWriteROOTConditionTerminatorData`*
*`KSWriteVTK`*
*`KSComponentMemberData`*
*`KSComponentDeltaData`*
*`KSComponentGroup`*
*`KSComponentIntegralData`*
*`KSComponentMathData`*
*`KSComponentMaximumData`*
*`KSComponentMaximumAtData`*
*`KSComponentMinimumData`*
*`KSComponentMinimumAtData`*|`random_seed`|*`unsigned int`*| ### KESSElasticElsepa Example: @@ -2177,12 +2177,12 @@ Example: ### KSCommandMemberData Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2192,12 +2192,12 @@ Example: ### KSComponentDeltaData Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2232,12 +2232,12 @@ Example: ### KSComponentMathData Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2247,12 +2247,12 @@ Example: ### KSComponentMaximumData Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2262,12 +2262,12 @@ Example: ### KSComponentMaximumAtData Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2292,12 +2292,12 @@ Example: ### KSComponentMinimumData Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2533,12 +2533,12 @@ Example: ### KElectrostaticConstantField Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2548,11 +2548,11 @@ Example: ### KInducedAzimuthalElectricField Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2577,7 +2577,7 @@ Example: ### KElectrostaticPotentialmapCalculator Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2599,12 +2599,12 @@ Example: #### KElectricQuadrupoleField Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2614,14 +2614,14 @@ Example: #### KGElectrostaticBoundaryField Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2727,11 +2727,11 @@ Example: ##### KGaussSeidelChargeDensitySolver Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2741,10 +2741,10 @@ Example: ##### KGaussianEliminationChargeDensitySolver Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2768,7 +2768,7 @@ Example: ##### KKrylovChargeDensitySolverOld Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2790,12 +2790,12 @@ Example: ###### KFMElectrostaticParameters Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2805,7 +2805,7 @@ Example: ##### KKrylovChargeDensitySolver Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2849,12 +2849,12 @@ Example: ##### KRobinHoodChargeDensitySolver Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2904,12 +2904,12 @@ Example: ### KRampedElectricField Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2919,12 +2919,12 @@ Example: ### KRampedElectric2Field Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2934,14 +2934,14 @@ Example: ### KGStaticElectromagnetField Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -2991,12 +2991,12 @@ Example: ### KMagnetostaticConstantField Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3006,12 +3006,12 @@ Example: ### KMagneticDipoleField Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3073,12 +3073,12 @@ Example: ### KRampedMagneticField Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3088,7 +3088,7 @@ Example: ### KMagneticSuperpositionField Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3123,7 +3123,7 @@ Example: ### KSGenDirectionSphericalComposite Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3145,12 +3145,12 @@ Example: #### KSGenValueFermi Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3160,11 +3160,11 @@ Example: #### KSGenValueFix Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3174,12 +3174,12 @@ Example: #### KSGenValueFormula Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3189,12 +3189,12 @@ Example: #### KSGenValueGauss Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3204,12 +3204,12 @@ Example: #### KSGenValueGeneralizedGauss Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3219,12 +3219,12 @@ Example: #### KSGenValueHistogram Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3234,12 +3234,12 @@ Example: #### KSGenValueList Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3249,12 +3249,12 @@ Example: #### KSGenValueSet Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3264,12 +3264,12 @@ Example: #### KSGenValueUniform Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3282,24 +3282,24 @@ Example: ``` |element name|source files|child elements|child types|attributes|attribute types| |-----|-----|-----|-----|-----|-----| -|`theta_cosine`|[*KSGenDirectionSphericalCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenDirectionSphericalCompositeBuilder.cxx)
[*KSGenDirectionSphericalMagneticFieldBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenDirectionSphericalMagneticFieldBuilder.cxx)
[*KSGenDirectionSurfaceCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenDirectionSurfaceCompositeBuilder.cxx)
[*KSGenSpinCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenSpinCompositeBuilder.cxx)
[*KSGenSpinRelativeCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenSpinRelativeCompositeBuilder.cxx)
[*KSGenValueAngleCosineBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenValueAngleCosineBuilder.cxx)|— |— |`angle_max`
`angle_min`
`mode`
`name`|*`double`*
*`double`*
*`string`*
*`string`*| +|`theta_cosine`|[*KSGenDirectionSphericalCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenDirectionSphericalCompositeBuilder.cxx)
[*KSGenDirectionSphericalMagneticFieldBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenDirectionSphericalMagneticFieldBuilder.cxx)
[*KSGenDirectionSurfaceCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenDirectionSurfaceCompositeBuilder.cxx)
[*KSGenSpinCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenSpinCompositeBuilder.cxx)
[*KSGenSpinRelativeCompositeBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenSpinRelativeCompositeBuilder.cxx)
[*KSGenValueAngleCosineBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Generators/Source/KSGenValueAngleCosineBuilder.cxx)|— |— |`angle_max`
`angle_min`
`direction`
`mode`
`name`|*`double`*
*`double`*
*`string`*
*`string`*
*`string`*| #### KSGenValueAngleSpherical Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3382,7 +3382,7 @@ Example: ### KSGenEnergyComposite Example: ``` - @@ -3393,7 +3393,7 @@ Example: > - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3418,12 +3418,12 @@ Example: ### KSGenEnergyKryptonEvent Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3433,12 +3433,12 @@ Example: ### KSGenEnergyLeadEvent Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3448,12 +3448,12 @@ Example: ### KSGenEnergyRadonEvent Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3478,7 +3478,7 @@ Example: ### KSGenGeneratorComposite Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3520,10 +3520,10 @@ Example: #### KSGenLStatistical Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3533,10 +3533,10 @@ Example: #### KSGenLUniformMaxN Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3546,7 +3546,7 @@ Example: #### KSGenMomentumRectangularComposite Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3567,7 +3567,7 @@ Example: #### KSGenNComposite Example: ``` - @@ -3577,7 +3577,7 @@ Example: > - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3587,12 +3587,12 @@ Example: ##### KSGenValuePareto Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3602,7 +3602,7 @@ Example: #### KSGenPositionCylindricalComposite Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3623,12 +3623,12 @@ Example: ##### KSGenValueRadiusCylindrical Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3638,10 +3638,10 @@ Example: ##### KSGenValueRadiusFraction Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3672,7 +3672,7 @@ Example: #### KSGenPositionFrustrumComposite Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3693,12 +3693,12 @@ Example: ##### KSGenValueZFrustrum Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3708,12 +3708,12 @@ Example: #### KSGenPositionHomogeneousFluxTube Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3745,11 +3745,11 @@ Example: ##### KSGenPositionMeshSurfaceRandom Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3759,7 +3759,7 @@ Example: ##### KSGenPositionRectangularComposite Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3815,12 +3815,12 @@ Example: ###### KSGenValueRadiusSpherical Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3854,11 +3854,11 @@ Example: #### KSGenPositionSurfaceRandom Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -3889,7 +3889,7 @@ Example: #### KSGenSpinRelativeComposite Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -4214,14 +4214,14 @@ Example: #### KSGeoSurface Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -4331,11 +4331,11 @@ Example: ### KSIntCalculatorConstant Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -4345,17 +4345,32 @@ Example: ### KSIntCalculatorIon Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| |-----|-----|-----|-----|-----|-----| |`ksint_calculator_ion`|[*KSIntCalculatorIonBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntCalculatorIonBuilder.cxx)
[*KSIntScatteringBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntScatteringBuilder.cxx)|— |— |`gas`
`name`|*`string`*
*`string`*| +### KSIntCalculatorMott +Example: +``` + + +``` + +|element name|source files|child elements|child types|attributes|attribute types| +|-----|-----|-----|-----|-----|-----| +|`ksint_calculator_mott`|[*KSIntCalculatorMottBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntCalculatorMottBuilder.cxx)
[*KSIntScatteringBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntScatteringBuilder.cxx)|— |— |`name`
`nucleus`
`theta_max`
`theta_min`|*`string`*
*`string`*
*`double`*
*`double`*| + ### KSIntDecay Example: ``` @@ -4388,12 +4403,12 @@ Example: #### KSIntDecayCalculatorDeathConstRate Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -4403,7 +4418,7 @@ Example: #### KSIntDecayCalculatorFerencBBRTransition Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -4447,7 +4462,7 @@ Example: #### KSIntDecayCalculatorFerencSpontaneous Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -4491,7 +4506,7 @@ Example: #### KSIntDecayCalculatorGlukhovExcitation Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -4589,7 +4604,7 @@ Example: |element name|source files|child elements|child types|attributes|attribute types| |-----|-----|-----|-----|-----|-----| -|`ksint_scattering`|[*KSIntScatteringBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntScatteringBuilder.cxx)|[`calculator_argon`](#ksintcalculatorargonset)
[`calculator_constant`](#ksintcalculatorconstant)
[`calculator_hydrogen`](#ksintcalculatorhydrogenset)
[`calculator_ion`](#ksintcalculatorion)
[`calculator_kess`](#ksintcalculatorkessset)
[`density_constant`](#ksintdensityconstant)|*`KSIntCalculatorArgonSet`*
*`KSIntCalculatorConstant`*
*`KSIntCalculatorHydrogenSet`*
*`KSIntCalculatorIon`*
*`KSIntCalculatorKESSSet`*
*`KSIntDensityConstant`*|`calculator`
`calculators`
`density`
`enhancement`
`name`
`split`|*`string`*
*`string`*
*`string`*
*`double`*
*`string`*
*`bool`*| +|`ksint_scattering`|[*KSIntScatteringBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntScatteringBuilder.cxx)|[`calculator_argon`](#ksintcalculatorargonset)
[`calculator_constant`](#ksintcalculatorconstant)
[`calculator_hydrogen`](#ksintcalculatorhydrogenset)
[`calculator_ion`](#ksintcalculatorion)
[`calculator_kess`](#ksintcalculatorkessset)
[`calculator_mott`](#ksintcalculatormott)
[`density_constant`](#ksintdensityconstant)|*`KSIntCalculatorArgonSet`*
*`KSIntCalculatorConstant`*
*`KSIntCalculatorHydrogenSet`*
*`KSIntCalculatorIon`*
*`KSIntCalculatorKESSSet`*
*`KSIntCalculatorMott`*
*`KSIntDensityConstant`*|`calculator`
`calculators`
`density`
`enhancement`
`name`
`split`|*`string`*
*`string`*
*`string`*
*`double`*
*`string`*
*`bool`*| #### KSIntCalculatorArgonSet Example: @@ -4723,6 +4738,21 @@ Example: |-----|-----|-----|-----|-----|-----| |`ksint_surface_multiplication`|[*KSIntSurfaceMultiplicationBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntSurfaceMultiplicationBuilder.cxx)|— |— |`energy_loss_fraction`
`name`
`required_energy_per_particle_ev`
`side`|*`double`*
*`string`*
*`double`*
*`string`*| +### KSIntSurfaceScattering +Example: +``` + + +``` + +|element name|source files|child elements|child types|attributes|attribute types| +|-----|-----|-----|-----|-----|-----| +|`ksint_surface_scattering`|[*KSIntSurfaceScatteringBuilder.cxx*](https://github.com/KATRIN-Experiment/Kassiopeia/tree/main/Kassiopeia/Bindings/Interactions/Source/KSIntSurfaceScatteringBuilder.cxx)|— |— |`name`
`scat_loss_fraction`
`scat_probability`
`sec_electron_mean_energy`
`sec_electron_probability`
`side`|*`string`*
*`double`*
*`double`*
*`double`*
*`double`*
*`string`*| + ### KSIntSurfaceSpecular Example: ``` @@ -5139,11 +5169,11 @@ Example: ### KSTrajControlBChange Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -5167,12 +5197,12 @@ Example: ### KSTrajControlEnergy Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -5196,11 +5226,11 @@ Example: ### KSTrajControlMDot Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -5240,12 +5270,12 @@ Example: ### KSTrajControlPositionNumericalError Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -5255,11 +5285,11 @@ Example: ### KSTrajControlSpinPrecession Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -5309,10 +5339,10 @@ Example: ### KSTrajIntegratorRK8 Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -5322,10 +5352,10 @@ Example: ### KSTrajIntegratorRK86 Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -5348,10 +5378,10 @@ Example: ### KSTrajIntegratorRKDP54 Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -5361,10 +5391,10 @@ Example: ### KSTrajIntegratorRKDP853 Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -5413,10 +5443,10 @@ Example: ### KSTrajInterpolatorHermite Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -5467,10 +5497,10 @@ Example: ### KSTrajTermGyration Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| @@ -5494,12 +5524,12 @@ Example: ### KSTrajTermSynchrotron Example: ``` - - + ``` |element name|source files|child elements|child types|attributes|attribute types| From 68de7a41b662072215311deff6f21c42d3e5a4c6 Mon Sep 17 00:00:00 2001 From: 2xB <2xB@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:53:29 +0200 Subject: [PATCH 5/6] Implemented suggested improvements --- .../Include/KSIntSurfaceScattering.h | 52 +++-- .../Source/KSIntSurfaceScattering.cxx | 217 ++++++++---------- 2 files changed, 122 insertions(+), 147 deletions(-) diff --git a/Kassiopeia/Interactions/Include/KSIntSurfaceScattering.h b/Kassiopeia/Interactions/Include/KSIntSurfaceScattering.h index 0cde15090..2c5399216 100644 --- a/Kassiopeia/Interactions/Include/KSIntSurfaceScattering.h +++ b/Kassiopeia/Interactions/Include/KSIntSurfaceScattering.h @@ -7,7 +7,9 @@ #define Kassiopeia_KSIntSurfaceScattering_h_ #include "KField.h" +#include "KSInteractionsMessage.h" #include "KSSurfaceInteraction.h" +#include "KThreeVector.hh" #include namespace Kassiopeia @@ -15,6 +17,13 @@ namespace Kassiopeia class KSStep; +enum class KSIntSurfaceScatteringSide +{ + Both, + Top, + Bottom +}; + class KSIntSurfaceScattering : public KSComponentTemplate { public: @@ -33,43 +42,40 @@ class KSIntSurfaceScattering : public KSComponentTemplate does not understand side <" << side_name + << ">. Valid sides are: both, top, bottom." << eom; + return; } - std::string GetSide() const - { - return fSideName; - }; - public: K_SET_GET(double, ScatProbability) K_SET_GET(double, ScatLossFraction) K_SET_GET(double, SecElectronProbability) K_SET_GET(double, SecElectronMeanEnergy) - - private: - bool fPerformSideCheck; - bool fSideSignIsNegative; - std::string fSideName; + K_SET_GET(KSIntSurfaceScatteringSide, Side) }; } // namespace Kassiopeia diff --git a/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx b/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx index f4e39d582..a97054702 100644 --- a/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx +++ b/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx @@ -5,27 +5,25 @@ ////////////////////////////////////////////////////////////////////////// #include "KSIntSurfaceScattering.h" -#include "KRandom.h" -#include "KSInteractionsMessage.h" -using katrin::KRandom; - #include "KConst.h" +#include "KRandom.h" #include +#include +using katrin::KRandom; using katrin::KThreeVector; namespace Kassiopeia { + KSIntSurfaceScattering::KSIntSurfaceScattering() : - fScatProbability(0.3), - fScatLossFraction(0.0), - fSecElectronProbability(0.25), - fSecElectronMeanEnergy(4.0), - fPerformSideCheck(false), - fSideSignIsNegative(false), - fSideName(std::string("both")) + fScatProbability(std::numeric_limits::quiet_NaN()), + fScatLossFraction(std::numeric_limits::quiet_NaN()), + fSecElectronProbability(std::numeric_limits::quiet_NaN()), + fSecElectronMeanEnergy(std::numeric_limits::quiet_NaN()), + fSide(KSIntSurfaceScatteringSide::Both) {} KSIntSurfaceScattering::KSIntSurfaceScattering(const KSIntSurfaceScattering& aCopy) : @@ -34,9 +32,7 @@ KSIntSurfaceScattering::KSIntSurfaceScattering(const KSIntSurfaceScattering& aCo fScatLossFraction(aCopy.fScatLossFraction), fSecElectronProbability(aCopy.fSecElectronProbability), fSecElectronMeanEnergy(aCopy.fSecElectronMeanEnergy), - fPerformSideCheck(aCopy.fPerformSideCheck), - fSideSignIsNegative(aCopy.fSideSignIsNegative), - fSideName(aCopy.fSideName) + fSide(aCopy.fSide) {} KSIntSurfaceScattering* KSIntSurfaceScattering::Clone() const @@ -46,6 +42,34 @@ KSIntSurfaceScattering* KSIntSurfaceScattering::Clone() const KSIntSurfaceScattering::~KSIntSurfaceScattering() = default; +KThreeVector KSIntSurfaceScattering::GetReflectionDirection(const KSParticle& anInitialParticle, const double tSinTheta, const double tCosTheta, const double tAzimuthalAngle) +{ + KThreeVector tNormal; + if (anInitialParticle.GetCurrentSurface() != nullptr) { + tNormal = anInitialParticle.GetCurrentSurface()->Normal(anInitialParticle.GetPosition()); + } + else if (anInitialParticle.GetCurrentSide() != nullptr) { + tNormal = anInitialParticle.GetCurrentSide()->Normal(anInitialParticle.GetPosition()); + } + else { + intmsg(eError) << "surface diffuse interaction named <" << GetName() + << "> was given a particle with neither a surface nor a side set" << eom; + return KThreeVector(0,0,0); + } + + const KThreeVector tInitialMomentum = anInitialParticle.GetMomentum(); + KThreeVector tInitialNormalMomentum = tInitialMomentum.Dot(tNormal) * tNormal; + KThreeVector tInitialTangentMomentum = tInitialMomentum - tInitialNormalMomentum; + KThreeVector tInitialOrthogonalMomentum = tInitialTangentMomentum.Cross(tInitialNormalMomentum.Unit()); + + //define reflected direction + KThreeVector tReflectedDirection = -1.0 * tCosTheta * tInitialNormalMomentum.Unit(); + tReflectedDirection += tSinTheta * std::cos(tAzimuthalAngle) * tInitialTangentMomentum.Unit(); + tReflectedDirection += tSinTheta * std::sin(tAzimuthalAngle) * tInitialOrthogonalMomentum.Unit(); + + return tReflectedDirection; +} + void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParticle, KSParticle& aFinalParticle, KSParticleQueue& aSecondaries) @@ -61,7 +85,6 @@ void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParti #endif // figure out the basis directions for the particle ejection - // eject it with a diffuse 'Lambertian' distribution KThreeVector tNormal; if (anInitialParticle.GetCurrentSurface() != nullptr) { tNormal = anInitialParticle.GetCurrentSurface()->Normal(anInitialParticle.GetPosition()); @@ -77,55 +100,54 @@ void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParti const KThreeVector tInitialMomentum = anInitialParticle.GetMomentum(); const double dot_prod = tInitialMomentum.Dot(tNormal); + bool execute_interaction = true; - if (fPerformSideCheck) { - if (fSideSignIsNegative && dot_prod > 0) { - execute_interaction = false; - } - if (!fSideSignIsNegative && dot_prod < 0) { - execute_interaction = false; - } + if (fSide == KSIntSurfaceScatteringSide::Top && dot_prod > 0) { + execute_interaction = false; + } + if (fSide == KSIntSurfaceScatteringSide::Bottom && dot_prod < 0) { + execute_interaction = false; } //only execute interaction if the specified side of this surface is active - if (execute_interaction) - { - tChoice = KRandom::GetInstance().Uniform(0., 1.); - if (tChoice < fSecElectronProbability) { - CreateSecondaryElectron(anInitialParticle, aFinalParticle, aSecondaries); - intmsg(eNormal) << " secondary electron production occurred on child surface <" - << (tCurrentSurface != nullptr ? tCurrentSurface->GetName() - : anInitialParticle.GetCurrentSide()->GetName()) - << ">" << eom; - } - - tChoice = KRandom::GetInstance().Uniform(0., 1.); - if (tChoice < fScatProbability) - { - ExecuteReflection(anInitialParticle, aFinalParticle, aSecondaries); - intmsg(eNormal) << " backscattering occurred on child surface <" - << (tCurrentSurface != nullptr ? tCurrentSurface->GetName() - : anInitialParticle.GetCurrentSide()->GetName()) - << ">" << eom; - } - else - { - //kill incoming electron - aFinalParticle = anInitialParticle; - aFinalParticle.SetActive(false); - aFinalParticle.AddLabel("absorbed"); - aFinalParticle.SetMomentum(0., 0., 0.); - intmsg(eNormal) << " particle absorption occurred on child surface <" - << (tCurrentSurface != nullptr ? tCurrentSurface->GetName() - : anInitialParticle.GetCurrentSide()->GetName()) - << ">" << eom; - } - } + if (!execute_interaction) { + aFinalParticle = anInitialParticle; + aFinalParticle.AddLabel(GetName()); + aFinalParticle.AddLabel("transmitted"); + return; + } + + tChoice = KRandom::GetInstance().Uniform(0., 1.); + if (tChoice < fSecElectronProbability) { + CreateSecondaryElectron(anInitialParticle, aFinalParticle, aSecondaries); + intmsg(eNormal) << " secondary electron production occurred on child surface <" + << (tCurrentSurface != nullptr ? tCurrentSurface->GetName() + : anInitialParticle.GetCurrentSide()->GetName()) + << ">" << eom; + } + + tChoice = KRandom::GetInstance().Uniform(0., 1.); + if (tChoice >= fScatProbability) + { + ExecuteReflection(anInitialParticle, aFinalParticle, aSecondaries); + intmsg(eNormal) << " backscattering occurred on child surface <" + << (tCurrentSurface != nullptr ? tCurrentSurface->GetName() + : anInitialParticle.GetCurrentSide()->GetName()) + << ">" << eom; + } else - { - aFinalParticle = anInitialParticle; - aFinalParticle.AddLabel("transmitted"); - } + { + //kill incoming electron + aFinalParticle = anInitialParticle; + aFinalParticle.SetActive(false); + aFinalParticle.AddLabel(GetName()); + aFinalParticle.AddLabel("absorbed"); + aFinalParticle.SetMomentum(0., 0., 0.); + intmsg(eNormal) << " particle absorption occurred on child surface <" + << (tCurrentSurface != nullptr ? tCurrentSurface->GetName() + : anInitialParticle.GetCurrentSide()->GetName()) + << ">" << eom; + } #ifdef Kassiopeia_ENABLE_DEBUG intmsg_debug("*************** final particle" << eom); @@ -143,35 +165,6 @@ void KSIntSurfaceScattering::CreateSecondaryElectron(const KSParticle& anInitial KSParticle&, KSParticleQueue& aSecondaries) { - // figure out the basis directions for the particle ejection - // eject it with a diffuse 'Lambertian' distribution - // - KThreeVector tNormal; - if (anInitialParticle.GetCurrentSurface() != nullptr) { - tNormal = anInitialParticle.GetCurrentSurface()->Normal(anInitialParticle.GetPosition()); - } - else if (anInitialParticle.GetCurrentSide() != nullptr) { - tNormal = anInitialParticle.GetCurrentSide()->Normal(anInitialParticle.GetPosition()); - } - else { - intmsg(eError) << "surface diffuse interaction named <" << GetName() - << "> was given a particle with neither a surface nor a side set" << eom; - return; - } - - KThreeVector tInitialMomentum = anInitialParticle.GetMomentum(); - KThreeVector momDirection = tInitialMomentum.Unit(); - - double dot_prod = tInitialMomentum.Dot(tNormal); - KThreeVector tInitialNormalMomentum = dot_prod * tNormal; - - tInitialNormalMomentum = -1.0 * tInitialNormalMomentum; //reverse direction for reflection - KThreeVector tInitialTangentMomentum = tInitialMomentum - tInitialNormalMomentum; - - tInitialNormalMomentum = tInitialNormalMomentum.Unit(); - tInitialTangentMomentum = tInitialTangentMomentum.Unit(); - KThreeVector tInitialOrthogonalMomentum = tInitialTangentMomentum.Cross(tInitialNormalMomentum.Unit()); - // add new particle to queue // auto* tParticle = new KSParticle(anInitialParticle); @@ -181,15 +174,8 @@ void KSIntSurfaceScattering::CreateSecondaryElectron(const KSParticle& anInitial double tSinTheta = KRandom::GetInstance().Uniform(0., 0.5); //this is not a true lambertian (has cut-off angle) double tCosTheta = std::sqrt((1.0 - tSinTheta) * (1.0 + tSinTheta)); - - KThreeVector tDirection; - tDirection = tCosTheta * tInitialNormalMomentum; - tDirection += tSinTheta * std::cos(tAzimuthalAngle) * tInitialTangentMomentum.Unit(); - tDirection += tSinTheta * std::sin(tAzimuthalAngle) * tInitialOrthogonalMomentum.Unit(); - - if (tDirection.Dot(momDirection) > 0) { - tDirection = -1.0 * tDirection; - } + + KThreeVector tDirection = GetReflectionDirection(anInitialParticle, tSinTheta, tCosTheta, tAzimuthalAngle); // secondary particles particles are emitted predominantly // with very low energies, currently set constant @@ -214,6 +200,13 @@ void KSIntSurfaceScattering::ExecuteReflection(const KSParticle& anInitialPartic KSParticleQueue&) { double tKineticEnergy = anInitialParticle.GetKineticEnergy(); + + if(!(fScatLossFraction >= 0.0 && fScatLossFraction <= 1.0)) { + intmsg(eError) << "surface diffuse interaction named <" << GetName() + << "> is configured for an out-of-range ScatLossFraction of <" + << fScatLossFraction << ">." << eom; + return; + } // energy loss due to backscattering tKineticEnergy *= (1.0 - fScatLossFraction); @@ -231,33 +224,9 @@ void KSIntSurfaceScattering::ExecuteReflection(const KSParticle& anInitialPartic 0., 1.)); // only KRandom::GetInstance().Uniform( 0., 1. ); is wrong: see http://www.sciencedirect.com/science/article/pii/S0042207X02001732 double tCosTheta = std::sqrt((1.0 - tSinTheta) * (1.0 + tSinTheta)); - - KThreeVector tNormal; - if (anInitialParticle.GetCurrentSurface() != nullptr) { - tNormal = anInitialParticle.GetCurrentSurface()->Normal(anInitialParticle.GetPosition()); - } - else if (anInitialParticle.GetCurrentSide() != nullptr) { - tNormal = anInitialParticle.GetCurrentSide()->Normal(anInitialParticle.GetPosition()); - } - else { - intmsg(eError) << "surface diffuse interaction named <" << GetName() - << "> was given a particle with neither a surface nor a side set" << eom; - return; - } - - KThreeVector tInitialMomentum = anInitialParticle.GetMomentum(); - double tMomentumMagnitude = tInitialMomentum.Magnitude(); - - KThreeVector tInitialNormalMomentum = tInitialMomentum.Dot(tNormal) * tNormal; - KThreeVector tInitialTangentMomentum = tInitialMomentum - tInitialNormalMomentum; - KThreeVector tInitialOrthogonalMomentum = tInitialTangentMomentum.Cross(tInitialNormalMomentum.Unit()); - - //define reflected direction - KThreeVector tReflectedDirection = -1.0 * tCosTheta * tInitialNormalMomentum.Unit(); - tReflectedDirection += tSinTheta * std::cos(tAzimuthalAngle) * tInitialTangentMomentum.Unit(); - tReflectedDirection += tSinTheta * std::sin(tAzimuthalAngle) * tInitialOrthogonalMomentum.Unit(); - - KThreeVector tReflectedMomentum = tMomentumMagnitude * tReflectedDirection; + + KThreeVector tReflectedMomentum = GetReflectionDirection(anInitialParticle, tSinTheta, tCosTheta, tAzimuthalAngle) + * anInitialParticle.GetMomentum().Magnitude(); aFinalParticle = anInitialParticle; aFinalParticle.SetMomentum(tReflectedMomentum); From 63fe833bade4453c633cf49f8d9ddf1a26b8849a Mon Sep 17 00:00:00 2001 From: Richard Salomon Date: Fri, 31 Jul 2026 14:36:51 +0200 Subject: [PATCH 6/6] KSIntSurfaceScattering: Fix inverted backscatter probability check and address remaining review comments --- .../Source/KSIntSurfaceScattering.cxx | 71 +++++++++++-------- 1 file changed, 43 insertions(+), 28 deletions(-) diff --git a/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx b/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx index a97054702..21f7e37d3 100644 --- a/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx +++ b/Kassiopeia/Interactions/Source/KSIntSurfaceScattering.cxx @@ -7,6 +7,8 @@ #include "KConst.h" #include "KRandom.h" +#include "KSInteractionsMessage.h" +#include "KThreeVector.hh" #include #include @@ -17,6 +19,19 @@ using katrin::KThreeVector; namespace Kassiopeia { +namespace +{ +std::string GetSurfaceOrSideName(const KSParticle& aParticle) +{ + if (aParticle.GetCurrentSurface() != nullptr) { + return aParticle.GetCurrentSurface()->GetName(); + } + if (aParticle.GetCurrentSide() != nullptr) { + return aParticle.GetCurrentSide()->GetName(); + } + return ""; +} +} // namespace KSIntSurfaceScattering::KSIntSurfaceScattering() : fScatProbability(std::numeric_limits::quiet_NaN()), @@ -75,7 +90,21 @@ void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParti KSParticleQueue& aSecondaries) { double tChoice; - KSSurface* tCurrentSurface = anInitialParticle.GetCurrentSurface(); + + if (std::isnan(fScatProbability) || std::isnan(fScatLossFraction) || std::isnan(fSecElectronProbability) || + std::isnan(fSecElectronMeanEnergy)) { + intmsg(eError) << "surface diffuse interaction named <" << GetName() + << "> is missing a required parameter (ScatProbability, ScatLossFraction, " + "SecElectronProbability and SecElectronMeanEnergy must all be set)" + << eom; + return; + } + if (!(fScatLossFraction >= 0.0 && fScatLossFraction < 1.0)) { + intmsg(eError) << "surface diffuse interaction named <" << GetName() + << "> is configured for an out-of-range ScatLossFraction of <" << fScatLossFraction << ">." + << eom; + return; + } #ifdef Kassiopeia_ENABLE_DEBUG intmsg_debug("*************** initial particle" << eom); @@ -113,6 +142,7 @@ void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParti if (!execute_interaction) { aFinalParticle = anInitialParticle; aFinalParticle.AddLabel(GetName()); + aFinalParticle.AddLabel(GetSurfaceOrSideName(anInitialParticle)); aFinalParticle.AddLabel("transmitted"); return; } @@ -120,20 +150,16 @@ void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParti tChoice = KRandom::GetInstance().Uniform(0., 1.); if (tChoice < fSecElectronProbability) { CreateSecondaryElectron(anInitialParticle, aFinalParticle, aSecondaries); - intmsg(eNormal) << " secondary electron production occurred on child surface <" - << (tCurrentSurface != nullptr ? tCurrentSurface->GetName() - : anInitialParticle.GetCurrentSide()->GetName()) - << ">" << eom; + intmsg_debug(" secondary electron production occurred on child surface <" + << GetSurfaceOrSideName(anInitialParticle) << ">" << eom); } tChoice = KRandom::GetInstance().Uniform(0., 1.); - if (tChoice >= fScatProbability) + if (tChoice < fScatProbability) { ExecuteReflection(anInitialParticle, aFinalParticle, aSecondaries); - intmsg(eNormal) << " backscattering occurred on child surface <" - << (tCurrentSurface != nullptr ? tCurrentSurface->GetName() - : anInitialParticle.GetCurrentSide()->GetName()) - << ">" << eom; + intmsg_debug(" backscattering occurred on child surface <" + << GetSurfaceOrSideName(anInitialParticle) << ">" << eom); } else { @@ -141,12 +167,11 @@ void KSIntSurfaceScattering::ExecuteInteraction(const KSParticle& anInitialParti aFinalParticle = anInitialParticle; aFinalParticle.SetActive(false); aFinalParticle.AddLabel(GetName()); + aFinalParticle.AddLabel(GetSurfaceOrSideName(anInitialParticle)); aFinalParticle.AddLabel("absorbed"); aFinalParticle.SetMomentum(0., 0., 0.); - intmsg(eNormal) << " particle absorption occurred on child surface <" - << (tCurrentSurface != nullptr ? tCurrentSurface->GetName() - : anInitialParticle.GetCurrentSide()->GetName()) - << ">" << eom; + intmsg_debug(" particle absorption occurred on child surface <" + << GetSurfaceOrSideName(anInitialParticle) << ">" << eom); } #ifdef Kassiopeia_ENABLE_DEBUG @@ -187,6 +212,8 @@ void KSIntSurfaceScattering::CreateSecondaryElectron(const KSParticle& anInitial tParticle->SetMomentum(tDirection); tParticle->SetKineticEnergy_eV(tChildEnergy); tParticle->SetCurrentSurface(nullptr); + tParticle->AddLabel(GetName()); + tParticle->AddLabel(GetSurfaceOrSideName(anInitialParticle)); tParticle->AddLabel("secondary"); aSecondaries.push_back(tParticle); @@ -200,24 +227,10 @@ void KSIntSurfaceScattering::ExecuteReflection(const KSParticle& anInitialPartic KSParticleQueue&) { double tKineticEnergy = anInitialParticle.GetKineticEnergy(); - - if(!(fScatLossFraction >= 0.0 && fScatLossFraction <= 1.0)) { - intmsg(eError) << "surface diffuse interaction named <" << GetName() - << "> is configured for an out-of-range ScatLossFraction of <" - << fScatLossFraction << ">." << eom; - return; - } // energy loss due to backscattering tKineticEnergy *= (1.0 - fScatLossFraction); - //prevent kinetic energy from going negative - if (tKineticEnergy < 0.0) { - intmsg(eError) << "surface diffuse interaction named <" << GetName() - << "> tried to give a particle a negative kinetic energy." << eom; - return; - } - //generate angles for diffuse 'Lambertian' reflection direction double tAzimuthalAngle = KRandom::GetInstance().Uniform(0., 2. * katrin::KConst::Pi()); double tSinTheta = std::sqrt(KRandom::GetInstance().Uniform( @@ -231,6 +244,8 @@ void KSIntSurfaceScattering::ExecuteReflection(const KSParticle& anInitialPartic aFinalParticle = anInitialParticle; aFinalParticle.SetMomentum(tReflectedMomentum); aFinalParticle.SetKineticEnergy(tKineticEnergy); + aFinalParticle.AddLabel(GetName()); + aFinalParticle.AddLabel(GetSurfaceOrSideName(anInitialParticle)); aFinalParticle.AddLabel("backscattered"); return;