Skip to content

Commit 624b326

Browse files
authored
[PWGCF] Add pi-triton femto in HadNucleiFemto.cxx and a new workflow in Tasks for pi-d systematics (#17260)
1 parent 287abed commit 624b326

5 files changed

Lines changed: 1199 additions & 48 deletions

File tree

PWGCF/Femto/FemtoNuclei/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@
1010
# or submit itself to any jurisdiction.
1111

1212
add_subdirectory(TableProducer)
13+
add_subdirectory(Tasks)
14+

PWGCF/Femto/FemtoNuclei/DataModel/HadronNucleiTables.h

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,15 @@ DECLARE_SOA_COLUMN(InnerParamTPCNu, innerParamTPCNu, float);
5050
DECLARE_SOA_COLUMN(SignalTPCHad, signalTPCHad, float);
5151
DECLARE_SOA_COLUMN(InnerParamTPCHad, innerParamTPCHad, float);
5252
DECLARE_SOA_COLUMN(NClsTPCNu, nClsTPCNu, uint8_t);
53+
DECLARE_SOA_COLUMN(NClsTPCHad, nClsTPCHad, uint8_t);
54+
DECLARE_SOA_COLUMN(NCrossedRowsTPCNu, nCrossedRowsTPCNu, uint8_t);
55+
DECLARE_SOA_COLUMN(NCrossedRowsTPCHad, nCrossedRowsTPCHad, uint8_t);
5356
DECLARE_SOA_COLUMN(NSigmaTPCNu, nSigmaTPCNu, float);
5457
DECLARE_SOA_COLUMN(NSigmaTPCHad, nSigmaTPCHad, float);
58+
DECLARE_SOA_COLUMN(NSigmaTOFNu, nSigmaTOFNu, float);
59+
DECLARE_SOA_COLUMN(NSigmaITSNu, nSigmaITSNu, float);
60+
DECLARE_SOA_COLUMN(NSigmaTOFHad, nSigmaTOFHad, float);
61+
DECLARE_SOA_COLUMN(NSigmaITSHad, nSigmaITSHad, float);
5562
DECLARE_SOA_COLUMN(NSigmaTPCHadPi, nSigmaTPCHadPi, float);
5663
DECLARE_SOA_COLUMN(NSigmaTPCHadKa, nSigmaTPCHadKa, float);
5764
DECLARE_SOA_COLUMN(NSigmaTPCHadPr, nSigmaTPCHadPr, float);
@@ -73,6 +80,9 @@ DECLARE_SOA_COLUMN(ItsClusterSizeHad, itsClusterSizeHad, uint32_t);
7380
DECLARE_SOA_COLUMN(SharedClustersNu, sharedClustersNu, uint8_t);
7481
DECLARE_SOA_COLUMN(SharedClustersHad, sharedClustersHad, uint8_t);
7582

83+
DECLARE_SOA_COLUMN(DeltaEta, deltaEta, float);
84+
DECLARE_SOA_COLUMN(DeltaPhi, deltaPhi, float);
85+
7686
DECLARE_SOA_COLUMN(IsBkgUS, isBkgUS, bool);
7787
DECLARE_SOA_COLUMN(IsBkgEM, isBkgEM, bool);
7888

@@ -101,6 +111,9 @@ DECLARE_SOA_TABLE(HadronNucleiTable, "AOD", "HADNUCLEITABLE",
101111
hadron_nuclei_tables::SignalTPCHad,
102112
hadron_nuclei_tables::InnerParamTPCHad,
103113
hadron_nuclei_tables::NClsTPCNu,
114+
hadron_nuclei_tables::NClsTPCHad,
115+
hadron_nuclei_tables::NCrossedRowsTPCNu,
116+
hadron_nuclei_tables::NCrossedRowsTPCHad,
104117
hadron_nuclei_tables::NSigmaTPCNu,
105118
hadron_nuclei_tables::NSigmaTPCHadPi,
106119
hadron_nuclei_tables::NSigmaTPCHadKa,
@@ -117,7 +130,14 @@ DECLARE_SOA_TABLE(HadronNucleiTable, "AOD", "HADNUCLEITABLE",
117130
hadron_nuclei_tables::ItsClusterSizeNu,
118131
hadron_nuclei_tables::ItsClusterSizeHad,
119132
hadron_nuclei_tables::SharedClustersNu,
120-
hadron_nuclei_tables::SharedClustersHad)
133+
hadron_nuclei_tables::SharedClustersHad,
134+
hadron_nuclei_tables::DeltaEta,
135+
hadron_nuclei_tables::DeltaPhi,
136+
hadron_nuclei_tables::NSigmaTPCHad,
137+
hadron_nuclei_tables::NSigmaTOFNu,
138+
hadron_nuclei_tables::NSigmaITSNu,
139+
hadron_nuclei_tables::NSigmaTOFHad,
140+
hadron_nuclei_tables::NSigmaITSHad)
121141
DECLARE_SOA_TABLE(HadronHyperTable, "AOD", "HADHYPERTABLE",
122142
hadron_nuclei_tables::PtHyp,
123143
hadron_nuclei_tables::EtaHyp,

0 commit comments

Comments
 (0)