Skip to content

Commit 6e781e9

Browse files
authored
Please consider the following formatting changes (#24)
1 parent ae8cfe7 commit 6e781e9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

PWGCF/GenericFramework/GFW.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ If used, modified, or distributed, please aknowledge the author of this code.
2020
#include "GFW.h"
2121

2222
using std::complex;
23+
using std::pair;
2324
using std::string;
2425
using std::vector;
25-
using std::pair;
2626

2727
GFW::GFW() : fInitialized(false) {}
2828

PWGCF/GenericFramework/GFW.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ class GFW
5757
std::vector<Region> fRegions;
5858
std::vector<GFWCumulant> fCumulants;
5959
void AddRegion(std::string refName, double lEtaMin, double lEtaMax, int lNpT, int BitMask);
60-
void AddRegion(std::string refName, std::vector<int> lNparVec, double lEtaMin, double lEtaMax, int lNpT, int BitMask); // Legacy
61-
void AddRegion(std::string refName, int lNhar, int lNpar, double lEtaMin, double lEtaMax, int lNpT, int BitMask); // Legacy support, all powers are the same
62-
void AddRegion(std::string refName, int lNhar, int* lNparVec, double lEtaMin, double lEtaMax, int lNpT, int BitMask); // Legacy support, array instead of a vector
60+
void AddRegion(std::string refName, std::vector<int> lNparVec, double lEtaMin, double lEtaMax, int lNpT, int BitMask); // Legacy
61+
void AddRegion(std::string refName, int lNhar, int lNpar, double lEtaMin, double lEtaMax, int lNpT, int BitMask); // Legacy support, all powers are the same
62+
void AddRegion(std::string refName, int lNhar, int* lNparVec, double lEtaMin, double lEtaMax, int lNpT, int BitMask); // Legacy support, array instead of a vector
6363
int CreateRegions();
6464
void Fill(double eta, int ptin, double phi, double weight, int mask, double secondWeight = -1);
6565
void Clear();
@@ -73,7 +73,7 @@ class GFW
7373
std::vector<CorrConfig> fListOfCFGs;
7474
std::complex<double> TwoRec(int n1, int n2, int p1, int p2, int ptbin, GFWCumulant*, GFWCumulant*, GFWCumulant*);
7575
std::complex<double> RecursiveCorr(GFWCumulant* qpoi, GFWCumulant* qref, GFWCumulant* qol, int ptbin, std::vector<int>& hars, std::vector<int>& pows); // POI, Ref. flow, overlapping region
76-
std::complex<double> RecursiveCorr(GFWCumulant* qpoi, GFWCumulant* qref, GFWCumulant* qol, int ptbin, std::vector<int>& hars); // POI, Ref. flow, overlapping region
76+
std::complex<double> RecursiveCorr(GFWCumulant* qpoi, GFWCumulant* qref, GFWCumulant* qol, int ptbin, std::vector<int>& hars); // POI, Ref. flow, overlapping region
7777
void AddRegion(Region inreg) { fRegions.push_back(inreg); }
7878
Region GetRegion(int index) { return fRegions.at(index); }
7979
int FindRegionByName(std::string refName);

PWGDQ/Tasks/dqFlow.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@
4545
#include "Common/DataModel/TrackSelectionTables.h"
4646
#include "Common/DataModel/Centrality.h"
4747

48+
using std::complex;
4849
using std::cout;
4950
using std::endl;
5051
using std::string;
51-
using std::complex;
5252

5353
using namespace o2;
5454
using namespace o2::framework;

0 commit comments

Comments
 (0)