Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
c29613e
first try
Mingze129 Aug 4, 2025
2800c82
data should be fine but mc....
Mingze129 Aug 4, 2025
c67f901
data and Reco Mc only
Mingze129 Aug 5, 2025
516243c
Please consider the following formatting changes
alibuild Aug 5, 2025
0eab99f
Merge pull request #20 from alibuild/alibot-cleanup-12436
Mingze129 Aug 5, 2025
ad676a6
update
Mingze129 Aug 5, 2025
7a6fb05
updating jet derived data producer
Mingze129 Aug 5, 2025
62e108d
fixing O2 Linter error
Mingze129 Aug 5, 2025
9720849
update
Mingze129 Aug 5, 2025
775dbbe
update
Mingze129 Aug 5, 2025
745c58a
change the name of main struct
Mingze129 Aug 5, 2025
4595da2
update
Mingze129 Aug 5, 2025
48805af
minor enhancement
Mingze129 Aug 6, 2025
296fcfb
minor enhancement
Mingze129 Aug 6, 2025
5828969
Please consider the following formatting changes
alibuild Aug 6, 2025
cabff5f
Merge pull request #21 from alibuild/alibot-cleanup-12436
Mingze129 Aug 6, 2025
6d359d1
minor update
Mingze129 Aug 21, 2025
77f9bea
using existing constant
Mingze129 Aug 22, 2025
4c52432
Update PWGHF/HFJ/Tasks/taskDstarPolarisationInJet.cxx
Mingze129 Sep 5, 2025
59da246
update
Mingze129 Sep 5, 2025
963cb8f
Please consider the following formatting changes
alibuild Sep 5, 2025
c828e74
Merge pull request #22 from alibuild/alibot-cleanup-12436
Mingze129 Sep 5, 2025
427f3ca
update
Mingze129 Sep 5, 2025
ce1b31b
update
Mingze129 Sep 5, 2025
349f5bf
update
Mingze129 Sep 8, 2025
6f2df99
update
Mingze129 Sep 8, 2025
f76894e
new update
Mingze129 Oct 27, 2025
9878b6a
use lowerCamelCase
Mingze129 Oct 27, 2025
a04eb65
Please consider the following formatting changes
alibuild Oct 27, 2025
28bb7de
Merge pull request #23 from alibuild/alibot-cleanup-12436
Mingze129 Oct 27, 2025
be51264
Merge branch 'master' into jetdstar
Mingze129 Oct 29, 2025
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
6 changes: 6 additions & 0 deletions PWGHF/DataModel/DerivedTables.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
{ \
namespace der_##_hf_namespace_ \
{ \
DECLARE_SOA_ARRAY_INDEX_COLUMN_CUSTOM(Hf##_hf_type_##CollBase, hfCollBases, "HF" _hf_description_ "COLLBASES"); /* o2-linter: disable=name/o2-column (unified getter) */ \

Check failure on line 96 in PWGHF/DataModel/DerivedTables.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-column]

Use UpperCamelCase for names of O2 columns and matching lowerCamelCase names for their getters.
} \
} \
DECLARE_SOA_TABLE_STAGED(Hf##_hf_type_##McCollBases, "HF" _hf_description_ "MCCOLLBASE", \
Expand Down Expand Up @@ -170,7 +170,7 @@
{ \
namespace der_##_hf_namespace_ \
{ \
DECLARE_SOA_INDEX_COLUMN_CUSTOM(Hf##_hf_type_##CollBase, hfCollBase, "HF" _hf_description_ "COLLBASES"); /* o2-linter: disable=name/o2-column (unified getter) */ \

Check failure on line 173 in PWGHF/DataModel/DerivedTables.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-column]

Use UpperCamelCase for names of O2 columns and matching lowerCamelCase names for their getters.
} \
} \
\
Expand Down Expand Up @@ -242,7 +242,7 @@
{ \
namespace der_##_hf_namespace_ \
{ \
DECLARE_SOA_INDEX_COLUMN_CUSTOM(Hf##_hf_type_##McCollBase, hfMcCollBase, "HF" _hf_description_ "MCCOLLBASES"); /* o2-linter: disable=name/o2-column (unified getter) */ \

Check failure on line 245 in PWGHF/DataModel/DerivedTables.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-column]

Use UpperCamelCase for names of O2 columns and matching lowerCamelCase names for their getters.
} \
} \
DECLARE_SOA_TABLE_STAGED(Hf##_hf_type_##PBases, "HF" _hf_description_ "PBASE", \
Expand Down Expand Up @@ -356,6 +356,9 @@
DECLARE_SOA_COLUMN(RSecondaryVertex, rSecondaryVertex, float); //! distance of the secondary vertex from the z axis
// D*± → D0(bar) π±
DECLARE_SOA_COLUMN(SignProng1, signProng1, int8_t);
DECLARE_SOA_COLUMN(AbsEtaTrackMin, absEtaTrackMin, float);
DECLARE_SOA_COLUMN(NumItsClsMin, numItsClsMin, int);
DECLARE_SOA_COLUMN(NumTpcClsMin, numTpcClsMin, int);
// TOF
DECLARE_SOA_COLUMN(NSigTofKa0, nSigTofKa0, float);
DECLARE_SOA_COLUMN(NSigTofKa1, nSigTofKa1, float);
Expand Down Expand Up @@ -963,6 +966,9 @@
hf_cand_par::NSigTpcPi1,
hf_cand_par::NSigTofPi1,
hf_cand_par::NSigTpcTofPi1,
hf_cand_par::AbsEtaTrackMin,
hf_cand_par::NumItsClsMin,
hf_cand_par::NumTpcClsMin,
o2::soa::Marker<MarkerDstar>);

DECLARE_SOA_TABLE_STAGED(HfDstarParD0s, "HFDSTPARD0", //! Table with candidate properties used for selection
Expand Down
4 changes: 3 additions & 1 deletion PWGHF/HFJ/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@
#
# 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.
# or submit itself to any jurisdiction.

add_subdirectory(Tasks)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think in the end the new task should go in the PWGJE directory, since it's input are JE tables.

17 changes: 17 additions & 0 deletions PWGHF/HFJ/Tasks/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright 2019-2020 CERN and copyright holders of ALICE O2.
# See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
# All rights not expressly granted are reserved.
#
# This software is distributed under the terms of the GNU General Public
# License v3 (GPL Version 3), copied verbatim in the file "COPYING".
#
# 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.

o2physics_add_dpl_workflow(task-dstar-polarisation-in-jet
SOURCES taskDstarPolarisationInJet.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::PWGJECore O2Physics::AnalysisCore
COMPONENT_NAME Analysis)

include_directories(${CMAKE_CURRENT_SOURCE_DIR}/PWGJE/Core)
Loading
Loading