]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/libAliHLTTrigger.pkg
Flipped the sign of the ideal (uniform Bz) field to follow the same convention as
[u/mrichter/AliRoot.git] / HLT / libAliHLTTrigger.pkg
CommitLineData
3daf4fbc 1#-*- Mode: Makefile -*-
2# $Id$
3
4# This files defines the source and header files for the
5# libAliHLTTrigger library and additional flags for the compilation
6# and linking process. For further information refer to the
7# README.
8
3daf4fbc 9# class header files, the link definition for the root dictionary
10# will be created from the names of the header files
11CLASS_HDRS:= \
1d229444 12 AliHLTTrigger.h \
e2bb8ddd 13 AliHLTGlobalTrigger.h \
52f67e50 14 AliHLTGlobalTriggerConfig.h \
1b9a175e 15 AliHLTGlobalTriggerComponent.h \
cafc1a86 16 AliHLTTriggerBarrelMultiplicity.h \
17 AliHLTTriggerBarrelCosmic.h \
89858ccc 18 AliHLTTriggerAgent.h \
2ff24e4c 19 AliHLTEventSummary.h \
20 AliHLTEventSummaryProducerComponent.h \
21 AliHLTRunSummary.h \
22 AliHLTRunSummaryProducerComponent.h \
1b9a175e 23 AliHLTTriggerSelectiveReadoutComponent.h \
765d85f8 24 AliHLTTriggerMonitoringComponent.h \
f86ecd3e 25 AliHLTTriggerPhosClusterEnergy.h \
495570cd 26 AliHLTTriggerPhosMip.h \
27 AliHLTTriggerTrdClusterMultiplicity.h
2ff24e4c 28
3daf4fbc 29
30# library sources
31MODULE_SRCS:= $(CLASS_HDRS:.h=.cxx)
32
33# library headers
34# in most cases you might have already added all the header files to
35# the CLASS_HDRS variable. So we just use the content of this. You
36# can simply add more header files which don't contain classes with
37# ROOT dictionary support
38MODULE_HDRS:= $(CLASS_HDRS)
39
40# The LinkDef file required by the ROOT dictionary generation can be
41# generated automatically. For the all header files specified in
42# CLASS_HDRS an entry will be generated
43# pragma link C++ class <class-name>+;
44#
45# If the default behavior is not enough, you can provide a custom
46# *LinkDef.h to the MODULE_DHDR variable. Leave MODULE_DHDR empty to
47# enable automatic generation.
5d79eb88 48MODULE_DHDR:= AliHLTTriggerLinkDef.h
3daf4fbc 49
495570cd 50EINCLUDE := HLT/BASE HLT/BASE/util HLT/trigger HLT/TPCLib HLT/TRD TRD
3daf4fbc 51
495570cd 52LIBRARY_DEP := -lHLTbase
abd75f15 53
3daf4fbc 54###############################################################################
55#
56# do not change anything below this line
57#
abd75f15 58include $(MODDIR)/hlt.conf
59
3daf4fbc 60SRCS:=$(patsubst %,trigger/%,$(MODULE_SRCS))
61CINTHDRS:=$(patsubst %,trigger/%,$(CLASS_HDRS))
62HDRS:=$(patsubst %,trigger/%,$(MODULE_HDRS))
63DHDR:=$(patsubst %,trigger/%,$(MODULE_DHDR))
065a34d7 64CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1)
3daf4fbc 65
66EDEFINE := ${HLTDEFS}
67PACKCXXFLAGS := ${HLTCXXFLAGS}
68PACKCFLAGS := ${HLTCLFAGS}
69PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
abd75f15 70PACKSOFLAGS := $(HLTSOFLAGS)