Skip to content

Commit 9610526

Browse files
author
Emil Gorm Nielsen
committed
clangformat
1 parent ad86383 commit 9610526

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

PWGCF/GenericFramework/Core/FlowPtContainer.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,11 @@ class FlowPtContainer : public TNamed
122122
bool fUseGap; //!
123123
void mergeBSLists(TList* source, TList* target);
124124
TH1* raiseHistToPower(TH1* inh, double p);
125-
std::vector<double> sumP; //!
126-
std::vector<double> corrNum; //!
127-
std::vector<double> corrDen; //!
128-
std::vector<double> cmVal; //!
129-
std::vector<double> cmDen; //!
125+
std::vector<double> sumP; //!
126+
std::vector<double> corrNum; //!
127+
std::vector<double> corrDen; //!
128+
std::vector<double> cmVal; //!
129+
std::vector<double> cmDen; //!
130130
std::vector<std::complex<double>> arr; //!
131131
std::vector<double> warr; //!
132132
template <typename T>

PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,8 @@ struct GenericFramework {
648648
std::vector<GFWWeights*> weights;
649649
std::vector<std::string> species = {"ref", "ch", "pi", "ka", "pr"};
650650
for (size_t i = 0; i < species.size(); ++i) {
651-
if(dynamic_cast<GFWWeights*>(fWeightList->FindObject(Form("w%i_%s", lastRun, species[i].c_str())))) continue;
651+
if (dynamic_cast<GFWWeights*>(fWeightList->FindObject(Form("w%i_%s", lastRun, species[i].c_str()))))
652+
continue;
652653
weights.push_back(new GFWWeights(Form("w%i_%s", lastRun, species[i].c_str())));
653654
if (i == 0) {
654655
auto it = std::find(ptbinning.begin(), ptbinning.end(), ptrefup);
@@ -661,7 +662,8 @@ struct GenericFramework {
661662
fWeightList->Add(weights[i]);
662663
}
663664
} else {
664-
if(dynamic_cast<GFWWeights*>(fWeightList->FindObject(Form("w%i_ch", lastRun)))) return;
665+
if (dynamic_cast<GFWWeights*>(fWeightList->FindObject(Form("w%i_ch", lastRun))))
666+
return;
665667
GFWWeights* weight = new GFWWeights(Form("w%i_ch", lastRun));
666668
weight->SetPtBins(fPtAxis->GetNbins(), &ptbinning[0]);
667669
weight->Init(true, false);

0 commit comments

Comments
 (0)