We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6354ec commit 97f429dCopy full SHA for 97f429d
PWGLF/TableProducer/Nuspex/ebyeMaker.cxx
@@ -532,11 +532,11 @@ struct ebyeMaker {
532
auto fv0c = fv0cs.rawIteratorAt(id);
533
float multFV0A = 0;
534
float multFV0C = 0;
535
- for (const float amplitude : fv0a.amplitude()) {
+ for (const float& amplitude : fv0a.amplitude()) {
536
multFV0A += amplitude;
537
}
538
539
- for (const float amplitude : fv0c.amplitude()) {
+ for (const float& amplitude : fv0c.amplitude()) {
540
multFV0C += amplitude;
541
542
0 commit comments