Skip to content

Commit 538027f

Browse files
committed
fixed clang
1 parent b50c440 commit 538027f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGLF/Tasks/Nuspex/antinucleiInJets.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@
5656
#include <TVector2.h>
5757
#include <TVector3.h>
5858

59-
#include <ROOT/Math/PxPyPzMVector.h>
6059
#include <ROOT/Math/Boost.h>
60+
#include <ROOT/Math/PxPyPzMVector.h>
6161

6262
#include <fastjet/AreaDefinition.hh>
6363
#include <fastjet/ClusterSequence.hh>
@@ -123,7 +123,7 @@ struct ReducedParticle {
123123
// Transverse Momentum
124124
double pt() const
125125
{
126-
return std::sqrt(px*px + py*py);
126+
return std::sqrt(px * px + py * py);
127127
}
128128
};
129129

@@ -3173,12 +3173,12 @@ struct AntinucleiInJets {
31733173
registryMC.fill(HIST("genEventsCoalescence"), 2.5);
31743174

31753175
// Build deuterons
3176-
for (int ip = 0 ; ip < protons.size() ; ip++) {
3176+
for (int ip = 0; ip < protons.size(); ip++) {
31773177
auto& proton = protons[ip];
31783178
if (proton.used)
31793179
continue;
31803180

3181-
for (int in = 0 ; in < neutrons.size() ; in++) {
3181+
for (int in = 0; in < neutrons.size(); in++) {
31823182
auto& neutron = neutrons[in];
31833183
if (neutron.used)
31843184
continue;

0 commit comments

Comments
 (0)