Skip to content

Commit b4fd57c

Browse files
committed
Please consider the following formatting changes
1 parent f71cb88 commit b4fd57c

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,30 @@
1515
/// \author Zuzanna Chochulska, WUT Warsaw & CTU Prague, zchochul@cern.ch
1616
/// \author Anna-Mariia Andrushko, WUT Warsaw, anna-mariia.andrushko@cern.ch
1717

18-
#include <fairlogger/Logger.h>
19-
#include <cstdint>
20-
#include <vector>
21-
#include <TDatabasePDG.h>
18+
#include "PWGCF/FemtoUniverse/Core/FemtoUniverseEventHisto.h"
19+
#include "PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h"
20+
#include "PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h"
21+
#include "PWGCF/FemtoUniverse/Core/femtoUtils.h"
22+
#include "PWGCF/FemtoUniverse/DataModel/FemtoDerived.h"
23+
24+
#include "Common/DataModel/PIDResponse.h"
25+
26+
#include "DataFormatsParameters/GRPObject.h"
27+
#include "Framework/ASoAHelpers.h"
2228
#include "Framework/AnalysisTask.h"
23-
#include "Framework/runDataProcessing.h"
2429
#include "Framework/HistogramRegistry.h"
25-
#include "Framework/ASoAHelpers.h"
30+
#include "Framework/O2DatabasePDGPlugin.h"
2631
#include "Framework/RunningWorkflowInfo.h"
2732
#include "Framework/StepTHn.h"
28-
#include "Framework/O2DatabasePDGPlugin.h"
29-
#include "DataFormatsParameters/GRPObject.h"
33+
#include "Framework/runDataProcessing.h"
3034
#include "ReconstructionDataFormats/PID.h"
31-
#include "Common/DataModel/PIDResponse.h"
3235

33-
#include "PWGCF/FemtoUniverse/DataModel/FemtoDerived.h"
34-
#include "PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h"
35-
#include "PWGCF/FemtoUniverse/Core/FemtoUniverseEventHisto.h"
36-
#include "PWGCF/FemtoUniverse/Core/femtoUtils.h"
37-
#include "PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h"
36+
#include <TDatabasePDG.h>
37+
38+
#include <fairlogger/Logger.h>
39+
40+
#include <cstdint>
41+
#include <vector>
3842

3943
using namespace o2;
4044
using namespace o2::analysis::femto_universe;
@@ -74,7 +78,6 @@ struct FemtoUniverseDebugV0 {
7478

7579
Configurable<bool> confIsMC{"confIsMC", false, "Enable additional histograms in the case of a Monte Carlo run"};
7680

77-
7881
/// Partitioning
7982
using FemtoFullParticles = soa::Join<aod::FDParticles, aod::FDExtParticles>;
8083

@@ -83,7 +86,6 @@ struct FemtoUniverseDebugV0 {
8386
Partition<soa::Join<FemtoFullParticles, aod::FDMCLabels>> partsOneMC = (aod::femtouniverseparticle::partType == uint8_t(aod::femtouniverseparticle::ParticleType::kV0)) && ((aod::femtouniverseparticle::cut & V0configs.confCutV0) == V0configs.confCutV0);
8487

8588
Preslice<FemtoFullParticles> perCol = aod::femtouniverseparticle::fdCollisionId;
86-
8789

8890
/// Histogramming
8991
FemtoUniverseEventHisto eventHisto;
@@ -95,7 +97,6 @@ struct FemtoUniverseDebugV0 {
9597
HistogramRegistry eventRegistry{"Event", {}, OutputObjHandlingPolicy::AnalysisObject};
9698
HistogramRegistry V0Registry{"FullV0QA", {}, OutputObjHandlingPolicy::AnalysisObject}; // o2-linter: disable=name/function-variable
9799
HistogramRegistry thetaRegistry{"ThetaQA", {}, OutputObjHandlingPolicy::AnalysisObject};
98-
99100

100101
void init(InitContext&)
101102
{
@@ -112,7 +113,6 @@ struct FemtoUniverseDebugV0 {
112113
thetaRegistry.add("Theta/NegativeChild/hThetaEta", " ; #eta; cos(#theta)", kTH2F, {{100, -1, 1}, {110, -1.1, 1.1}});
113114
thetaRegistry.add("Theta/NegativeChild/hThetaPhi", " ; #phi; cos(#theta)", kTH2F, {{100, -1, 7}, {110, -1.1, 1.1}});
114115
}
115-
116116

117117
/// Produce QA plots for V0 and its children on real data
118118
void processData(o2::aod::FdCollision const& col, FemtoFullParticles const& parts)

0 commit comments

Comments
 (0)