Skip to content

Commit ed591aa

Browse files
committed
Formatting
1 parent acb05d1 commit ed591aa

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

PWGJE/Tasks/jetCorrelationD0.cxx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -256,12 +256,12 @@ struct JetCorrelationD0 {
256256
aod::CandidatesD0Data const& d0Candidates,
257257
soa::Join<aod::ChargedJets, aod::ChargedJetConstituents> const& jets)
258258
{
259-
if (!applyCollisionSelections(collision)){
259+
if (!applyCollisionSelections(collision)) {
260260
return;
261261
}
262262
tableCollision(collision.posZ());
263263
for (const auto& d0Candidate : d0Candidates) {
264-
if (d0Candidate.pt() < d0PtCutMin) { //once settled on a mlcut, then add the lower bound of the systematics as a cut here
264+
if (d0Candidate.pt() < d0PtCutMin) { // once settled on a mlcut, then add the lower bound of the systematics as a cut here
265265
continue;
266266
}
267267
const auto scores = d0Candidate.mlScores();
@@ -280,7 +280,7 @@ struct JetCorrelationD0 {
280280
continue;
281281
}
282282
float dphi = RecoDecay::constrainAngle(jet.phi() - d0Candidate.phi());
283-
if (abs(dphi - M_PI) > (M_PI / 2)) { //this is quite loose instead of pi/2 could do 0.6
283+
if (abs(dphi - M_PI) > (M_PI / 2)) { // this is quite loose instead of pi/2 could do 0.6
284284
continue;
285285
}
286286
fillJetHistograms(jet, dphi);
@@ -296,20 +296,20 @@ struct JetCorrelationD0 {
296296
PROCESS_SWITCH(JetCorrelationD0, processData, "charged particle level jet analysis", true);
297297

298298
void processMCDetector(soa::Filtered<aod::JetCollisions>::iterator const& collision,
299-
aod::CandidatesD0MCD const& d0Candidates,
300-
soa::Join<aod::ChargedMCDetectorLevelJets, aod::ChargedMCDetectorLevelJetConstituents> const& jets)
299+
aod::CandidatesD0MCD const& d0Candidates,
300+
soa::Join<aod::ChargedMCDetectorLevelJets, aod::ChargedMCDetectorLevelJetConstituents> const& jets)
301301
{
302-
if (!applyCollisionSelections(collision)){
302+
if (!applyCollisionSelections(collision)) {
303303
return;
304304
}
305305
tableCollision(collision.posZ());
306306
for (const auto& d0Candidate : d0Candidates) {
307-
if (d0Candidate.pt() < d0PtCutMin) { //once settled on a mlcut, then add the lower biund of the systematics as a cut here
307+
if (d0Candidate.pt() < d0PtCutMin) { // once settled on a mlcut, then add the lower biund of the systematics as a cut here
308308
continue;
309309
}
310310
const auto scores = d0Candidate.mlScores();
311311
fillD0Histograms(d0Candidate, scores);
312-
tableD0(tableCollision.lastIndex(), //might want to add some more detector level D0 quantities like prompt or non prompt info
312+
tableD0(tableCollision.lastIndex(), // might want to add some more detector level D0 quantities like prompt or non prompt info
313313
scores[2],
314314
scores[1],
315315
scores[0],
@@ -323,7 +323,7 @@ struct JetCorrelationD0 {
323323
continue;
324324
}
325325
float dphi = RecoDecay::constrainAngle(jet.phi() - d0Candidate.phi());
326-
if (abs(dphi - M_PI) > (M_PI / 2)) { //this is quite loose instead of pi/2 could do 0.6
326+
if (abs(dphi - M_PI) > (M_PI / 2)) { // this is quite loose instead of pi/2 could do 0.6
327327
continue;
328328
}
329329
fillJetHistograms(jet, dphi);
@@ -342,7 +342,7 @@ struct JetCorrelationD0 {
342342
aod::CandidatesD0MCP const& d0MCPCandidates,
343343
soa::Filtered<soa::Join<aod::ChargedMCParticleLevelJets, aod::ChargedMCParticleLevelJetConstituents>> const& jets)
344344
{
345-
if (!jetderiveddatautilities::selectCollision(collision, eventSelectionBits, skipMBGapEvents, applyRCTSelections)) { //build without this
345+
if (!jetderiveddatautilities::selectCollision(collision, eventSelectionBits, skipMBGapEvents, applyRCTSelections)) { // build without this
346346
return;
347347
}
348348
tableMcCollision(collision.posZ());
@@ -382,4 +382,4 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
382382
{
383383
return WorkflowSpec{
384384
adaptAnalysisTask<JetCorrelationD0>(cfgc)};
385-
}
385+
}

0 commit comments

Comments
 (0)