Skip to content
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
19 changes: 10 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,16 @@ FRETALON_LIBS := $(addprefix $(LB)/,$(notdir $(FRETALON_CXX_FILES:.cxx=.
FRETALON_DEP_FILES := $(FRETALON_LIBS:.o=.d)

# Nuclearizer library
NUCLEARIZER := $(TOPLEVEL)
NUCLEARIZER_DIR := $(NUCLEARIZER)
NUCLEARIZER_PRG := $(BN)/nuclearizer
NUCLEARIZER_CXX_MAIN := $(NUCLEARIZER_DIR)/src/MNuclearizerMain.cxx
NUCLEARIZER_CXX_FILES := $(wildcard $(NUCLEARIZER_DIR)/src/*.cxx)
NUCLEARIZER_CXX_FILES := $(filter-out $(NUCLEARIZER_CXX_MAIN) $(NUCLEARIZER_DIR)/src/MModuleTemplate.cxx,$(NUCLEARIZER_CXX_FILES))
NUCLEARIZER_LIBS := $(addprefix $(LB)/,$(notdir $(NUCLEARIZER_CXX_FILES:.cxx=.o)))
NUCLEARIZER_DEP_FILES := $(NUCLEARIZER_LIBS:.o=.d)
NUCLEARIZER_H_FILES := $(addprefix $(NUCLEARIZER)/include/,$(notdir $(NUCLEARIZER_LIBS:.o=.h)))
NUCLEARIZER := $(TOPLEVEL)
NUCLEARIZER_DIR := $(NUCLEARIZER)
NUCLEARIZER_PRG := $(BN)/nuclearizer
NUCLEARIZER_CXX_MAIN := $(NUCLEARIZER_DIR)/src/MNuclearizerMain.cxx
NUCLEARIZER_CXX_FILTERED := $(NUCLEARIZER_CXX_MAIN) $(NUCLEARIZER_DIR)/src/MModuleTemplate.cxx $(NUCLEARIZER_DIR)/src/MDetectorEffectsEngineSingleDet.cxx $(NUCLEARIZER_DIR)/src/MDetectorEffectsEngineSMEX.cxx $(NUCLEARIZER_DIR)/src/MModuleLoaderSimulationsSingleDet.cxx $(NUCLEARIZER_DIR)/src/MModuleLoaderSimulationsSMEX.cxx $(NUCLEARIZER_DIR)/src/MGUIOptionsLoaderSimulations.cxx
NUCLEARIZER_CXX_FILES := $(wildcard $(NUCLEARIZER_DIR)/src/*.cxx)
NUCLEARIZER_CXX_FILES := $(filter-out $(NUCLEARIZER_CXX_FILTERED),$(NUCLEARIZER_CXX_FILES))
NUCLEARIZER_LIBS := $(addprefix $(LB)/,$(notdir $(NUCLEARIZER_CXX_FILES:.cxx=.o)))
NUCLEARIZER_DEP_FILES := $(NUCLEARIZER_LIBS:.o=.d)
NUCLEARIZER_H_FILES := $(addprefix $(NUCLEARIZER)/include/,$(notdir $(NUCLEARIZER_LIBS:.o=.h)))

# Nuclearizer dictionary
NUCLEARIZER_DICT_NAME=Nuclearizer_Dictionary
Expand Down
4 changes: 0 additions & 4 deletions src/MAssembly.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ using namespace std;
#include "MModule.h"
#include "MGUIExpoCombinedViewer.h"
#include "MModuleTransmitterRealta.h"
#include "MModuleLoaderSimulationsSMEX.h"
#include "MModuleLoaderSimulationsSingleDet.h"
#include "MModuleLoaderSimulationsCosima.h"
#include "MModuleLoaderMeasurementsROA.h"
#include "MModuleLoaderMeasurementsHDF.h"
Expand Down Expand Up @@ -123,8 +121,6 @@ MAssembly::MAssembly()

m_Supervisor->UseMultiThreading(true);

m_Supervisor->AddAvailableModule(new MModuleLoaderSimulationsSMEX());
m_Supervisor->AddAvailableModule(new MModuleLoaderSimulationsSingleDet());
m_Supervisor->AddAvailableModule(new MModuleLoaderSimulationsCosima());
m_Supervisor->AddAvailableModule(new MModuleLoaderMeasurementsROA());
m_Supervisor->AddAvailableModule(new MModuleLoaderMeasurementsHDF());
Expand Down
Loading