Skip to content

Commit

Permalink
adding comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Nov 21, 2016
1 parent 322fe4f commit 28944b4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions templates/librarylink.cpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,7 @@ void put_spectra(const std::tuple<Ts...>& models, MLINK link)
{
MLPutFunction(link, "List", std::tuple_size<std::tuple<Ts...>>::value);

// @todo Use generic lambda instead of Put_spectrum in C++14
Put_spectrum ps(link);
boost::fusion::for_each(models, ps);

Expand Down
8 changes: 8 additions & 0 deletions templates/slha_io.hpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,14 @@ void @ModelName@_slha_io::set_extra(
@writeExtraSLHAOutputBlock@
}

/**
* Stores the model (DR-bar) parameters, masses and mixing matrices of
* all given models in the SLHA object.
*
* @todo Use generic lambda instead of Set_spectrum in C++14
*
* @param models model classes
*/
template <class... Ts>
void @ModelName@_slha_io::set_spectrum(const std::tuple<Ts...>& models)
{
Expand Down

0 comments on commit 28944b4

Please sign in to comment.