Skip to content

Commit ae56a9e

Browse files
committed
non-const vector to fit the cursor with span
1 parent 9a407fb commit ae56a9e

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

PWGHF/TableProducer/derivedDataCreatorB0ToDPi.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ struct HfDerivedDataCreatorB0ToDPi {
124124

125125
template <typename T, typename U, typename V>
126126
void fillTablesCandidate(const T& candidate, const U& prongCharm, const V& prongBachelor, int candFlag, double invMass,
127-
double ct, double y, int8_t flagMc, int8_t origin, float mlScore, const std::vector<float>& mlScoresCharm)
127+
double ct, double y, int8_t flagMc, int8_t origin, float mlScore, std::vector<float>& mlScoresCharm)
128128
{
129129
rowsCommon.fillTablesCandidate(candidate, invMass, y);
130130
if (fillCandidatePar) {

PWGHF/TableProducer/derivedDataCreatorBplusToD0Pi.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ struct HfDerivedDataCreatorBplusToD0Pi {
124124

125125
template <typename T, typename U, typename V>
126126
void fillTablesCandidate(const T& candidate, const U& prongCharm, const V& prongBachelor, int candFlag, double invMass,
127-
double ct, double y, int8_t flagMc, int8_t origin, float mlScore, const std::vector<float>& mlScoresCharm)
127+
double ct, double y, int8_t flagMc, int8_t origin, float mlScore, std::vector<float>& mlScoresCharm)
128128
{
129129
rowsCommon.fillTablesCandidate(candidate, invMass, y);
130130
if (fillCandidatePar) {

PWGHF/TableProducer/derivedDataCreatorD0ToKPi.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ struct HfDerivedDataCreatorD0ToKPi {
136136

137137
template <typename T>
138138
void fillTablesCandidate(const T& candidate, int candFlag, double invMass, double cosThetaStar, double topoChi2,
139-
double ct, double y, int8_t flagMc, int8_t origin, const std::vector<float>& mlScores)
139+
double ct, double y, int8_t flagMc, int8_t origin, std::vector<float>& mlScores)
140140
{
141141
rowsCommon.fillTablesCandidate(candidate, invMass, y);
142142
if (fillCandidatePar) {

PWGHF/TableProducer/derivedDataCreatorDplusToPiKPi.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ struct HfDerivedDataCreatorDplusToPiKPi {
117117

118118
template <typename T>
119119
void fillTablesCandidate(const T& candidate, int candFlag, double invMass,
120-
double ct, double y, int8_t flagMc, int8_t origin, int8_t swapping, int8_t flagDecayChan, const std::vector<float>& mlScores)
120+
double ct, double y, int8_t flagMc, int8_t origin, int8_t swapping, int8_t flagDecayChan, std::vector<float>& mlScores)
121121
{
122122
rowsCommon.fillTablesCandidate(candidate, invMass, y);
123123
if (fillCandidatePar) {

PWGHF/TableProducer/derivedDataCreatorDstarToD0Pi.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ struct HfDerivedDataCreatorDstarToD0Pi {
113113

114114
template <typename T, typename U>
115115
void fillTablesCandidate(const T& candidate, const U& prong0, const U& prong1, const U& prongSoftPi, int candFlag, double invMass,
116-
double y, int8_t flagMc, int8_t origin, const std::vector<float>& mlScores)
116+
double y, int8_t flagMc, int8_t origin, std::vector<float>& mlScores)
117117
{
118118
rowsCommon.fillTablesCandidate(candidate, invMass, y);
119119
if (fillCandidatePar) {

PWGHF/TableProducer/derivedDataCreatorLcToPKPi.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ struct HfDerivedDataCreatorLcToPKPi {
117117

118118
template <typename T>
119119
void fillTablesCandidate(const T& candidate, int candFlag, double invMass,
120-
double ct, double y, int8_t flagMc, int8_t origin, int8_t swapping, const std::vector<float>& mlScores)
120+
double ct, double y, int8_t flagMc, int8_t origin, int8_t swapping, std::vector<float>& mlScores)
121121
{
122122
rowsCommon.fillTablesCandidate(candidate, invMass, y);
123123
if (fillCandidatePar) {

0 commit comments

Comments
 (0)