Added new subdirectory (analysis package) "musrSimAna". This is a general analysis program that allows one to plot histograms out of the simulated trees. The detector setup of the veto and coincidence relations with the positron/muon counters is defined in *.v1190 files. Also the histograms that should be plotted/saved are defined in this file. Thus (at least in principle) the user does not need to write an analysis program dedicated for his/her instrument. One just needs to modify the *.v1190 file. The "musrSimAna" is still in the development phase, no documentation is available at this stage.
21 lines
650 B
Makefile
21 lines
650 B
Makefile
#include /home/daquser/temp/SctRodDaq/build/Makefile.include
|
|
#include /home/daquser/temp/SctRodDaq/build/Makefile.commands
|
|
#
|
|
#
|
|
CPP=g++
|
|
#CPPFLAGS= -I$(ROOTSYS)/include -I/userdisk/sedlak/myLCG/CondDBMySQL_new/CondDBMySQL/include -I/usr/include/mysql
|
|
#LDFLAGS= $(shell root-config --glibs) -L/userdisk/sedlak/myLCG/CondDBMySQL_new/CondDBMySQL/src/.libs -lconddb -L/usr/lib/mysql -lmysqlclient
|
|
CPPFLAGS= -I$(ROOTSYS)/include
|
|
LDFLAGS= $(shell root-config --glibs) -lMinuit
|
|
|
|
all: musrRoot
|
|
|
|
%.o:%.cxx
|
|
$(CPP) -c $(CPPFLAGS) $^
|
|
|
|
musrRoot: musrSimAna.o musrAnalysis.o musrCounter.o musrTH.o
|
|
$(CPP) -o musrSimAna $(LDFLAGS) $^
|
|
|
|
clean:
|
|
-rm -f *.o musrSimAna
|