]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Added runhough.cxx.
authorloizides <loizides@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 11 Jul 2002 11:30:31 +0000 (11:30 +0000)
committerloizides <loizides@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 11 Jul 2002 11:30:31 +0000 (11:30 +0000)
HLT/programs/Makefile

index 94778eb03fa2fe57654a35b1c503da83a7c74089..c33639f4ab93295097170214dd80a2873c08e41a 100644 (file)
@@ -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)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-