Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating codebase to Fortran 2008 standards #3

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "EMsoft"]
path = EMsoft
url = https://github.com/emsoft-org/EMsoft
url = https://github.com/joeykleingers/EMsoft
[submodule "EMsoftData"]
path = EMsoftData
url = https://github.com/emsoft-org/EMsoftData
2 changes: 1 addition & 1 deletion EMsoft
Submodule EMsoft updated 60 files
+34 −0 NamelistTemplates/EMLaueSlit.template
+46 −0 NamelistTemplates/EMLauemaster.template
+101 −0 Source/EMsoftHDFLib/NameListHDFwriters.f90
+1 −1 Source/EMsoftHDFLib/patternmod.f90
+13 −0 Source/EMsoftLib/CMakeLists.txt
+227 −8 Source/EMsoftLib/Laue.f90
+182 −1 Source/EMsoftLib/NameListHandlers.f90
+39 −1 Source/EMsoftLib/NameListTypedefs.f90
+0 −49 Source/EMsoftLib/ReadMe.md
+2 −2 Source/EMsoftLib/bobyqa.f90
+76 −9 Source/EMsoftLib/eispack.f90
+219 −0 Source/EMsoftLib/gvectors.f90
+20 −10 Source/EMsoftLib/image.f90
+13 −13 Source/EMsoftLib/local.f90.in
+8 −8 Source/EMsoftLib/rotations.f90
+13 −13 Source/EMsoftLib/spsort.f
+29 −0 Source/EMsoftLib/stringconstants.in
+9 −0 Source/EMsoftLib/typedefs.f90
+11 −2 Source/EMsoftWorkbench/Workbench/Common/FileIOTools.cpp
+2 −1 Source/EMsoftWorkbench/Workbench/Common/FileIOTools.h
+17 −14 Source/EMsoftWorkbench/Workbench/EMsoftApplication.cpp
+250 −370 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/ADPMapController.cpp
+25 −66 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/ADPMapController.h
+28 −77 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/ADPMap_UI.cpp
+19 −20 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/ADPMap_UI.h
+15 −8 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/ChoosePatternsDataset_UI.cpp
+18 −10 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/ChoosePatternsDataset_UI.h
+333 −549 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/DictionaryIndexingController.cpp
+19 −56 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/DictionaryIndexingController.h
+13 −1 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/DictionaryIndexingMain_UI.cpp
+2 −1 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/DictionaryIndexingMain_UI.h
+41 −60 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/DictionaryIndexing_UI.cpp
+20 −26 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/DictionaryIndexing_UI.h
+218 −324 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/PatternPreprocessingController.cpp
+24 −55 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/PatternPreprocessingController.h
+53 −78 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/PatternPreprocessing_UI.cpp
+25 −23 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/PatternPreprocessing_UI.h
+3 −3 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/SourceList.cmake
+185 −267 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/UI_Files/ADPMap_UI.ui
+0 −87 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/UI_Files/ChoosePatternsDatasetDialog.ui
+122 −0 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/UI_Files/ChoosePatternsDataset_UI.ui
+28 −0 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/UI_Files/DictionaryIndexingMain_UI.ui
+430 −475 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/UI_Files/DictionaryIndexing_UI.ui
+213 −299 Source/EMsoftWorkbench/Workbench/Modules/DictionaryIndexingModule/UI_Files/PatternPreprocessing_UI.ui
+156 −0 Source/EMsoftWorkbench/Workbench/Modules/IProcessController.cpp
+99 −0 Source/EMsoftWorkbench/Workbench/Modules/IProcessController.h
+42 −144 Source/EMsoftWorkbench/Workbench/Modules/MasterPatternSimulationModule/MasterPatternSimulationController.cpp
+14 −47 Source/EMsoftWorkbench/Workbench/Modules/MasterPatternSimulationModule/MasterPatternSimulationController.h
+1 −0 Source/EMsoftWorkbench/Workbench/Modules/MasterPatternSimulationModule/MasterPatternSimulation_UI.cpp
+70 −50 Source/EMsoftWorkbench/Workbench/Modules/MasterPatternSimulationModule/UI_Files/MasterPatternSimulation_UI.ui
+18 −129 Source/EMsoftWorkbench/Workbench/Modules/MonteCarloSimulationModule/MonteCarloSimulationController.cpp
+14 −48 Source/EMsoftWorkbench/Workbench/Modules/MonteCarloSimulationModule/MonteCarloSimulationController.h
+6 −0 Source/EMsoftWorkbench/Workbench/Modules/MonteCarloSimulationModule/MonteCarloSimulation_UI.cpp
+413 −315 Source/EMsoftWorkbench/Workbench/Modules/MonteCarloSimulationModule/UI_Files/MonteCarloSimulation_UI.ui
+2 −0 Source/EMsoftWorkbench/Workbench/Modules/SourceList.cmake
+1 −1 Source/Test/CMakeLists.txt
+10 −0 Source/XRay/CMakeLists.txt
+581 −0 Source/XRay/EMLaueSlit.f90
+234 −15 Source/XRay/EMLauemaster.f90
+1 −0 resources/templatecodes.txt