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