Skip to content

Commit 26cb05a

Browse files
committed
Please consider the following formatting changes
1 parent 53d712c commit 26cb05a

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

PWGCF/Flow/Tasks/flowGFWOmegaXi.cxx

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,17 @@ using namespace o2::framework;
4949
using namespace o2::framework::expressions;
5050
namespace
5151
{
52-
std::shared_ptr<TProfile> REFc22[10];
53-
std::shared_ptr<TProfile> REFc24[10];
54-
std::shared_ptr<TProfile3D> K0sc22[10];
55-
std::shared_ptr<TProfile3D> K0sc24[10];
56-
std::shared_ptr<TProfile3D> Lambdac22[10];
57-
std::shared_ptr<TProfile3D> Lambdac24[10];
58-
std::shared_ptr<TProfile3D> Xic22[10];
59-
std::shared_ptr<TProfile3D> Xic24[10];
60-
std::shared_ptr<TProfile3D> Omegac22[10];
61-
std::shared_ptr<TProfile3D> Omegac24[10];
62-
}
52+
std::shared_ptr<TProfile> REFc22[10];
53+
std::shared_ptr<TProfile> REFc24[10];
54+
std::shared_ptr<TProfile3D> K0sc22[10];
55+
std::shared_ptr<TProfile3D> K0sc24[10];
56+
std::shared_ptr<TProfile3D> Lambdac22[10];
57+
std::shared_ptr<TProfile3D> Lambdac24[10];
58+
std::shared_ptr<TProfile3D> Xic22[10];
59+
std::shared_ptr<TProfile3D> Xic24[10];
60+
std::shared_ptr<TProfile3D> Omegac22[10];
61+
std::shared_ptr<TProfile3D> Omegac24[10];
62+
} // namespace
6363

6464
#define O2_DEFINE_CONFIGURABLE(NAME, TYPE, DEFAULT, HELP) Configurable<TYPE> NAME{#NAME, DEFAULT, HELP};
6565

@@ -252,7 +252,7 @@ struct FlowGFWOmegaXi {
252252
registry.add("K0sc24dpt", ";pt ; C_{2}{4} ", {HistType::kTProfile3D, {cfgaxisPtV0, cfgaxisK0sMassforflow, axisMultiplicity}});
253253
registry.add("Lambdac24dpt", ";pt ; C_{2}{4} ", {HistType::kTProfile3D, {cfgaxisPtV0, cfgaxisLambdaMassforflow, axisMultiplicity}});
254254
// for Jackknife cut
255-
for (int i = 1; i <= 10; i++){
255+
for (int i = 1; i <= 10; i++) {
256256
REFc22[i - 1] = registry.add<TProfile>(Form("Jackknife/REF/c22_%d", i), ";Centrality (%) ; C_{2}{2} ", {HistType::kTProfile, {axisMultiplicity}});
257257
REFc24[i - 1] = registry.add<TProfile>(Form("Jackknife/REF/c24_%d", i), ";Centrality (%) ; C_{2}{2} ", {HistType::kTProfile, {axisMultiplicity}});
258258
Xic22[i - 1] = registry.add<TProfile3D>(Form("Jackknife/Xi/Xic22dpt_%d", i), ";pt ; C_{2}{2} ", {HistType::kTProfile3D, {cfgaxisPtXi, cfgaxisXiminusMassforflow, axisMultiplicity}});
@@ -700,7 +700,7 @@ struct FlowGFWOmegaXi {
700700
PDGCode = kLambda0;
701701
CandNum_all[1] = CandNum_all[1] + 1;
702702
}
703-
//fill QA before cut
703+
// fill QA before cut
704704
registry.fill(HIST("hqaV0radiusbefore"), v0.v0radius());
705705
registry.fill(HIST("hqaV0cosPAbefore"), v0.v0cosPA());
706706
registry.fill(HIST("hqadcaV0daubefore"), v0.dcaV0daughters());
@@ -717,7 +717,7 @@ struct FlowGFWOmegaXi {
717717
if (v0negdau.tpcNClsFindable() < cfgtpcclufindable)
718718
continue;
719719
if (v0posdau.tpcCrossedRowsOverFindableCls() < cfgtpccrossoverfindable)
720-
continue;
720+
continue;
721721
if (v0posdau.itsNCls() < cfgitsclusters)
722722
continue;
723723
if (v0negdau.itsNCls() < cfgitsclusters)
@@ -733,7 +733,7 @@ struct FlowGFWOmegaXi {
733733
continue;
734734
if (TMath::Abs(v0.dcanegtopv()) < cfgv0_dcadautopv)
735735
continue;
736-
//fill QA after cut
736+
// fill QA after cut
737737
registry.fill(HIST("hqaV0radiusafter"), v0.v0radius());
738738
registry.fill(HIST("hqaV0cosPAafter"), v0.v0cosPA());
739739
registry.fill(HIST("hqadcaV0dauafter"), v0.dcaV0daughters());
@@ -875,7 +875,7 @@ struct FlowGFWOmegaXi {
875875
// Fill subevents flow
876876
TRandom3* fRdm = new TRandom3(0);
877877
double Eventrdm = 10 * fRdm->Rndm();
878-
for (int j = 1; j <= 10; j++){
878+
for (int j = 1; j <= 10; j++) {
879879
if (Eventrdm > (j - 1) && Eventrdm < j)
880880
continue;
881881
FillProfile(corrconfigs.at(15), REFc22[j - 1], cent);

0 commit comments

Comments
 (0)