-
Notifications
You must be signed in to change notification settings - Fork 496
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
42 lines (36 loc) · 1.94 KB
/
CMakeLists.txt
File metadata and controls
42 lines (36 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright CERN and copyright holders of ALICE O2. This software is distributed
# under the terms of the GNU General Public License v3 (GPL Version 3), copied
# verbatim in the file "COPYING".
#
# See http://alice-o2.web.cern.ch/license for full licensing information.
#
# In applying this license CERN does not waive the privileges and immunities
# granted to it by virtue of its status as an Intergovernmental Organization or
# submit itself to any jurisdiction.
o2_add_library(AnalysisDataModel
SOURCES src/ParamBase.cxx
PRIVATE_INCLUDE_DIRECTORIES ${CMAKE_CURRENT_LIST_DIR}/src
PUBLIC_LINK_LIBRARIES O2::Framework O2::ReconstructionDataFormats O2::TPCSimulation
)
o2_target_root_dictionary(AnalysisDataModel
HEADERS include/AnalysisDataModel/PID/ParamBase.h
include/AnalysisDataModel/PID/DetectorResponse.h
include/AnalysisDataModel/PID/PIDTOF.h
include/AnalysisDataModel/PID/TOFReso.h
include/AnalysisDataModel/PID/PIDTPC.h
include/AnalysisDataModel/PID/BetheBloch.h
include/AnalysisDataModel/PID/TPCReso.h
LINKDEF src/AnalysisDataModelLinkDef.h
)
o2_add_executable(aod-data-model-graph
SOURCES src/aodDataModelGraph.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore
)
o2_add_executable(pidparam-tpc-bethe-bloch
SOURCES src/handleParamTPCBetheBloch.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel
)
o2_add_executable(pidparam-tof-reso
SOURCES src/handleParamTOFReso.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel
)