Changes between Version 21 and Version 22 of DevNotes/DevGuide/CodingRules
- Timestamp:
- May 30, 2016 9:23:48 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevNotes/DevGuide/CodingRules
v21 v22 55 55 Naming 56 56 57 * Use CamelCase for class names57 * Use !CamelCase for class names 58 58 * Use box_car with underscores separating words for variable and method names. 59 59 * Use box_car with underscores for namespaces & directories … … 82 82 }}} 83 83 }}} 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) 85 85 * Models: Don't add/Remove “model” in/from the name (i.e. barbell not !BarBellModel) 86 86 * Models: When defining parameters use radius_core, sld_core names not core_radius and core_sld