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

Cleanup #445

Merged
merged 5 commits into from
Nov 13, 2023
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: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,17 @@
* ObserverPoint will be renamed into Observer1D.
* AMRMagenticField - underlying library (saga) is no longer supported.

### Removed features
* External extensions DINT and Eleca, which can be replaced with the
EM*-modules combined with the thinning option for reasonable computation
times.

### New plugins and resources linked on the webpages:
* FieldlineIntegrator
* grplinst
* monopole
* ROOTOutputPlugin




## CRPropa 3.2

Expand Down
17 changes: 0 additions & 17 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -164,16 +164,6 @@ add_subdirectory(libs/sophia)
list(APPEND CRPROPA_EXTRA_LIBRARIES sophia gfortran)
list(APPEND CRPROPA_EXTRA_INCLUDES libs/sophia)

# DINT (provided)
add_subdirectory(libs/dint)
list(APPEND CRPROPA_EXTRA_LIBRARIES dint)
list(APPEND CRPROPA_EXTRA_INCLUDES libs/dint/include)

# EleCa (provided)
add_subdirectory(libs/EleCa)
list(APPEND CRPROPA_EXTRA_LIBRARIES eleca)
list(APPEND CRPROPA_EXTRA_INCLUDES libs/EleCa/include)

# GlacticMagneticLenses
option(ENABLE_GALACTICMAGETICLENS "Galactic Magnetic Lens" ON)
option(INSTALL_EIGEN "Install provided EIGEN headers" OFF)
Expand Down Expand Up @@ -381,7 +371,6 @@ add_library(crpropa SHARED
src/ParticleMass.cpp
src/ParticleState.cpp
src/PhotonBackground.cpp
src/PhotonPropagation.cpp
src/ProgressBar.cpp
src/Random.cpp
src/Source.cpp
Expand All @@ -392,7 +381,6 @@ add_library(crpropa SHARED
src/module/BreakCondition.cpp
src/module/CandidateSplitting.cpp
src/module/DiffusionSDE.cpp
src/module/EMCascade.cpp
src/module/EMDoublePairProduction.cpp
src/module/EMInverseComptonScattering.cpp
src/module/EMPairProduction.cpp
Expand All @@ -407,7 +395,6 @@ add_library(crpropa SHARED
src/module/ParticleCollector.cpp
src/module/PhotoDisintegration.cpp
src/module/PhotoPionProduction.cpp
src/module/PhotonEleCa.cpp
src/module/PhotonOutput1D.cpp
src/module/PropagationBP.cpp
src/module/PropagationCK.cpp
Expand Down Expand Up @@ -625,10 +612,6 @@ if(ENABLE_TESTING)
target_link_libraries(testDensity crpropa gtest gtest_main pthread ${COVERAGE_LIBS})
add_test(testDensity testDensity)

add_executable(testDINT test/testDINT.cpp)
target_link_libraries(testDINT crpropa gtest gtest_main pthread ${COVERAGE_LIBS})
add_test(testDINT testDINT)

add_executable(testPropagation test/testPropagation.cpp)
target_link_libraries(testPropagation crpropa gtest gtest_main pthread ${COVERAGE_LIBS})
add_test(testPropagation testPropagation)
Expand Down
3 changes: 0 additions & 3 deletions include/CRPropa.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
#include "crpropa/ParticleMass.h"
#include "crpropa/ParticleState.h"
#include "crpropa/PhotonBackground.h"
#include "crpropa/PhotonPropagation.h"
#include "crpropa/Random.h"
#include "crpropa/Referenced.h"
#include "crpropa/Source.h"
Expand All @@ -31,7 +30,6 @@
#include "crpropa/module/BreakCondition.h"
#include "crpropa/module/CandidateSplitting.h"
#include "crpropa/module/DiffusionSDE.h"
#include "crpropa/module/EMCascade.h"
#include "crpropa/module/EMDoublePairProduction.h"
#include "crpropa/module/EMInverseComptonScattering.h"
#include "crpropa/module/EMPairProduction.h"
Expand All @@ -45,7 +43,6 @@
#include "crpropa/module/ParticleCollector.h"
#include "crpropa/module/PhotoDisintegration.h"
#include "crpropa/module/PhotoPionProduction.h"
#include "crpropa/module/PhotonEleCa.h"
#include "crpropa/module/PhotonOutput1D.h"
#include "crpropa/module/PropagationBP.h"
#include "crpropa/module/PropagationCK.h"
Expand Down
53 changes: 0 additions & 53 deletions include/crpropa/PhotonPropagation.h

This file was deleted.

56 changes: 0 additions & 56 deletions include/crpropa/module/EMCascade.h

This file was deleted.

35 changes: 0 additions & 35 deletions include/crpropa/module/PhotonEleCa.h

This file was deleted.

17 changes: 0 additions & 17 deletions libs/EleCa/CMakeLists.txt

This file was deleted.

32 changes: 0 additions & 32 deletions libs/EleCa/include/EleCa/Common.h

This file was deleted.

63 changes: 0 additions & 63 deletions libs/EleCa/include/EleCa/Constants.h

This file was deleted.

31 changes: 0 additions & 31 deletions libs/EleCa/include/EleCa/EnergyLoss.h

This file was deleted.

Loading
Loading