Skip to content

Commit

Permalink
the model parameter names should be parameters
Browse files Browse the repository at this point in the history
 - no reason to make them writable
  • Loading branch information
sstaehler committed Mar 18, 2015
1 parent d07581a commit c0cbc00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion background_model.f90
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module backgroundmodel
integer, parameter :: nmodel_parameters = 12 !< Number of basic model parameters
!! which are availabe in backgroundmodel_type

character(len=3) :: parameter_name(nmodel_parameters) = &
character(len=3), parameter :: parameter_name(nmodel_parameters) = &
['vp ', 'vs ', 'rho', 'vph', 'vpv', 'vsh', &
'vsv', 'eta', 'phi', 'xi ', 'lam', 'mu ']

Expand Down

0 comments on commit c0cbc00

Please sign in to comment.