deleted: Armory/README.md modified: Calibration.C Sudarsan pointed out that the gain match and calibration stages have the ring and wedge swapped, so I fixed that. modified: ProcessRun.sh changes for running on laptop modified: TrackRecon.C same inconsistency as in Calibration.C fixed deleted: makeplots.C not used anymore modified: mapping.h corrected teh mapping for the QQQs poptentially, need to confirm modified: mapping_old.txt
33 lines
977 B
Makefile
33 lines
977 B
Makefile
########################################################################
|
|
#
|
|
#
|
|
#########################################################################
|
|
|
|
CC = g++
|
|
|
|
#COPTS = -fPIC -DLINUX -O2 -std=c++17 -lpthread
|
|
COPTS = -fPIC -DLINUX -g -O0 -Wall -std=c++17 -lpthread
|
|
|
|
ROOTLIBS = `root-config --cflags --glibs`
|
|
|
|
ALL = Mapper EventBuilder#AnasenMS
|
|
|
|
#########################################################################
|
|
|
|
all : $(ALL)
|
|
|
|
clean :
|
|
/bin/rm -f $(OBJS) $(ALL)
|
|
|
|
Mapper : Mapper.cpp ../mapping.h ClassDet.h
|
|
@echo "--------- making Mapper"
|
|
$(CC) $(COPTS) -o Mapper Mapper.cpp $(ROOTLIBS)
|
|
|
|
# AnasenMS : constant.h Isotope.h ClassTransfer.h ClassSX3.h ClassPW.h ClassAnasen.h anasenMS.cpp
|
|
# @echo "--------- making ANASEN Monte Carlo"
|
|
# $(CC) $(COPTS) -o AnasenMS anasenMS.cpp $(ROOTLIBS)
|
|
|
|
EventBuilder : EventBuilder.cpp ../ClassData.h fsuReader.h ../Hit.h
|
|
@echo "--------- making EventBuilder"
|
|
$(CC) $(COPTS) -o EventBuilder EventBuilder.cpp $(ROOTLIBS)
|