Skip to content

Commit

Permalink
remove legacy module
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Dec 22, 2016
1 parent 8031562 commit 95b7567
Show file tree
Hide file tree
Showing 30 changed files with 140 additions and 202 deletions.
2 changes: 0 additions & 2 deletions .gitattributes
Expand Up @@ -14,8 +14,6 @@ examples/lattice_numerical_fmssm.cpp export-ignore
examples/lattice_numerical_fmssm_fmssmn.cpp export-ignore
examples/switch_MSSM.cpp export-ignore

legacy export-ignore

model_files/BetaSM export-ignore
model_files/cCMSSM export-ignore
model_files/complexMSSM export-ignore
Expand Down
3 changes: 1 addition & 2 deletions config/Makefile.customized-betas.in
Expand Up @@ -95,7 +95,7 @@ ifneq (,$(findstring yes,$(ENABLE_LOOPTOOLS)$(ENABLE_FFLITE)))
$(CUSTOMBETAS_DEP) $(CUSTOMBETAS_OBJ): CPPFLAGS += $(LOOPFUNCFLAGS)
endif

$(CUSTOMBETAS_EXE): $(CUSTOMBETAS_OBJ) $(LIBMODEL) $(LIBFLEXI) $(LIBLEGACY) $(filter-out -%,$(LOOPFUNCLIBS))
$(CUSTOMBETAS_EXE): $(CUSTOMBETAS_OBJ) $(LIBMODEL) $(LIBFLEXI) $(filter-out -%,$(LOOPFUNCLIBS))
$(CXX) -o $@ $(call abspathx,$^) $(filter -%,$(LOOPFUNCLIBS)) $(GSLLIBS) $(BOOSTTHREADLIBS) $(THREADLIBS) $(LAPACKLIBS) $(BLASLIBS) $(FLIBS) $(SQLITELIBS)

ifneq ($(MAKECMDGOALS),clean)
Expand Down Expand Up @@ -129,7 +129,6 @@ showbuild:
@echo "FLEXIDIR = $(FLEXIDIR)"
@echo "LIBMODEL = $(LIBMODEL)"
@echo "LIBFLEXI = $(LIBFLEXI)"
@echo "LIBLEGACY = $(LIBLEGACY)"
@echo ""
@echo "# compilation information"
@echo "CXX = $(CXX)"
Expand Down
3 changes: 1 addition & 2 deletions config/Makefile.standalone.in
Expand Up @@ -90,7 +90,7 @@ ifneq (,$(findstring yes,$(ENABLE_LOOPTOOLS)$(ENABLE_FFLITE)))
$(STANDALONE_DEP) $(STANDALONE_OBJ): CPPFLAGS += $(LOOPFUNCFLAGS)
endif

$(STANDALONE_EXE): $(STANDALONE_OBJ) $(LIBMODEL) $(LIBFLEXI) $(LIBLEGACY) $(filter-out -%,$(LOOPFUNCLIBS))
$(STANDALONE_EXE): $(STANDALONE_OBJ) $(LIBMODEL) $(LIBFLEXI) $(filter-out -%,$(LOOPFUNCLIBS))
$(CXX) -o $@ $(call abspathx,$^) $(filter -%,$(LOOPFUNCLIBS)) $(GSLLIBS) $(BOOSTTHREADLIBS) $(THREADLIBS) $(LAPACKLIBS) $(BLASLIBS) $(FLIBS) $(SQLITELIBS)

ifneq ($(MAKECMDGOALS),clean)
Expand Down Expand Up @@ -124,7 +124,6 @@ showbuild:
@echo "FLEXIDIR = $(FLEXIDIR)"
@echo "LIBMODEL = $(LIBMODEL)"
@echo "LIBFLEXI = $(LIBFLEXI)"
@echo "LIBLEGACY = $(LIBLEGACY)"
@echo ""
@echo "# compilation information"
@echo "CXX = $(CXX)"
Expand Down
3 changes: 1 addition & 2 deletions config/Makefile.tower.in
Expand Up @@ -98,7 +98,7 @@ ifneq (,$(findstring yes,$(ENABLE_LOOPTOOLS)$(ENABLE_FFLITE)))
$(TOWER_DEP) $(TOWER_OBJ): CPPFLAGS += $(LOOPFUNCFLAGS)
endif

$(TOWER_EXE): $(TOWER_OBJ) $(LIBMODEL1) $(LIBMODEL2) $(LIBFLEXI) $(LIBLEGACY) $(filter-out -%,$(LOOPFUNCLIBS))
$(TOWER_EXE): $(TOWER_OBJ) $(LIBMODEL1) $(LIBMODEL2) $(LIBFLEXI) $(filter-out -%,$(LOOPFUNCLIBS))
$(CXX) -o $@ $(call abspathx,$^) $(filter -%,$(LOOPFUNCLIBS)) $(GSLLIBS) $(BOOSTTHREADLIBS) $(THREADLIBS) $(LAPACKLIBS) $(BLASLIBS) $(FLIBS) $(SQLITELIBS)

ifneq ($(MAKECMDGOALS),clean)
Expand Down Expand Up @@ -135,7 +135,6 @@ showbuild:
@echo "LIBMODEL1 = $(LIBMODEL1)"
@echo "LIBMODEL2 = $(LIBMODEL2)"
@echo "LIBFLEXI = $(LIBFLEXI)"
@echo "LIBLEGACY = $(LIBLEGACY)"
@echo ""
@echo "# compilation information"
@echo "CXX = $(CXX)"
Expand Down
86 changes: 0 additions & 86 deletions legacy/module.mk

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
28 changes: 26 additions & 2 deletions models/SoftsusyMSSM/module.mk
Expand Up @@ -2,11 +2,35 @@ DIR := models/SoftsusyMSSM
MODNAME := SoftsusyMSSM
WITH_$(MODNAME) := yes

LIBSoftsusyMSSM_HDR := \
$(DIR)/conversion.hpp \
$(DIR)/def.h \
$(DIR)/diagonalization.hpp \
$(DIR)/linalg.h \
$(DIR)/lowe_legacy.h \
$(DIR)/mycomplex.h \
$(DIR)/numerics_legacy.h \
$(DIR)/rge.h \
$(DIR)/rk_legacy.hpp \
$(DIR)/utils.h \
$(DIR)/xpr-base.h \
$(DIR)/xpr-matrix.h \
$(DIR)/xpr-vector.h

LIBSoftsusyMSSM_SRC := \
$(DIR)/conversion.cpp \
$(DIR)/def.cpp \
$(DIR)/diagonalization.cpp \
$(DIR)/linalg.cpp \
$(DIR)/lowe_legacy.cpp \
$(DIR)/mssmUtils.cpp \
$(DIR)/numerics_legacy.cpp \
$(DIR)/physpars.cpp \
$(DIR)/rge.cpp \
$(DIR)/rk_legacy.cpp \
$(DIR)/susy.cpp \
$(DIR)/tensor.cpp
$(DIR)/tensor.cpp \
$(DIR)/utils.cpp

ifneq ($(findstring two_scale,$(ALGORITHMS)),)
LIBSoftsusyMSSM_SRC += \
Expand Down Expand Up @@ -67,7 +91,7 @@ $(LIBSoftsusyMSSM_DEP) $(EXESoftsusyMSSM_DEP) $(LIBSoftsusyMSSM_OBJ) $(EXESoftsu
$(LIBSoftsusyMSSM): $(LIBSoftsusyMSSM_OBJ)
$(MODULE_MAKE_LIB_CMD) $@ $^

$(RUN_SoftsusyMSSM_EXE): $(EXESoftsusyMSSM_OBJ) $(LIBSoftsusyMSSM) $(LIBLEGACY) $(LIBFLEXI) $(filter-out -%,$(LOOPFUNCLIBS))
$(RUN_SoftsusyMSSM_EXE): $(EXESoftsusyMSSM_OBJ) $(LIBSoftsusyMSSM) $(LIBFLEXI) $(filter-out -%,$(LOOPFUNCLIBS))
$(CXX) -o $@ $(call abspathx,$^) $(filter -%,$(LOOPFUNCLIBS)) $(FLIBS)

ALLDEP += $(LIBSoftsusyMSSM_DEP) $(EXESoftsusyMSSM_DEP)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion models/SoftsusyNMSSM/module.mk
Expand Up @@ -74,7 +74,7 @@ $(LIBSoftsusyNMSSM_DEP) $(EXESoftsusyNMSSM_DEP) $(LIBSoftsusyNMSSM_OBJ) $(EXESof
$(LIBSoftsusyNMSSM): $(LIBSoftsusyNMSSM_OBJ)
$(MODULE_MAKE_LIB_CMD) $@ $^

$(RUN_SOFTPOINT_EXE): $(DIR)/run_softpoint.o $(LIBSoftsusyNMSSM) $(LIBSoftsusyMSSM) $(LIBLEGACY) $(LIBFLEXI) $(filter-out -%,$(LOOPFUNCLIBS))
$(RUN_SOFTPOINT_EXE): $(DIR)/run_softpoint.o $(LIBSoftsusyNMSSM) $(LIBSoftsusyMSSM) $(LIBFLEXI) $(filter-out -%,$(LOOPFUNCLIBS))
$(CXX) -o $@ $(call abspathx,$^) $(filter -%,$(LOOPFUNCLIBS)) $(FLIBS)

ALLDEP += $(LIBSoftsusyNMSSM_DEP) $(EXESoftsusyNMSSM_DEP)
Expand Down

0 comments on commit 95b7567

Please sign in to comment.