Skip to content

Commit 7d4a43a

Browse files
committed
Please consider the following formatting changes
1 parent 08f9cf3 commit 7d4a43a

File tree

6 files changed

+9
-14
lines changed

6 files changed

+9
-14
lines changed

PWGDQ/Core/HistogramsLibrary.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ void o2::aod::dqhistograms::DefineHistograms(HistogramManager* hm, const char* h
159159
hm->AddHistogram(histClass, "Psi2B_CentFT0C", "", false, 90, 0.0, 90.0, VarManager::kCentFT0C, 100, -2.0, 2.0, VarManager::kPsi2B);
160160
hm->AddHistogram(histClass, "Psi2C_CentFT0C", "", false, 90, 0.0, 90.0, VarManager::kCentFT0C, 100, -2.0, 2.0, VarManager::kPsi2C);
161161
}
162-
162+
163163
if (subGroupStr.Contains("res")) {
164164
hm->AddHistogram(histClass, "R2SP_CentV0M", "", true, 9, 0.0, 90.0, VarManager::kCentVZERO, 100, -1.0, 1.0, VarManager::kR2SP);
165165
hm->AddHistogram(histClass, "R3SP_CentV0M", "", true, 9, 0.0, 90.0, VarManager::kCentVZERO, 100, -1.0, 1.0, VarManager::kR3SP);

PWGDQ/Core/VarManager.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -648,8 +648,8 @@ class VarManager : public TObject
648648
static void FillDileptonCharmHadron(DQ const& dilepton, HF const& charmHadron, H hfHelper, T& bdtScoreCharmHad, float* values = nullptr);
649649
template <typename C, typename A>
650650
static void FillQVectorFromGFW(C const& collision, A const& compA2, A const& compB2, A const& compC2, A const& compA3, A const& compB3, A const& compC3, float normA = 1.0, float normB = 1.0, float normC = 1.0, float* values = nullptr);
651-
//static void FillEventPlaneABC(A const& EpA, A const& EpB, A const& EpC, float* values = nullptr);
652-
651+
// static void FillEventPlaneABC(A const& EpA, A const& EpB, A const& EpC, float* values = nullptr);
652+
653653
template <int pairType, typename T1, typename T2>
654654
static void FillPairVn(T1 const& t1, T2 const& t2, float* values = nullptr);
655655

@@ -1059,7 +1059,6 @@ void VarManager::FillEvent(T const& event, float* values)
10591059
values[kPsi2A] = getEventPlane(2, event.q2x0a(), event.q2y0a());
10601060
values[kPsi2B] = getEventPlane(2, event.q2x0b(), event.q2y0b());
10611061
values[kPsi2C] = getEventPlane(2, event.q2x0c(), event.q2y0c());
1062-
10631062
}
10641063

10651064
if constexpr ((fillMap & CollisionMC) > 0) {
@@ -2403,7 +2402,7 @@ void VarManager::FillQVectorFromGFW(C const& collision, A const& compA2, A const
24032402

24042403
// TODO: provide different computations for R
24052404
// Compute the R factor using the 2 sub-events technique for second and third harmonic
2406-
//Compute event planes
2405+
// Compute event planes
24072406
auto Psi2B = getEventPlane(2, values[kQ2X0B], values[kQ2Y0B]);
24082407
auto Psi3B = getEventPlane(3, values[kQ3X0B], values[kQ3Y0B]);
24092408
auto Psi2C = getEventPlane(2, values[kQ2X0C], values[kQ2Y0C]);
@@ -2459,7 +2458,7 @@ void VarManager::FillPairVn(T1 const& t1, T2 const& t2, float* values)
24592458
values[kU3Q3] = values[kQ3X0A] * std::cos(3 * v12.Phi()) + values[kQ3Y0A] * std::sin(3 * v12.Phi());
24602459
values[kCos2DeltaPhi] = std::cos(2 * (v12.Phi() - getEventPlane(2, values[kQ2X0A], values[kQ2Y0A])));
24612460
values[kCos3DeltaPhi] = std::cos(3 * (v12.Phi() - getEventPlane(3, values[kQ3X0A], values[kQ3Y0A])));
2462-
2461+
24632462
if (isnan(VarManager::fgValues[VarManager::kU2Q2]) == true) {
24642463
values[kU2Q2] = -999.;
24652464
values[kU3Q3] = -999.;

PWGDQ/DataModel/ReducedInfoTables.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -500,8 +500,7 @@ DECLARE_SOA_TABLE(DileptonsFlow, "AOD", "RTDILEPTONFLOW", //!
500500
reducedpair::Cos3DeltaPhi,
501501
reducedpair::Psi2A,
502502
reducedpair::Psi2B,
503-
reducedpair::Psi2C
504-
);
503+
reducedpair::Psi2C);
505504

506505
// Dilepton collision information (joined with DileptonsExtra) allowing to connect different tables (cross PWGs)
507506
DECLARE_SOA_TABLE(DileptonsInfo, "AOD", "RTDILEPTONINFO",
@@ -534,8 +533,7 @@ DECLARE_SOA_TABLE(DimuonsAll, "AOD", "RTDIMUONALL", //!
534533
reducedpair::Cos3DeltaPhi,
535534
reducedpair::Psi2A,
536535
reducedpair::Psi2B,
537-
reducedpair::Psi2C
538-
);
536+
reducedpair::Psi2C);
539537

540538
using Dilepton = Dileptons::iterator;
541539
using DileptonExtra = DileptonsExtra::iterator;

PWGDQ/Tasks/dqEfficiency.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ struct AnalysisSameEventPairing {
797797
t2.reducedMCTrack().pt(), t2.reducedMCTrack().eta(), t2.reducedMCTrack().phi(), t2.reducedMCTrack().e(),
798798
t1.reducedMCTrack().vx(), t1.reducedMCTrack().vy(), t1.reducedMCTrack().vz(), t1.reducedMCTrack().vt(),
799799
t2.reducedMCTrack().vx(), t2.reducedMCTrack().vy(), t2.reducedMCTrack().vz(), t2.reducedMCTrack().vt(),
800-
t1.isAmbiguous(), t2.isAmbiguous(), -999., -999., -999., -999.,-999., -999., -999.);
800+
t1.isAmbiguous(), t2.isAmbiguous(), -999., -999., -999., -999., -999., -999., -999.);
801801
}
802802
}
803803

PWGDQ/Tasks/dqFlow.cxx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,12 +320,10 @@ struct DQEventQvector {
320320
}
321321
}
322322

323-
324323
// Fill the tree for the reduced event table with Q vector quantities
325324
if (fEventCut->IsSelected(VarManager::fgValues)) {
326325
eventQvector(VarManager::fgValues[VarManager::kQ2X0A], VarManager::fgValues[VarManager::kQ2Y0A], VarManager::fgValues[VarManager::kQ2X0B], VarManager::fgValues[VarManager::kQ2Y0B], VarManager::fgValues[VarManager::kQ2X0C], VarManager::fgValues[VarManager::kQ2Y0C], VarManager::fgValues[VarManager::kMultA], VarManager::fgValues[VarManager::kMultC], VarManager::fgValues[VarManager::kMultC], VarManager::fgValues[VarManager::kQ3X0A], VarManager::fgValues[VarManager::kQ3Y0A], VarManager::fgValues[VarManager::kQ3X0B], VarManager::fgValues[VarManager::kQ3Y0B], VarManager::fgValues[VarManager::kQ3X0C], VarManager::fgValues[VarManager::kQ3Y0C]);
327326
}
328-
329327
}
330328

331329
// Process to fill Q vector using barrel tracks in a reduced event table for barrel/muon tracks flow related analyses Run 2

PWGDQ/Tasks/tableReader.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ struct AnalysisSameEventPairing {
10571057
}
10581058

10591059
if constexpr (eventHasQvector) {
1060-
dileptonFlowList(VarManager::fgValues[VarManager::kU2Q2], VarManager::fgValues[VarManager::kU3Q3], VarManager::fgValues[VarManager::kCos2DeltaPhi], VarManager::fgValues[VarManager::kCos3DeltaPhi],VarManager::fgValues[VarManager::kR2SP],VarManager::fgValues[VarManager::kR2EP],VarManager::fgValues[VarManager::kCentFT0C]);
1060+
dileptonFlowList(VarManager::fgValues[VarManager::kU2Q2], VarManager::fgValues[VarManager::kU3Q3], VarManager::fgValues[VarManager::kCos2DeltaPhi], VarManager::fgValues[VarManager::kCos3DeltaPhi], VarManager::fgValues[VarManager::kR2SP], VarManager::fgValues[VarManager::kR2EP], VarManager::fgValues[VarManager::kCentFT0C]);
10611061
}
10621062

10631063
int iCut = 0;

0 commit comments

Comments
 (0)