From 7437431ce6aab6648a5e28704e223fe7123e2c25 Mon Sep 17 00:00:00 2001 From: loizides Date: Thu, 11 Jul 2002 11:30:31 +0000 Subject: [PATCH 1/1] Added runhough.cxx. --- HLT/programs/Makefile | 29 +++++++++++------------------ 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/HLT/programs/Makefile b/HLT/programs/Makefile index 94778eb03fa..c33639f4ab9 100644 --- a/HLT/programs/Makefile +++ b/HLT/programs/Makefile @@ -59,17 +59,27 @@ DEFSTR += $(EXTRADEF) 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) +#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 $@ +#read l3 raw data, print it and convert to altro data read : read.o $(LD) $< $(LDFLAGS) -o $@ @@ -86,20 +96,3 @@ speedtest : speedtest.cxx clean : rm -f *.o $(PRGS) - - - - - - - - - - - - - - - - - -- 2.31.1