Skip to content

Commit 54aa7a0

Browse files
committed
solve the warning
1 parent 8d861e2 commit 54aa7a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGHF/HFC/Tasks/taskFlow.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ static constexpr std::string_view WhatDataType[] = {"Data/", "MC/"};
152152
static constexpr std::string_view WhatCorrelationCase[] = {"TpcTpc/", "TpcMft/", "TpcFv0a/", "MftFv0a/", "TpcFt0a/", "MftFt0a/", "TpcFt0c/", "Ft0aFt0c/"};
153153
static constexpr std::string_view WhatParticles[] = {"ChPartChPart/", "D0ChPart/", "LcChPart/"};
154154
static constexpr std::string_view WhatMultiplicityEstimator[] = {"multNTracksPV", "multNumContrib", "multFT0C", "multFT0M"};
155-
auto static constexpr kMinFt0cCell = 96;
155+
auto static constexpr MinFt0cCell = 96;
156156

157157
static constexpr TrackSelectionFlags::flagtype TrackSelectionIts =
158158
TrackSelectionFlags::kITSNCls | TrackSelectionFlags::kITSChi2NDF |
@@ -783,7 +783,7 @@ struct HfTaskFlow {
783783
auto x = chPos.X() + (*offsetFT0)[i].getX();
784784
auto y = chPos.Y() + (*offsetFT0)[i].getY();
785785
auto z = chPos.Z() + (*offsetFT0)[i].getZ();
786-
if (chno >= kMinFt0cCell) {
786+
if (chno >= MinFt0cCell) {
787787
z = -z;
788788
}
789789
auto r = std::sqrt(x * x + y * y);
@@ -825,7 +825,7 @@ struct HfTaskFlow {
825825
void getChannel(TFT0s const& ft0, std::size_t const& iCh, int& id, int fitType)
826826
{
827827
if (fitType == isFT0C) {
828-
id = ft0.channelC()[iCh] + kMinFt0cCell;
828+
id = ft0.channelC()[iCh] + MinFt0cCell;
829829
} else if (fitType == isFT0A) {
830830
id = ft0.channelA()[iCh];
831831
} else {

0 commit comments

Comments
 (0)