]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/libAliHLTTRD.pkg
initialization of CDB in wrapper interface;added treatment of reconfiguration event
[u/mrichter/AliRoot.git] / HLT / libAliHLTTRD.pkg
index 0d703f83d44d443351b6f01ac88d29c5a8102177..e5d5a2f64fc25d0a44fdaf4bf30fdda53b030430 100644 (file)
@@ -1,35 +1,22 @@
 #-*- Mode: Makefile -*-
-# $Id: 
+# $Id$
+# package definition for the libAliHLTTRD library
 
 include $(MODDIR)/hlt.conf
 
-# This files defines the source and header files for the
-# libAliHLTSample library and additional flags for the compilation
-# and linking process. For further information refer to the 
-# README.
-
-# library sources
-MODULE_SRCS= \
-       AliHLTTRDCalibrationComponent.cxx \
-       AliHLTTRDCalibra.cxx \
-        AliHLTTRDClusterizerComponent.cxx \
-        AliHLTTRDDefinitions.cxx \
-        AliHLTTRDTrackerComponent.cxx \
-        AliTRDclusterizerV1HLT.cxx \
-        AliTRDtriggerHLT.cxx \
-       AliTRDtrackerHLT.cxx
-
 # class header files, the link definition for the root dictionary
 # will be created from the names of the header files
 CLASS_HDRS:= \
-       AliHLTTRDCalibrationComponent.h \
-       AliHLTTRDCalibra.h \
         AliHLTTRDClusterizerComponent.h \
         AliHLTTRDDefinitions.h \
         AliHLTTRDTrackerComponent.h \
-        AliTRDclusterizerV1HLT.h \
-        AliTRDtriggerHLT.h \
-       AliTRDtrackerHLT.h
+        AliTRDclusterizerHLT.h \
+       AliHLTTRDEsdWriterComponent.h \
+       AliHLTTRDCalibrationComponent.h
+
+# library sources
+MODULE_SRCS= \
+       $(CLASS_HDRS:.h=.cxx)
 
 # library headers
 # in most cases you might have already added all the header files to
@@ -38,16 +25,15 @@ CLASS_HDRS:= \
 # ROOT dictionary support
 MODULE_HDRS:=  $(CLASS_HDRS)
 
-# The autotools-based stand-alone built system creates  the LinkDef
-# file required by the ROOT dictionary generation for the all header
-# files specified in CLASS_HDRS.  
-# When creating a ROOT dictionary in AliRoot you must eventually
-# provide a *LinkDef.h file which tells rootcint what to do with the
-# classes. The *LinkDef.h must be added to DHDR in that case.
-# There might be an extension also in ALIROOT which allows to 
-# generate the LinkDef automatically.
-DHDR:=                 TRD/AliHLTTRDLinkDef.h          
-CINTAUTOLINK:=
+# The LinkDef file required by the ROOT dictionary generation can be
+# generated automatically. For the all header files specified in
+# CLASS_HDRS an entry will be generated
+# pragma link C++ class <class-name>+;
+#
+# If the default behavior is not enough, you can provide a custom
+# *LinkDef.h to the MODULE_DHDR variable. Leave MODULE_DHDR empty to
+# enable automatic generation. 
+MODULE_DHDR:=
 
 # extra defines and flags for the AliRoot build system. NOTE: include
 # directories and linking flags/options must be specified in 
@@ -57,7 +43,7 @@ PACKCXXFLAGS := ${HLTCXXFLAGS}
 PACKCFLAGS   := ${HLTCLFAGS}
 PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
 
-EINCLUDE := HLT/BASE HLT/TRD TRD RAW
+EINCLUDE := HLT/BASE HLT/BASE/util HLT/TRD TRD STEER RAW
 
 ###############################################################################
 #
@@ -66,3 +52,5 @@ EINCLUDE := HLT/BASE HLT/TRD TRD RAW
 SRCS:=$(patsubst %,TRD/%,$(MODULE_SRCS))
 CINTHDRS:=$(patsubst %,TRD/%,$(CLASS_HDRS))
 HDRS:=$(patsubst %,TRD/%,$(MODULE_HDRS))
+DHDR:=$(patsubst %,TRD/%,$(MODULE_DHDR))
+CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1)