Programming Conventions

From KratosWiki
Revision as of 15:22, 30 October 2008 by Pooyan (Talk | contribs)
Jump to: navigation, search

Imposing a standard usually is restrictive and annoying. But having a coding convention can help in understanding better and faster the code written by a team or even by only one programmer. The coding convection used in Kratos are described briefly in following sections.


Contents

Classes

Class names must be in lower case except the first letter of each word in upper case as separator. For example:

 class MyClassNameExample

Try to describe the type of the class with its name. Some typical cases are:

  • Elements name must be finished with Element word:
 class MyShellElement
  • Conditions name must be finished with Condition word:
 class My2DLoadCondition
  • Linear solvers name must be finished with Solver word:
 class GmresSolver
  • Application classes must be started Kratos and finished with Application :
 class KratosStructuralApplication

It can be seen that in all cases only the first letter of each word is in capital. It's important to mention that there is NO initial letter (like "C") to distinguish a class.


Class Members

Class members are in lower case with first letter of each word in capital starting with following prefixes:

  • lower case m to indicate that they are member variables:
   int mNumberOfElements;
  • lower case mp to indicate that they are member pointers:
   Node::Point mpFirstNode;
  • lower case mr to indicate that they are member references:
   Matrix& mrLocalMatrix;

Class Methods

Macros

Macros in Kratos are all uppercase with underline "_" as seperator and always starting with KRATOS_ as prefix:

 #define KRATOS_AN_EXAMPLE_OF_MACRO

Arguments

Local Variables

Personal tools
Categories