git://git.uio.no
/
u
/
mrichter
/
AliRoot.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added runhough.cxx.
[u/mrichter/AliRoot.git]
/
HLT
/
programs
/
Makefile
diff --git
a/HLT/programs/Makefile
b/HLT/programs/Makefile
index 94778eb03fa2fe57654a35b1c503da83a7c74089..c33639f4ab93295097170214dd80a2873c08e41a 100644
(file)
--- a/
HLT/programs/Makefile
+++ b/
HLT/programs/Makefile
@@
-59,17
+59,27
@@
DEFSTR += $(EXTRADEF)
CXXFLAGS = -O2 -Wall -ggdb $(EXTRACXXFLAGS) $(INCLUDES)
LDFLAGS = -O2 $(EXTRALDFLAGS) $(LIBS)
CXXFLAGS = -O2 -Wall -ggdb $(EXTRACXXFLAGS) $(INCLUDES)
LDFLAGS = -O2 $(EXTRALDFLAGS) $(LIBS)
-PRGS = runit read speedtest convbin gettransform runvhdlcf
+PRGS = runit read speedtest convbin gettransform runvhdlcf
runhough
all : $(PRGS)
all : $(PRGS)
+#run hough transform on l3 data.
+runhough : runhough.o
+ $(LD) $< $(LDFLAGS) -o $@
+
+#run conventional clusterfinder on altro data
+runvhdlcf : runvhdlcf.o
+ $(LD) $< $(LDFLAGS) -o $@
+
+#run conventional clusterfinder
runit : runit.o
$(LD) $< $(LDFLAGS) -o $@
convbin : ali2raw.o
$(LD) $< $(LDFLAGS) -o $@
runit : runit.o
$(LD) $< $(LDFLAGS) -o $@
convbin : ali2raw.o
$(LD) $< $(LDFLAGS) -o $@
+#read l3 raw data, print it and convert to altro data
read : read.o
$(LD) $< $(LDFLAGS) -o $@
read : read.o
$(LD) $< $(LDFLAGS) -o $@
@@
-86,20
+96,3
@@
speedtest : speedtest.cxx
clean :
rm -f *.o $(PRGS)
clean :
rm -f *.o $(PRGS)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-