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