From: loizides Date: Thu, 11 Jul 2002 11:30:31 +0000 (+0000) Subject: Added runhough.cxx. X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=7437431ce6aab6648a5e28704e223fe7123e2c25;hp=e0c2b115a1ffe40aa5c63986e0e04d76cb90f224 Added runhough.cxx. --- 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) - - - - - - - - - - - - - - - - -