Skip to content

Commit

Permalink
Remove triple gaussian
Browse files Browse the repository at this point in the history
  • Loading branch information
guilara committed Jun 27, 2024
1 parent 744a649 commit 8a05b9a
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 325 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ spectre_target_sources(
Constant.cpp
GaussianPlusConstant.cpp
RegisterDerivedWithCharm.cpp
TimeDependentTripleGaussian.cpp
)

spectre_target_headers(
Expand All @@ -19,5 +18,4 @@ spectre_target_headers(
GaussianPlusConstant.hpp
RegisterDerivedWithCharm.hpp
Tags.hpp
TimeDependentTripleGaussian.hpp
)
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ template <size_t VolumeDim, typename Fr>
class Constant;
template <size_t VolumeDim, typename Fr>
class GaussianPlusConstant;
class TimeDependentTripleGaussian;
/// \endcond

/*!
Expand All @@ -43,8 +42,7 @@ class DampingFunction : public PUP::able {
using creatable_classes = tmpl::conditional_t<
(VolumeDim == 3 and std::is_same<Fr, Frame::Grid>::value),
tmpl::list<gh::ConstraintDamping::Constant<VolumeDim, Fr>,
gh::ConstraintDamping::GaussianPlusConstant<VolumeDim, Fr>,
gh::ConstraintDamping::TimeDependentTripleGaussian>,
gh::ConstraintDamping::GaussianPlusConstant<VolumeDim, Fr>>,
tmpl::list<gh::ConstraintDamping::GaussianPlusConstant<VolumeDim, Fr>,
gh::ConstraintDamping::Constant<VolumeDim, Fr>>>;
constexpr static size_t volume_dim = VolumeDim;
Expand Down Expand Up @@ -86,4 +84,3 @@ class DampingFunction : public PUP::able {

#include "Evolution/Systems/GeneralizedHarmonic/ConstraintDamping/Constant.hpp"
#include "Evolution/Systems/GeneralizedHarmonic/ConstraintDamping/GaussianPlusConstant.hpp"
#include "Evolution/Systems/GeneralizedHarmonic/ConstraintDamping/TimeDependentTripleGaussian.hpp"

This file was deleted.

This file was deleted.

0 comments on commit 8a05b9a

Please sign in to comment.