]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/libAliHLTTRD.pkg
bugfix: only increment CTP counters for data events, skip for SOD and EOD
[u/mrichter/AliRoot.git] / HLT / libAliHLTTRD.pkg
1 #-*- Mode: Makefile -*-
2 # $Id$
3 # package definition for the libAliHLTTRD library
4
5 # class header files, the link definition for the root dictionary
6 # will be created from the names of the header files
7 CLASS_HDRS:= \
8         AliHLTTRDClusterizerComponent.h \
9         AliHLTTRDDefinitions.h \
10         AliHLTTRDTrackerV1Component.h \
11         AliHLTTRDClusterizer.h \
12         AliHLTTRDEsdWriterComponent.h \
13         AliHLTTRDCalibrationComponent.h \
14         AliHLTTRDCluster.h \
15         AliHLTTRDTracklet.h \
16         AliHLTTRDTrack.h \
17         AliHLTTRDAgent.h \
18         AliHLTTRDUtils.h \
19         AliHLTTRDClusterHistoComponent.h
20
21 # library sources
22 MODULE_SRCS= \
23         $(CLASS_HDRS:.h=.cxx)
24
25 # library headers
26 # in most cases you might have already added all the header files to
27 # the CLASS_HDRS variable. So we just use the content of this. You
28 # can simply add more header files which don't contain classes with
29 # ROOT dictionary support
30 MODULE_HDRS:= \
31         AliHLTTRDTrackletWordArray.h \
32         $(CLASS_HDRS)
33
34 # The LinkDef file required by the ROOT dictionary generation can be
35 # generated automatically. For the all header files specified in
36 # CLASS_HDRS an entry will be generated
37 # pragma link C++ class <class-name>+;
38 #
39 # If the default behavior is not enough, you can provide a custom
40 # *LinkDef.h to the MODULE_DHDR variable. Leave MODULE_DHDR empty to
41 # enable automatic generation. 
42 MODULE_DHDR:=
43
44 EINCLUDE := HLT/BASE HLT/BASE/util HLT/TRD TRD STEER RAW
45
46 LIBRARY_DEP := -lHLTbase -lAliHLTUtil -lESD -lCDB -lTRDrec -lTRDbase \
47                -lSTEER -lSTEERBase -lRAWDatarec
48
49 ###############################################################################
50 #
51 # do not change anything below this line
52 #
53 include $(MODDIR)/hlt.conf
54
55 SRCS:=$(patsubst %,TRD/%,$(MODULE_SRCS))
56 CINTHDRS:=$(patsubst %,TRD/%,$(CLASS_HDRS))
57 HDRS:=$(patsubst %,TRD/%,$(MODULE_HDRS))
58 DHDR:=$(patsubst %,TRD/%,$(MODULE_DHDR))
59 CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1)
60
61 EDEFINE      := ${HLTDEFS}
62 PACKCXXFLAGS := ${HLTCXXFLAGS}
63 PACKCFLAGS   := ${HLTCLFAGS}
64 PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
65 PACKSOFLAGS  := $(HLTSOFLAGS)