Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions Analysis/Tasks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ add_subdirectory(PWGCF)
add_subdirectory(PWGDQ)
add_subdirectory(PWGHF)
add_subdirectory(PWGLF)
add_subdirectory(PWGUD)

o2_add_dpl_workflow(trackselection
SOURCES trackselection.cxx
Expand Down Expand Up @@ -56,11 +57,6 @@ o2_add_dpl_workflow(jetfinder
COMPONENT_NAME Analysis)
endif()

o2_add_dpl_workflow(upc-an
SOURCES upcAnalysis.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsBase
COMPONENT_NAME Analysis)

o2_add_dpl_workflow(event-selection
SOURCES eventSelection.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsBase O2::CCDB
Expand Down Expand Up @@ -109,4 +105,4 @@ o2_add_dpl_workflow(run2-matcher
o2_add_dpl_workflow(run3-matcher
SOURCES run3Matcher.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsBase O2::AnalysisDataModel
COMPONENT_NAME Analysis)
COMPONENT_NAME Analysis)
14 changes: 14 additions & 0 deletions Analysis/Tasks/PWGUD/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# 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_dpl_workflow(upc-an
SOURCES upcAnalysis.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsBase
COMPONENT_NAME Analysis)
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,8 @@ struct UPCAnalysis {
bool checkFDD = col.bbFDA() || col.bbFDC() || col.bgFDA() || col.bgFDC();
if (checkFDD)
return;
// TODO:
// Add trigger class check
// if (!col.alias()[kCUP9])
// return;
if (!col.alias()[kCUP9])
return;
std::vector<soa::Join<aod::Tracks, aod::TracksExtra, aod::TrackSelection>::iterator> selTracks;
for (auto track : tracks) {
if (!track.isGlobalTrack())
Expand Down