1 | ROOTCFLAGS = $(shell /data/packages/root5.34.07/bin/root-config --cflags)
|
---|
2 | ROOTLIBS = $(shell /data/packages/root5.34.07/bin/root-config --libs)
|
---|
3 |
|
---|
4 | MYFASTJET=/data/packages/fastjet3.0.3/bin/fastjet-config --cxxflags --libs --plugins
|
---|
5 | ##############################################################
|
---|
6 |
|
---|
7 | DELPHES = -L/data/packages/Delphes-3.1.2 -lDelphes
|
---|
8 | INCLUDE = -I/data/packages/Delphes-3.1.2
|
---|
9 |
|
---|
10 | #DELPHES = -L/data/packages/delphes3.0.8 -lDelphes
|
---|
11 | #INCLUDE = -I/data/packages/delphes3.0.8
|
---|
12 |
|
---|
13 | ##############################################################
|
---|
14 |
|
---|
15 | all : analysis.cpp
|
---|
16 | g++ -o analysis.exe analysis.cpp -Xlinker --no-as-needed ${ROOTCFLAGS} ${ROOTLIBS} `$(MYFASTJET)` $(DELPHES) $(INCLUDE)
|
---|
17 | # rm *~ *.exe histogram/*~ histogram/hist.root histogram/*.eps
|
---|
18 |
|
---|
19 | ##############################################################
|
---|