diff --git a/src/parse/parse_detectors.f90 b/src/parse/parse_detectors.f90 index 93b1be7..66984e8 100644 --- a/src/parse/parse_detectors.f90 +++ b/src/parse/parse_detectors.f90 @@ -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 diff --git a/src/parse/parse_helpers.f90 b/src/parse/parse_helpers.f90 index 8bf4567..ee27a80 100644 --- a/src/parse/parse_helpers.f90 +++ b/src/parse/parse_helpers.f90 @@ -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 @@ -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 \ No newline at end of file +end module parse_HelpersMod \ No newline at end of file diff --git a/src/parse/parse_source.f90 b/src/parse/parse_source.f90 index 1ff65c7..fb167b5 100644 --- a/src/parse/parse_source.f90 +++ b/src/parse/parse_source.f90 @@ -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 diff --git a/src/parse/parse_spectrum.f90 b/src/parse/parse_spectrum.f90 index e3ebba9..8cc3d7c 100644 --- a/src/parse/parse_spectrum.f90 +++ b/src/parse/parse_spectrum.f90 @@ -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 @@ -115,4 +116,4 @@ subroutine parse_spectrum(table, spectrum, dict, context, error) return end select end subroutine parse_spectrum -end module parseSpectrumMod \ No newline at end of file +end module parse_SpectrumMod \ No newline at end of file