Changes between Version 21 and Version 22 of DevNotes/DevGuide/CodingRules


Ignore:
Timestamp:
May 30, 2016 9:23:48 AM (8 years ago)
Author:
wojciech
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/DevGuide/CodingRules

    v21 v22  
    5555Naming 
    5656 
    57     * Use CamelCase for class names 
     57    * Use !CamelCase for class names 
    5858    * Use box_car with underscores separating words for variable and method names. 
    5959    * Use box_car with underscores for namespaces & directories 
     
    8282      }}} 
    8383      }}} 
    84     * Models: for adding a new model no capitalization and thus no CamelCase in model names. If necessary use underscore to separate (i.e. barbell not !BarBell or broad_peak not !BroadPeak) 
     84    * Models: for adding a new model no capitalization and thus no !CamelCase in model names. If necessary use underscore to separate (i.e. barbell not !BarBell or broad_peak not !BroadPeak) 
    8585    * Models: Don't add/Remove “model” in/from the name (i.e. barbell not !BarBellModel) 
    8686    * Models: When defining parameters use radius_core, sld_core names not core_radius and core_sld