IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 7f182a3f authored by ralfulrich's avatar ralfulrich Committed by Maximilian Reininghaus
Browse files

added a bit more docu

parent dc17fba5
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,21 @@ ...@@ -26,7 +26,21 @@
#include <boost/math/quadrature/gauss_kronrod.hpp> #include <boost/math/quadrature/gauss_kronrod.hpp>
namespace corsika::environment { namespace corsika::environment {
/**
* \class ShowerAxis
*
* The environment::ShowerAxis is created from a geometry::Point and
* a geometry::Vector and inside an Environment. It internally uses
* a table with steps=10000 (default) rows for interpolation.
*
* The shower axis can convert location in the shower into a
* projected grammage along the shower axis.
*
**/
class ShowerAxis { class ShowerAxis {
public: public:
template <typename TEnvModel> template <typename TEnvModel>
......
...@@ -21,13 +21,11 @@ ...@@ -21,13 +21,11 @@
namespace corsika::process::longitudinal_profile { namespace corsika::process::longitudinal_profile {
/** /**
* /class Longitudinal_Profile * \class LongitudinalProfile
* *
* is a ContinuousProcess, which is constructed from a ShowerAxis * is a ContinuousProcess, which is constructed from an environment::ShowerAxis
* object, and a dX in units of g/cm2 * object, and a dX in units of g/cm2
* (corsika::units::si::GrammageType). The shower axis can convert * (corsika::units::si::GrammageType).
* location in the shower into a projected grammage along the shower
* axis.
* *
* LongitudinalProfile does then convert each single Track of the * LongitudinalProfile does then convert each single Track of the
* simulation into a projected grammage range and counts for * simulation into a projected grammage range and counts for
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment