This document is based on the work of
B. Weinberger, C. Silverstein,
G. Eitzmann, M. Mentovai
and T.Landray
at http://google-styleguide.googlecode.com,
C++ Google Style guide, Revision 3.274
under the CC-By 3.0 License
Each style point has a summary for which additional information is available by toggling the accompanying arrow button that looks this way:
. You may toggle all summaries with the big arrow button:Though a pain to write, comments are absolutely vital to keeping our code readable. The following rules describe what you should comment and where. But remember: while comments are very important, the best code is self-documenting. Giving sensible names to types and variables is much better than using obscure names that you must then explain through comments.
When writing your comments, write for your audience: the next contributor who will need to understand your code. Be generous — the next one may be you!
/// ... text ... /// ... text ...
///
syntax for the comments going in the
Web documentation, the //
syntax for explicative
comments in the code and the /* */
syntax only for
the comments within one line.
Example:
inline void FitC::Filter(Track &track, const HitInfo &measurementModel, const float_v m, const float_v weight) const { const float_v sigma2 = measurementModel.sigma2; const float_v sigma216 = measurementModel.sigma216; const Matrix<float_v, 5> F = track.C.slice<0, 5, 0, 2>() * measurementModel.transposed(); // CHᵀ const float_v HCH = measurementModel * F.slice<0, 2>(); // HCHᵀ const float_v residual = measurementModel * track.slice<0, 2>() - m; // ζ = Hr - m float_v denominator = HCH; denominator(HCH < sigma216) += sigma2; const float_v zetawi = residual / denominator; // (V + HCHᵀ)⁻¹ ζ track -= F * zetawi; // r -= CHᵀ (V + HCHᵀ)⁻¹ ζ track.C -= F * (weight / (sigma2 + HCH))* F.transposed(); // C -= CHᵀ (V + HCHᵀ)⁻¹ HC track.Chi2(HCH < sigma216) += residual * zetawi; // χ² += ζ (V + HCHᵀ)⁻¹ ζ track.NDF += weight; }
class
keyword.
namespace
keyword.
[1] Doxygen [http://www.doxygen.org]