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.
Legal Notice and Author Line
Every file should contain the copyright and license boilerplate:
// Copyright CERN and copyright holders of ALICE O2. This software is // distributed under the terms of the GNU General Public License v3 (GPL // Version 3), copied verbatim in the file "COPYING". // // See http://alice-o2.web.cern.ch/license for full licensing information. // // In applying this license CERN does not waive the privileges and immunities // granted to it by virtue of its status as an Intergovernmental Organization // or submit itself to any jurisdiction.
The license boilerplate should be followed by the author line, containing the full name of the authors and their affiliation(s). If you make significant changes to a file with an author line, consider replacement of the author line with yours.
File Contents
Every file should have a comment at the top describing its contents.
Generally a file description just refers to the class which is declared or implemented in the file. More detailed information about the implementation should go in the class description.
For class definition files:
/// \file MyClass.h /// \brief Definition of the MyClass class. /// /// \author John Brown, Institute XYZ
For class implementation files:
/// \file MyClass.cxx /// \brief Implementation of the MyClass class. /// /// \author John Brown, Institute XYZ
class
keyword.
namespace
keyword.
[1] Doxygen [http://www.doxygen.org]