Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions include/aspect/boundary_traction/ascii_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,20 +95,14 @@ namespace aspect
update () override;

/**
* Declare the parameters this class takes through input files. The
* default implementation of this function does not describe any
* parameters. Consequently, derived classes do not have to overload
* this function if they do not take any runtime parameters.
* Declare the parameters this class takes through input files.
*/
static
void
declare_parameters (ParameterHandler &prm);

/**
* Read the parameters this class declares from the parameter file.
* The default implementation of this function does not read any
* parameters. Consequently, derived classes do not have to overload
* this function if they do not take any runtime parameters.
*/
void
parse_parameters (ParameterHandler &prm) override;
Expand Down
8 changes: 1 addition & 7 deletions include/aspect/geometry_model/spherical_shell.h
Original file line number Diff line number Diff line change
Expand Up @@ -329,20 +329,14 @@ namespace aspect


/**
* Declare the parameters this class takes through input files. The
* default implementation of this function does not describe any
* parameters. Consequently, derived classes do not have to overload
* this function if they do not take any runtime parameters.
* Declare the parameters this class takes through input files.
*/
static
void
declare_parameters (ParameterHandler &prm);

/**
* Read the parameters this class declares from the parameter file.
* The default implementation of this function does not read any
* parameters. Consequently, derived classes do not have to overload
* this function if they do not take any runtime parameters.
*/
void
parse_parameters (ParameterHandler &prm) override;
Expand Down
8 changes: 1 addition & 7 deletions include/aspect/gravity_model/ascii_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,20 +61,14 @@ namespace aspect
Tensor<1,dim> gravity_vector (const Point<dim> &position) const override;

/**
* Declare the parameters this class takes through input files. The
* default implementation of this function does not describe any
* parameters. Consequently, derived classes do not have to overload
* this function if they do not take any runtime parameters.
* Declare the parameters this class takes through input files.
*/
static
void
declare_parameters (ParameterHandler &prm);

/**
* Read the parameters this class declares from the parameter file.
* The default implementation of this function does not read any
* parameters. Consequently, derived classes do not have to overload
* this function if they do not take any runtime parameters.
*/
void
parse_parameters (ParameterHandler &prm) override;
Expand Down
8 changes: 1 addition & 7 deletions include/aspect/initial_composition/world_builder.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,20 +65,14 @@ namespace aspect
double initial_composition (const Point<dim> &position, const unsigned int n_comp) const override;

/**
* Declare the parameters this class takes through input files. The
* default implementation of this function does not describe any
* parameters. Consequently, derived classes do not have to overload
* this function if they do not take any runtime parameters.
* Declare the parameters this class takes through input files.
*/
static
void
declare_parameters (ParameterHandler &prm);

/**
* Read the parameters this class declares from the parameter file.
* The default implementation of this function does not read any
* parameters. Consequently, derived classes do not have to overload
* this function if they do not take any runtime parameters.
*/
void
parse_parameters (ParameterHandler &prm) override;
Expand Down