]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/libAliHLTTrigger.pkg
adding unit test for AliHLTGlobalBarrelTrack, for the moment it checks the
[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 \
81d62bb4 14 AliHLTGlobalTriggerWrapper.h \
52f67e50 15 AliHLTGlobalTriggerConfig.h \
1b9a175e 16 AliHLTGlobalTriggerComponent.h \
cafc1a86 17 AliHLTTriggerBarrelMultiplicity.h \
c1550d2c 18 AliHLTD0Trigger.h \
19 AliHLTD0toKpi.h \
1340aa42 20 AliHLTD0Candidate.h \
c1550d2c 21 AliHLTTriggerITSMultiplicity.h \
89858ccc 22 AliHLTTriggerAgent.h \
2ff24e4c 23 AliHLTEventSummary.h \
24 AliHLTEventSummaryProducerComponent.h \
25 AliHLTRunSummary.h \
26 AliHLTRunSummaryProducerComponent.h \
765d85f8 27 AliHLTTriggerMonitoringComponent.h \
ce5a42b9 28 AliHLTTriggerCaloClusterEnergy.h \
f86ecd3e 29 AliHLTTriggerPhosClusterEnergy.h \
ce5a42b9 30 AliHLTTriggerEmcalClusterEnergy.h \
495570cd 31 AliHLTTriggerPhosMip.h \
4e199fe2 32 AliHLTTriggerTrdClusterMultiplicity.h \
33 AliHLTTriggerBarrelGeomMultiplicity.h \
fde46e9e 34 AliHLTTriggerDetectorGeom.h \
35 AliHLTTriggerDetectorGeomRectangle.h \
fc2b0c6d 36 AliHLTTriggerDecisionParameters.h \
c1550d2c 37 AliHLTTriggerGammaConversion.h \
38 AliHLTMuonSpectroScalars.h \
4d097162 39 AliHLTMuonSpectroTriggerComponent.h \
e113820f 40 AliHLTUpcTriggerComponent.h \
742ae1c4 41 AliHLTTriggerCounterComponent.h \
e113820f 42 AliHLTTriggerCounters.h
2ff24e4c 43
3daf4fbc 44# library sources
45MODULE_SRCS:= $(CLASS_HDRS:.h=.cxx)
46
47# library headers
48# in most cases you might have already added all the header files to
49# the CLASS_HDRS variable. So we just use the content of this. You
50# can simply add more header files which don't contain classes with
51# ROOT dictionary support
52MODULE_HDRS:= $(CLASS_HDRS)
53
54# The LinkDef file required by the ROOT dictionary generation can be
55# generated automatically. For the all header files specified in
56# CLASS_HDRS an entry will be generated
57# pragma link C++ class <class-name>+;
58#
59# If the default behavior is not enough, you can provide a custom
60# *LinkDef.h to the MODULE_DHDR variable. Leave MODULE_DHDR empty to
61# enable automatic generation.
5d79eb88 62MODULE_DHDR:= AliHLTTriggerLinkDef.h
3daf4fbc 63
c1550d2c 64EINCLUDE := HLT/BASE HLT/BASE/util HLT/trigger HLT/TPCLib HLT/TRD TRD HLT/ITS HLT/MUON MUON
3daf4fbc 65
495570cd 66LIBRARY_DEP := -lHLTbase
abd75f15 67
3daf4fbc 68###############################################################################
69#
70# do not change anything below this line
71#
abd75f15 72include $(MODDIR)/hlt.conf
73
3daf4fbc 74SRCS:=$(patsubst %,trigger/%,$(MODULE_SRCS))
75CINTHDRS:=$(patsubst %,trigger/%,$(CLASS_HDRS))
81d62bb4 76CINTSTUBS:=$(patsubst %,trigger/%,$(STUB_HDRS))
3daf4fbc 77HDRS:=$(patsubst %,trigger/%,$(MODULE_HDRS))
78DHDR:=$(patsubst %,trigger/%,$(MODULE_DHDR))
065a34d7 79CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1)
3daf4fbc 80
81EDEFINE := ${HLTDEFS}
82PACKCXXFLAGS := ${HLTCXXFLAGS}
83PACKCFLAGS := ${HLTCLFAGS}
84PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
abd75f15 85PACKSOFLAGS := $(HLTSOFLAGS)