2021-12-07 18:33:21 -05:00
|
|
|
CC=g++
|
|
|
|
|
2021-12-17 18:36:12 -05:00
|
|
|
#all: xia2root xia2ev2_nopart pixie2root scan pxi-time-order
|
2021-12-20 17:26:48 -05:00
|
|
|
#all: xia2root xia2ev2_nopart pixie2root scan evt2root evt2hist
|
2021-12-21 19:43:24 -05:00
|
|
|
all: xia2root pixie2root evt2root evt2hist pxi-time-order
|
2021-12-07 18:33:21 -05:00
|
|
|
|
2021-12-20 17:26:48 -05:00
|
|
|
#this is FSU evt to root
|
|
|
|
xia2root: armory/xia2root.cpp
|
|
|
|
$(CC) armory/xia2root.cpp -o xia2root `root-config --cflags --glibs`
|
2021-12-07 18:33:21 -05:00
|
|
|
|
2021-12-20 17:26:48 -05:00
|
|
|
#xia2ev2_nopart: armory/xia2ev2_nopart.cpp
|
|
|
|
# $(CC) armory/xia2ev2_nopart.cpp -o xia2ev2_nopart
|
2021-12-14 10:35:05 -05:00
|
|
|
|
2021-12-20 17:26:48 -05:00
|
|
|
#this is for eventbuild
|
|
|
|
pixie2root: armory/pixie2root.cpp
|
|
|
|
$(CC) armory/pixie2root.cpp -o pixie2root `root-config --cflags --glibs`
|
2021-12-14 10:35:05 -05:00
|
|
|
|
2021-12-20 17:26:48 -05:00
|
|
|
#this is for online root
|
|
|
|
evt2root: armory/evt2root.cpp
|
|
|
|
$(CC) armory/evt2root.cpp -o evt2root `root-config --cflags --glibs`
|
2021-12-17 18:36:12 -05:00
|
|
|
|
2021-12-20 17:26:48 -05:00
|
|
|
#this is for online spectrums
|
|
|
|
evt2hist: armory/evt2hist.cpp
|
|
|
|
$(CC) armory/evt2hist.cpp -o evt2hist `root-config --cflags --glibs`
|
2021-12-14 20:39:20 -05:00
|
|
|
|
2021-12-21 19:43:24 -05:00
|
|
|
pxi-time-order: armory/pxi-time-order.c
|
|
|
|
$(CC) armory/pxi-time-order.c -o pxi-time-order
|