Skip to content

Commit

Permalink
Simplify constructor definitions further
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Harries committed Jan 3, 2017
1 parent 97ff659 commit 345baf4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
3 changes: 1 addition & 2 deletions templates/two_scale_high_scale_constraint.cpp.in
Expand Up @@ -56,8 +56,7 @@ namespace flexiblesusy {

@ModelName@_high_scale_constraint<Two_scale>::@ModelName@_high_scale_constraint(
@ModelName@<Two_scale>* model_)
: Single_scale_constraint()
, model(model_)
: model(model_)
{
initialize();
}
Expand Down
7 changes: 1 addition & 6 deletions templates/two_scale_low_scale_constraint.cpp.in
Expand Up @@ -61,13 +61,8 @@ namespace flexiblesusy {

@ModelName@_low_scale_constraint<Two_scale>::@ModelName@_low_scale_constraint(
@ModelName@<Two_scale>* model_, const softsusy::QedQcd& qedqcd_)
: Single_scale_constraint()
, model(model_)
: model(model_)
, qedqcd(qedqcd_)
, new_g1(0.)
, new_g2(0.)
, new_g3(0.)
, self_energy_w_at_mw(0.)
{
initialize();
}
Expand Down
3 changes: 1 addition & 2 deletions templates/two_scale_susy_scale_constraint.cpp.in
Expand Up @@ -52,8 +52,7 @@ namespace flexiblesusy {

@ModelName@_susy_scale_constraint<Two_scale>::@ModelName@_susy_scale_constraint(
@ModelName@<Two_scale>* model_, const softsusy::QedQcd& qedqcd_)
: Single_scale_constraint()
, model(model_)
: model(model_)
, qedqcd(qedqcd_)
{
initialize();
Expand Down

0 comments on commit 345baf4

Please sign in to comment.