99// granted to it by virtue of its status as an Intergovernmental Organization
1010// or submit itself to any jurisdiction.
1111
12- #include " Framework/runDataProcessing.h"
13- #include " Framework/AnalysisTask.h"
14- #include " Framework/HistogramRegistry.h"
15- #include " Framework/Configurable.h"
16-
1712#include " PWGJE/DataModel/Jet.h"
1813#include " PWGJE/DataModel/JetMatching.h"
19- # include " Common/DataModel/TrackSelectionTables.h "
14+
2015#include " Common/DataModel/MCTruthContainer.h"
16+ #include " Common/DataModel/TrackSelectionTables.h"
17+
18+ #include " Framework/AnalysisTask.h"
19+ #include " Framework/Configurable.h"
20+ #include " Framework/HistogramRegistry.h"
21+ #include " Framework/runDataProcessing.h"
2122
2223#include < cmath>
2324
@@ -46,7 +47,7 @@ DECLARE_SOA_TABLE(QGJetTable, "AOD", "QGJET",
4647 MatchDeltaR,
4748 PtResponse,
4849 QGLabel);
49- } // namespace o2::aod
50+ } // namespace o2::aod
5051
5152// ------------------------------------------------
5253// helper functions
@@ -131,7 +132,7 @@ struct QGTreeCreator {
131132 }
132133
133134 float girth = sumPt > 0 ? sumPtDr / sumPt : -1 ;
134- float ptd = sumPt > 0 ? std::sqrt (sumPt2) / sumPt : -1 ;
135+ float ptd = sumPt > 0 ? std::sqrt (sumPt2) / sumPt : -1 ;
135136 // ----------------------------------
136137 // matching block
137138 // ----------------------------------
@@ -145,7 +146,7 @@ struct QGTreeCreator {
145146 continue ;
146147
147148 auto truthJet = truthJets.iteratorAt (
148- match.chargedMCParticleLevelJetId ());
149+ match.chargedMCParticleLevelJetId ());
149150
150151 matchDr = deltaR (jet.eta (), jet.phi (),
151152 truthJet.eta (), truthJet.phi ());
@@ -162,8 +163,7 @@ struct QGTreeCreator {
162163 int pdg = 0 ;
163164
164165 for (auto const & tc :
165- truthJet.tracks_as <aod::ChargedMCParticleLevelJetConstituent>())
166- {
166+ truthJet.tracks_as <aod::ChargedMCParticleLevelJetConstituent>()) {
167167 if (!tc.has_mcParticle ())
168168 continue ;
169169
0 commit comments