Skip to content

Commit

Permalink
Normalised parse module names.
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisfish committed Oct 11, 2023
1 parent 1ed787c commit cdafa24
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
7 changes: 4 additions & 3 deletions src/parse/parse_detectors.f90
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
module parse_detectorsMod

use tomlf
use tomlf_error, only : make_error
use constants, only : wp
use parse_HelpersMod
use vector_class
use parseHelpers

use tomlf
use tomlf_error, only : make_error

implicit none

Expand Down
4 changes: 2 additions & 2 deletions src/parse/parse_helpers.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module parseHelpers
module parse_HelpersMod

use constants, only : wp
use tomlf, only : toml_table, toml_context, toml_array, toml_error, get_value, len
Expand Down Expand Up @@ -51,4 +51,4 @@ type(vector) function get_vector(child, key, error, context, default)
end if
end if
end function get_vector
end module parseHelpers
end module parse_HelpersMod
7 changes: 4 additions & 3 deletions src/parse/parse_source.f90
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
module parse_sourcesMod

use constants, only : wp
use parseHelpers
use tomlf
use parse_HelpersMod
use parse_SpectrumMod
use vector_class
use parseSpectrumMod

use tomlf

implicit none

Expand Down
9 changes: 5 additions & 4 deletions src/parse/parse_spectrum.f90
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
module parseSpectrumMod
module parse_SpectrumMod

use constants, only : wp
use parseHelpers
use parse_HelpersMod
use vector_class

use tomlf
use tomlf_error, only: make_error
use vector_class

implicit none

Expand Down Expand Up @@ -115,4 +116,4 @@ subroutine parse_spectrum(table, spectrum, dict, context, error)
return
end select
end subroutine parse_spectrum
end module parseSpectrumMod
end module parse_SpectrumMod

0 comments on commit cdafa24

Please sign in to comment.