Skip to content

Commit 287f002

Browse files
committed
Please consider the following formatting changes
1 parent b50c440 commit 287f002

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

PWGLF/Tasks/Nuspex/antinucleiInJets.cxx

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

59-
#include <ROOT/Math/PxPyPzMVector.h>
6059
#include <ROOT/Math/Boost.h>
61-
60+
#include <ROOT/Math/PxPyPzMVector.h>
6261
#include <fastjet/AreaDefinition.hh>
6362
#include <fastjet/ClusterSequence.hh>
6463
#include <fastjet/ClusterSequenceArea.hh>
@@ -123,7 +122,7 @@ struct ReducedParticle {
123122
// Transverse Momentum
124123
double pt() const
125124
{
126-
return std::sqrt(px*px + py*py);
125+
return std::sqrt(px * px + py * py);
127126
}
128127
};
129128

@@ -3173,12 +3172,12 @@ struct AntinucleiInJets {
31733172
registryMC.fill(HIST("genEventsCoalescence"), 2.5);
31743173

31753174
// Build deuterons
3176-
for (int ip = 0 ; ip < protons.size() ; ip++) {
3175+
for (int ip = 0; ip < protons.size(); ip++) {
31773176
auto& proton = protons[ip];
31783177
if (proton.used)
31793178
continue;
31803179

3181-
for (int in = 0 ; in < neutrons.size() ; in++) {
3180+
for (int in = 0; in < neutrons.size(); in++) {
31823181
auto& neutron = neutrons[in];
31833182
if (neutron.used)
31843183
continue;

0 commit comments

Comments
 (0)