From 5f19498a495ea4a7e8fd7f904d6ff8f27a9ccaad Mon Sep 17 00:00:00 2001 From: ralfulrich <ralf.ulrich@kit.edu> Date: Wed, 25 Jul 2018 16:05:28 +0200 Subject: [PATCH] a bit structure --- .gitignore | 1 + Environment/FlatAtmosphere/FlatAtmosphere.h | 1 + Framework/Units/Units.h | 1 + Main/Environment.h | 0 Main/Stack.h | 0 Processes/NullModel/NullModel.cc | 1 + Processes/NullModel/NullModel.h | 23 +++++++++++++++++++++ 7 files changed, 27 insertions(+) create mode 100644 .gitignore create mode 100644 Environment/FlatAtmosphere/FlatAtmosphere.h create mode 100644 Framework/Units/Units.h create mode 100644 Main/Environment.h create mode 100644 Main/Stack.h create mode 100644 Processes/NullModel/NullModel.cc create mode 100644 Processes/NullModel/NullModel.h diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..0defb5cc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +**/*~ diff --git a/Environment/FlatAtmosphere/FlatAtmosphere.h b/Environment/FlatAtmosphere/FlatAtmosphere.h new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/Environment/FlatAtmosphere/FlatAtmosphere.h @@ -0,0 +1 @@ + diff --git a/Framework/Units/Units.h b/Framework/Units/Units.h new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/Framework/Units/Units.h @@ -0,0 +1 @@ + diff --git a/Main/Environment.h b/Main/Environment.h new file mode 100644 index 00000000..e69de29b diff --git a/Main/Stack.h b/Main/Stack.h new file mode 100644 index 00000000..e69de29b diff --git a/Processes/NullModel/NullModel.cc b/Processes/NullModel/NullModel.cc new file mode 100644 index 00000000..7d2ab743 --- /dev/null +++ b/Processes/NullModel/NullModel.cc @@ -0,0 +1 @@ +#include _Physics_NullModel_NullModel_h_ diff --git a/Processes/NullModel/NullModel.h b/Processes/NullModel/NullModel.h new file mode 100644 index 00000000..07cf2c04 --- /dev/null +++ b/Processes/NullModel/NullModel.h @@ -0,0 +1,23 @@ +#ifndef _Physics_NullModel_NullModel_h_ +#define _Physics_NullModel_NullModel_h_ + +namespace physics { + + namespace processes { + + class NullModel { + + public: + NullModel(); + ~NullModel(); + + void init(); + void run(); + double GetStepLength(); + }; + + } +} + +#endif + -- GitLab