Skip to content

Commit ece3ae2

Browse files
committed
Very minor change
1 parent 48bc30f commit ece3ae2

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

PWGLF/TableProducer/QC/flowQC.cxx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -263,11 +263,10 @@ struct flowQC {
263263

264264
float centrality = getCentrality(collision);
265265

266-
const bool quadraticResponse = cfgQuadraticResponse;
267-
auto maybeSquare = [quadraticResponse](float value) {
268-
return quadraticResponse ? value * value : value;
266+
auto maybeSquare = [this](float value) {
267+
return cfgQuadraticResponse ? value * value : value;
269268
};
270-
const float qvecHarmonic = quadraticResponse ? (cfgHarmonic.value / 2.f) : cfgHarmonic.value;
269+
const float qvecHarmonic = cfgQuadraticResponse ? (cfgHarmonic.value / 2.f) : cfgHarmonic.value;
271270
const int qvecHarmonicIndex = static_cast<int>(qvecHarmonic) - 2;
272271

273272
// EP method

0 commit comments

Comments
 (0)