Skip to content

Commit 55d5d5e

Browse files
[PWGLF] Add missing converters to the CMakeLists.txt (#14211)
Co-authored-by: ALICE Action Bot <alibuild@cern.ch>
1 parent 420b113 commit 55d5d5e

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed

PWGLF/TableProducer/Strangeness/Converters/CMakeLists.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
# granted to it by virtue of its status as an Intergovernmental Organization
1010
# or submit itself to any jurisdiction.
1111

12+
o2physics_add_dpl_workflow(stradautracksconverter
13+
SOURCES stradautracksconverter.cxx
14+
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
15+
COMPONENT_NAME Analysis)
16+
1217
o2physics_add_dpl_workflow(stradautrackstpcpidconverter
1318
SOURCES stradautrackstpcpidconverter.cxx
1419
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
@@ -24,6 +29,11 @@ o2physics_add_dpl_workflow(stradautrackstofpidconverter2
2429
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
2530
COMPONENT_NAME Analysis)
2631

32+
o2physics_add_dpl_workflow(stradautracksextraconverter
33+
SOURCES stradautracksextraconverter.cxx
34+
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
35+
COMPONENT_NAME Analysis)
36+
2737
o2physics_add_dpl_workflow(stradautracksextraconverter2
2838
SOURCES stradautracksextraconverter2.cxx
2939
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore

PWGLF/TableProducer/Strangeness/Converters/stradautracksconverter.cxx

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,28 @@
88
// In applying this license CERN does not waive the privileges and immunities
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
11-
#include "Framework/runDataProcessing.h"
12-
#include "Framework/AnalysisTask.h"
13-
#include "Framework/AnalysisDataModel.h"
14-
#include "PWGLF/DataModel/LFStrangenessTables.h"
11+
//
12+
/// \file stradautracksconverter.cxx
13+
/// \brief Converter for producing table aod::DauTrackTOFPIDs_000 from aod::V0TOFs and aod::CascTOFs tables
14+
///
15+
/// \author David Dobrigkeit Chinellato <david.dobrigkeit.chinellato@cern.ch>, Austrian Academy of Sciences & SMI
16+
/// \author Romain Schotter <romain.schotter@cern.ch>, Austrian Academy of Sciences & SMI
17+
//
18+
1519
#include "PWGLF/DataModel/LFStrangenessPIDTables.h"
20+
#include "PWGLF/DataModel/LFStrangenessTables.h"
21+
22+
#include "Framework/AnalysisDataModel.h"
23+
#include "Framework/AnalysisTask.h"
24+
#include "Framework/runDataProcessing.h"
25+
26+
#include <vector>
1627

1728
using namespace o2;
1829
using namespace o2::framework;
1930

20-
// Converts V0 version 001 to 002
2131
struct stradautracksconverter {
22-
Produces<aod::DauTrackTOFPIDs> dautracktofpids;
32+
Produces<aod::DauTrackTOFPIDs_000> dautracktofpids;
2333

2434
void process(soa::Join<aod::V0Cores, aod::V0Extras, aod::V0TOFs> const& v0s, soa::Join<aod::CascCores, aod::CascExtras, aod::CascTOFs> const& cascs, aod::DauTrackExtras const& dauTracks)
2535
{

0 commit comments

Comments
 (0)