Skip to content

Commit ab615ed

Browse files
author
MaximVirta
committed
[PWGCF] Comment out unused variables
1 parent fb07d71 commit ab615ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGCF/GenericFramework/Tasks/flowGfwV02.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ struct FlowGfwV02 {
481481
}
482482

483483
template <typename TTrack>
484-
double getAcceptance(TTrack track, const double& vtxz, const int& pidInd = 0)
484+
double getAcceptance(TTrack track, const double& /*vtxz*/, const int& /*pidInd*/ = 0)
485485
{
486486
double wacc = 1;
487487
if constexpr (requires { track.weightNUA(); })
@@ -490,7 +490,7 @@ struct FlowGfwV02 {
490490
}
491491

492492
template <typename TTrack>
493-
double getEfficiency(TTrack track, const int& pidInd = 0)
493+
double getEfficiency(TTrack track, const int& /*pidInd*/ = 0)
494494
{
495495
double eff = 1.;
496496
if constexpr (requires { track.weightEff(); })
@@ -527,7 +527,7 @@ struct FlowGfwV02 {
527527
}
528528

529529
template <DataType dt>
530-
void fillOutputContainers(const float& centmult, const double& rndm, const int& run = 0)
530+
void fillOutputContainers(const float& centmult, const double& rndm, const int& /*run*/ = 0)
531531
{
532532
for (uint l_ind = 0; l_ind < corrconfigs.size(); ++l_ind) {
533533
if (!corrconfigs.at(l_ind).pTDif) {
@@ -654,7 +654,7 @@ struct FlowGfwV02 {
654654
}
655655

656656
template <typename TTrack>
657-
inline void processTrack(TTrack const& track, const float& vtxz, const int& multiplicity, const int& run, AcceptedTracks& acceptedTracks)
657+
inline void processTrack(TTrack const& track, const float& vtxz, const int& multiplicity, const int& /*run*/, AcceptedTracks& acceptedTracks)
658658
{
659659
// fillPtSums<kReco>(track); // Fill pT sums
660660
fillTrackQA<kBefore>(track, vtxz);

0 commit comments

Comments
 (0)