Skip to content

Commit

Permalink
Merge pull request #79 from markdewing/doxygen_name_fixes
Browse files Browse the repository at this point in the history
Small doxygen fixes.
  • Loading branch information
grahamlopez authored Jan 8, 2018
2 parents cb9f441 + 71bb93c commit 45f0624
Show file tree
Hide file tree
Showing 15 changed files with 28 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ WARNINGS = YES
# will automatically be disabled.
# The default value is: YES.

WARN_IF_UNDOCUMENTED = YES
WARN_IF_UNDOCUMENTED = NO

# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
# potential errors in the documentation, such as not documenting some parameters
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/Containers.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// Intel Corp.
////////////////////////////////////////////////////////////////////////////////
// -*- C++ -*-
/** @file Container.h
/** @file Containers.h
*
* Master header to support SoA containers
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/DeterminantOperators.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// University of Illinois at Urbana-Champaign
//////////////////////////////////////////////////////////////////////////////////////

/** @file DeterminantOperator.h
/** @file DeterminantOperators.h
* @brief Define determinant operators
*/
#ifndef OHMMS_NUMERIC_DETERMINANT_H
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/PosTransformer.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// Intel Corp.
////////////////////////////////////////////////////////////////////////////////
// -*- C++ -*-
/** @file VectorOperators.h
/** @file PosTransformer.h
* @brief Support funtions to handle position type data manged by soa
*/
#ifndef QMCPLUSPLUS_SOA_FAST_PARTICLE_OPERATORS_H
Expand Down
4 changes: 3 additions & 1 deletion src/Numerics/Spline2/MultiBspline.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
/**@file MultiBspline.hpp
*
* Master header file to define MultiBspline
*
* Contains 3D spline evaluation routines.
*/
#ifndef QMCPLUSPLUS_MULTIEINSPLINE_COMMON_HPP
#define QMCPLUSPLUS_MULTIEINSPLINE_COMMON_HPP
Expand All @@ -30,7 +32,7 @@ namespace qmcplusplus
template <typename T> struct MultiBspline
{

/// define the einsplie object type
/// define the einspline object type
using spliner_type = typename bspline_traits<T, 3>::SplineType;

MultiBspline() {}
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/Spline2/MultiBsplineData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// File created by: Jeongnim Kim, [email protected], Intel Corp.
////////////////////////////////////////////////////////////////////////////////
// -*- C++ -*-
/**@file MultiBspline.cpp
/**@file MultiBsplineData.cpp
*
* Initialize the static data for float and double
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/Spline2/bspline_allocator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// File created by: Jeongnim Kim, [email protected], Intel Corp.
////////////////////////////////////////////////////////////////////////////////
// -*- C++ -*-
/** @file einspline_allocator.cpp
/** @file bspline_allocator.cpp
* @brief Implementation of einspline::Allocator member functions
*
* Allocator::Policy is not defined precisely yet but is intended to select
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/Spline2/bspline_traits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// File created by: Jeongnim Kim, [email protected], Intel Corp.
////////////////////////////////////////////////////////////////////////////////
// -*- C++ -*-
/** @file bspline_traits.h
/** @file bspline_traits.hpp
*
* extend spline/bspline_traints by introducing
* bspline_traits<T,D> with only speciliazation with 3D
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/readme_soa.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ Access operators to each compoenent are provided.

\code
H.data(int i, int j); //return the starting address of (i,j) component
\endode
\endcode

2 changes: 1 addition & 1 deletion src/Particle/Lattice/ParticleBConds.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ namespace qmcplusplus
*
* @tparam T real data type
* @tparam D physical dimension
* @tparm SC supercell type
* @tparam SC supercell type
*
* Default method for any dimension with OPEN boundary condition.
* \htmlonly
Expand Down
4 changes: 4 additions & 0 deletions src/Particle/ParticleSet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
#include "Particle/DistanceTable.h"
#include "Utilities/RandomGenerator.h"

/** @file ParticleSet.cpp
* @brief Particle positions and related data
*/

//#define PACK_DISTANCETABLES

namespace qmcplusplus
Expand Down
8 changes: 6 additions & 2 deletions src/Particle/ParticleSet.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
// University of Illinois at Urbana-Champaign
////////////////////////////////////////////////////////////////////////////////

/** @file ParticleSet.h
* @brief Particle positions and related data
*/

#ifndef QMCPLUSPLUS_PARTICLESET_H
#define QMCPLUSPLUS_PARTICLESET_H

Expand Down Expand Up @@ -74,9 +78,9 @@ template <typename T> struct MCDataType
class ParticleSet : public QMCTraits, public PtclOnLatticeTraits
{
public:
///@typedef walker type
/// walker type
typedef Walker<QMCTraits, PtclOnLatticeTraits> Walker_t;
///@typedef buffer type for a serialized buffer
/// buffer type for a serialized buffer
typedef Walker_t::Buffer_t Buffer_t;

/// the name of the particle set.
Expand Down
2 changes: 1 addition & 1 deletion src/QMCWaveFunctions/WaveFunction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <Input/Input.hpp>

/*!
* @file SoAWaveFunction.cpp
* @file WaveFunction.cpp
@brief Wavefunction based on Structure of Arrays (SoA) storage
*/

Expand Down
2 changes: 1 addition & 1 deletion src/QMCWaveFunctions/WaveFunctionComponentBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "Particle/ParticleSet.h"
#include "Particle/DistanceTableData.h"

/**@file wavefunctioncomponentbase.h
/**@file WaveFunctionComponentBase.h
*@brief Declaration of WaveFunctionComponentBase
*/
namespace qmcplusplus
Expand Down
4 changes: 4 additions & 0 deletions src/QMCWaveFunctions/WaveFunctionRef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
* @brief Wavefunction based on reference implemenation
*/

/*!
* Namespace containing reference implementation.
*/

namespace miniqmcreference
{
using namespace qmcplusplus;
Expand Down

0 comments on commit 45f0624

Please sign in to comment.