Skip to content
Merged
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
7 changes: 3 additions & 4 deletions PWGHF/D2H/Tasks/taskMixingDstarCandTreeCreator.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
///
/// \author Mingze li <mingze.li@cern.ch>, CCNU/UniTo

#include "PWGHF/Core/CentralityEstimation.h"
#include "PWGHF/Core/DecayChannels.h"
#include "PWGHF/D2H/Utils/utilsFlow.h"
#include "PWGHF/Core/CentralityEstimation.h"
#include "PWGHF/DataModel/CandidateReconstructionTables.h"
#include "PWGHF/DataModel/CandidateSelectionTables.h"

Expand Down Expand Up @@ -75,14 +75,14 @@
DECLARE_SOA_COLUMN(Centrality, centrality, float);
DECLARE_SOA_COLUMN(Multiplicity, multiplicity, int);
DECLARE_SOA_COLUMN(Occupancy, occupancy, int);
DECLARE_SOA_COLUMN(XQvec, xqVec, float);

Check failure on line 78 in PWGHF/D2H/Tasks/taskMixingDstarCandTreeCreator.cxx

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_COLUMN(YQvec, yqVec, float);

Check failure on line 79 in PWGHF/D2H/Tasks/taskMixingDstarCandTreeCreator.cxx

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_COLUMN(GIndexCol, gIndexCol, int);
DECLARE_SOA_COLUMN(TimeStamp, timeStamp, int64_t);
// Tracks
DECLARE_SOA_COLUMN(MinAbsEtaTrack, MinabsEtaTrack, float);

Check failure on line 83 in PWGHF/D2H/Tasks/taskMixingDstarCandTreeCreator.cxx

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_COLUMN(MinNumItsCls, minNumItsCls, int);
DECLARE_SOA_COLUMN(MinNumTpcCls, minNumTpcCls, int);
DECLARE_SOA_COLUMN(MinNumTpcCls, minNumTpcCls, int);
} // namespace mixing_dstar

DECLARE_SOA_TABLE(HfCandDstMix, "AOD", "HFCANDDSTMIX",
Expand Down Expand Up @@ -127,7 +127,6 @@
Configurable<int> centEstimator{"centEstimator", 2, "Centrality estimator ((None: 0, FT0C: 2, FT0M: 3))"};
Configurable<int> occEstimator{"occEstimator", 2, "If enabled, replace number of PV contributors with occupancy estimation (0: don't use, 1: ITS, 2: FT0C)"};


using CollsWithQVecs = soa::Join<aod::Collisions, aod::EvSels, aod::QvectorFT0Cs, aod::QvectorFT0As, aod::QvectorFT0Ms, aod::QvectorFV0As, aod::QvectorBPoss, aod::QvectorBNegs, aod::QvectorBTots, aod::CentFT0Ms, aod::CentFT0Cs>;
using TracksWithExtra = soa::Join<aod::Tracks, aod::TracksExtra>;
using CandDstarWSelFlag = soa::Join<aod::HfCandDstars, aod::HfSelDstarToD0Pi>;
Expand Down Expand Up @@ -235,7 +234,7 @@
auto groupedDstarCandidates = dstarCandidates.sliceBy(dstarWithMlPerCollision, thisCollId);
for (const auto& dstarCandidate : groupedDstarCandidates) {
fillCandidateTable(collision, dstarCandidate, tracks, bcWithTimeStamps);
}
}
}
}
PROCESS_SWITCH(HfTaskMixingDstarCandTreeCreator, processData, "Process data", true);
Expand Down
Loading