IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 6b3834ef authored by Ralf Ulrich's avatar Ralf Ulrich
Browse files

Update text.

parent 0fe6168d
No related branches found
No related tags found
No related merge requests found
...@@ -46,37 +46,42 @@ e.g. [link1](https://clangformat.com/) or ...@@ -46,37 +46,42 @@ e.g. [link1](https://clangformat.com/) or
While `clang-format` does the structural formatting, we still need to agree on naming conventions: While `clang-format` does the structural formatting, we still need to agree on naming conventions:
- Classes and structs start with capital letters - Classes and structs start with capital letters ```LikeThis```
- Class member variables start with "f" - Class member variables start non-captial and have a trailing "_" ```likeThis_```
- Any static variable has a "g" prefix. A static member variable starts with "fg" - Class member functions start with small letters ```LikeThis::doSomething(...)```
- Class member functions start with capital letters - Any class setter begins with "set_" ```LikeThis::set_something(...)```
- Any class getter begins with "Get", and setter with "Set". Logical getters start with "Is" or "Has". - Any class getter is named accoring to its property: ```LikeThis::something()```
- enums should be "enum class" - Logical getters may start with ```is_``` or ```has_```
- Function parameter names start with "v" - enums should be ```enum class```
- types in template definitions start with "T" - Named variables start with small letter ```likeThis```
- Normal variable names in code start non-capital. To avoid confusion with these special identifiers - types in template definitions start with "T" ```TLikeThis```
described above in case an identifier starts with `v`, `T`, `f`, `fg`, or `g`, this prefix may not be
followed by a capital letter. i.e. `funkyVariable` is allowed while `vLooksLikeArgument` is not. - use names that explain and document the code, thus
```
```
and not
```
```
This actually is suffient to document the code, no futher comments should be added in such case.
- We use namespaces to avoid clashes and to structure code - We use namespaces to avoid clashes and to structure code
- *Everything* is part of the corsika namespace - *Everything* is part of one of those namespaces:
- ```corsika::framework```, ```corsika::physics```, or ```corsika::process```
- All classes and objects are encapsulated into suited sub-namespaces, - All classes and objects are encapsulated into suited sub-namespaces,
thus corsika::geometry, corsika::processes, corsika::units, etc. thus ```corsika::framework::geometry```, ```corsika::physics::process```, ```corsika::physics::units```, etc.
- Namespace names do not use capital letters. - Namespace names do not use capital letters.
- Every header file is copied during build and install into - Every header file is located in the source tree in ```include/corsika/[namespace]```, which also means that in almost all cases each header file
"include/corsika/[namespace]" which also means, each header file can only provide definitions for a _single_ namespace. It is one
can only provide definitions for a _single_ namespace. It is one main purpose of namespaces to structure the location of header
main purpose of namespaces to structure the location of header files.
files. - Each header file uses an include protection ```#pragma once```
- Each header file must include a `#pragma once` immediately below immediately below the copyright statement.
the copyright statement. - Header files should always be included with `<..>`, thus,
- Header files should always be included with `<..>`, thus, `#include <corsika/geometry/Point.h>` since the build system
`#include <corsika/geometry/Point.h>` since the build system will always provide the correct include directives (and files
will always provide the correct include directives (and files anyway cannot be found in file-system paths, which generally do
anyway cannot be found in file-system paths, which generally do not follow the namespace naming conventions outlined
not follow the namespace naming conventions outlined here).
here).
- Header files are named after the main class (or object) they - Header files are named after the main class (or object) they
define. This also means each header file name starts with a define. This also means each header file name starts with a
capital letter. capital letter.
...@@ -89,7 +94,7 @@ While `clang-format` does the structural formatting, we still need to agree on n ...@@ -89,7 +94,7 @@ While `clang-format` does the structural formatting, we still need to agree on n
- We use C++17 concepts wherever useful and helpful - We use C++17 concepts wherever useful and helpful
- On any major error or malfunction we throw an exception. This is needed and required for complex physics and shower debugging. - On any major error or malfunction we throw an exception. This is needed and required for complex physics and shower debugging.
- We never catch exceptions for error handling, there might be very few special exceptions from this. We need to discuss such cases. - We never catch exceptions for error handling, there might be very few special exceptions from this. We need to discuss such cases.
- Everything that should not change should be `const` - Everything that should not change should be ```const```
- Everything that does not need to be visible to the outside of a class/struct should be `private` or `protected` - Everything that does not need to be visible to the outside of a class/struct should be `private` or `protected`
- We prefer the use of references, wherever useful - We prefer the use of references, wherever useful
- There cannot be any pointer in the interface of any class or object - There cannot be any pointer in the interface of any class or object
......
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