]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGPP/CMakelibPWGPP.pkg
Adding new tasks for tracking efficiency and its related uncertainties to the PWGPP...
[u/mrichter/AliRoot.git] / PWGPP / CMakelibPWGPP.pkg
CommitLineData
85a6eaa6 1# -*- mode: CMake -*-
2
6db31708 3#--------------------------------------------------------------------------------#
2bfe5463 4# Package File for PWGPP #
6db31708 5# Author : Johny Jose (johny.jose@cern.ch) #
6# Variables Defined : #
7# #
8# SRCS - C++ source files #
9# HDRS - C++ header files #
10# DHDR - ROOT Dictionary Linkdef header file #
11# CSRCS - C source files #
12# CHDRS - C header files #
13# EINCLUDE - Include directories #
14# EDEFINE - Compiler definitions #
15# ELIBS - Extra libraries to link #
16# ELIBSDIR - Extra library directories #
17# PACKFFLAGS - Fortran compiler flags for package #
18# PACKCXXFLAGS - C++ compiler flags for package #
19# PACKCFLAGS - C compiler flags for package #
20# PACKSOFLAGS - Shared library linking flags #
21# PACKLDFLAGS - Module linker flags #
22# PACKBLIBS - Libraries to link (Executables only) #
23# EXPORT - Header files to be exported #
24# CINTHDRS - Dictionary header files #
25# CINTAUTOLINK - Set automatic dictionary generation #
26# ARLIBS - Archive Libraries and objects for linking (Executables only) #
27# SHLIBS - Shared Libraries and objects for linking (Executables only) #
28#--------------------------------------------------------------------------------#
29
85a6eaa6 30file ( GLOB SRCS1 "*.cxx" )
31file ( GLOB SRCS2 "global/*.cxx" )
32file ( GLOB SRCS3 "cosmic/*.cxx" )
33file ( GLOB SRCS4 "tender/*.cxx" )
34file ( GLOB SRCS5 "HMPID/*.cxx" )
35file ( GLOB SRCS6 "ITS/*.cxx" )
36file ( GLOB SRCS7 "TRD/*.cxx" )
37file ( GLOB SRCS8 "TPC/*.cxx" )
38file ( GLOB SRCS9 "TOF/*.cxx" )
39file ( GLOB SRCS10 "TRD/info/*.cxx" )
40file ( GLOB SRCS11 "background/*.cxx" )
41file ( GLOB SRCS12 "Centrality/*.cxx" )
42file ( GLOB SRCS13 "ZDC/*.cxx" )
43file ( GLOB SRCS14 "T0/*.cxx" )
6a9e696e 44file ( GLOB SRCS15 "VZERO/*PbPb.cxx" )
4b770302 45file ( GLOB SRCS16 "EvTrkSelection/*.cxx" )
6db31708 46
85a6eaa6 47list ( APPEND SRCS
48 ${SRCS1}
49 ${SRCS2}
50 ${SRCS3}
51 ${SRCS4}
52 ${SRCS5}
53 ${SRCS6}
54 ${SRCS7}
55 ${SRCS8}
56 ${SRCS9}
57 ${SRCS10}
58 ${SRCS11}
59 ${SRCS12}
60 ${SRCS13}
61 ${SRCS14}
6a9e696e 62 ${SRCS15}
4b770302 63 ${SRCS16}
85a6eaa6 64 )
6db31708 65
66string ( REPLACE ".cxx" ".h" HDRS "${SRCS}" )
67
2bfe5463 68set ( DHDR PWGPPLinkDef.h)
6db31708 69
d0bcc11e 70set ( EINCLUDE
85a6eaa6 71 TPC
eac97971 72 TPC/Base
73 TPC/Sim
74 TPC/Rec
85a6eaa6 75 ITS
76 TRD
77 TOF
78 TRD/Cal
7de42bf5 79 TRD/info
85a6eaa6 80 ANALYSIS/Tender
dba094ca 81 ANALYSIS
82 PWG/CaloTrackCorrBase
2bfe5463 83 PWGPP/comparison
84 PWGPP/cosmic
85 PWGPP/global
86 PWGPP/tender
87 PWGPP/ITS
88 PWGPP/TPC
89 PWGPP/TOF
90 PWGPP/TRD
91 PWGPP/TRD/info
92 PWGPP/background
93 PWGPP/Centrality
4b770302 94 PWGPP/EvTrkSelection
85a6eaa6 95 HMPID
2bfe5463 96 PWGPP/ZDC
97 PWGPP/T0
98 PWGPP/VZERO
7330f0e5 99 STEER/STEER
100 STEER/AOD
101 STEER/CDB
102 STEER/ESD
103 STEER/STEERBase
85a6eaa6 104 )
71d5ee50 105
106# install macros as needed
107install ( DIRECTORY macros
108 DESTINATION PWGPP
109 PATTERN ".d" EXCLUDE
110 PATTERN ".so" EXCLUDE)
111install ( DIRECTORY PilotTrain
112 DESTINATION PWGPP/
113 PATTERN ".d" EXCLUDE
114 PATTERN ".so" EXCLUDE)
115install ( FILES HMPID/AddTaskHmpidQA.C
116 DESTINATION PWGPP/HMPID)
117install ( FILES T0/AddTaskT0QA.C
118 DESTINATION PWGPP/T0)
119install ( FILES TOF/AddTaskTOFQA.C
120 DESTINATION PWGPP/TOF)
121install ( DIRECTORY TPC/macros
122 DESTINATION PWGPP/TPC
123 PATTERN ".C")
124install ( DIRECTORY TRD
125 DESTINATION PWGPP)
126install ( FILES ZDC/AddTaskZDCQA.C
127 DESTINATION PWGPP/ZDC)
128install ( FILES PilotTrain/AddTaskMuonQA.C
129 DESTINATION PWGPP/PilotTrain/ )
130
131
132#
133# EOF
134#
135