Skip to content

Commit ba7dd6c

Browse files
committed
fixing second clang issue
1 parent 9638122 commit ba7dd6c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

PWGJE/Tasks/jetFormationTimeReclustering.cxx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ using namespace o2;
101101
using namespace o2::framework;
102102
using namespace o2::framework::expressions;
103103

104-
struct FormationTimeReclustering {
104+
struct JetFormationTimeReclustering {
105105

106106
Produces<aod::CJetTFSSs> jetSubstructureDataTable;
107107
Produces<aod::CMCDJetTFSSs> jetSubstructureMCDTable;
@@ -272,28 +272,28 @@ struct FormationTimeReclustering {
272272
void processDummy(aod::JetTracks const&)
273273
{
274274
}
275-
PROCESS_SWITCH(FormationTimeReclustering, processDummy, "Dummy process function turned on by default", true);
275+
PROCESS_SWITCH(JetFormationTimeReclustering, processDummy, "Dummy process function turned on by default", true);
276276

277277
void processChargedJetsData(soa::Join<aod::ChargedJets, aod::ChargedJetConstituents>::iterator const& jet,
278278
aod::JetTracks const& tracks)
279279
{
280280
analyseCharged<false>(jet, tracks, TracksPerCollision, jetSubstructureDataTable, jetSplittingsDataTable);
281281
}
282-
PROCESS_SWITCH(FormationTimeReclustering, processChargedJetsData, "charged jet substructure", false);
282+
PROCESS_SWITCH(JetFormationTimeReclustering, processChargedJetsData, "charged jet substructure", false);
283283

284284
void processChargedJetsEventWiseSubData(soa::Join<aod::ChargedEventWiseSubtractedJets, aod::ChargedEventWiseSubtractedJetConstituents>::iterator const& jet,
285285
aod::JetTracksSub const& tracks)
286286
{
287287
analyseCharged<true>(jet, tracks, TracksPerCollisionDataSub, jetSubstructureDataSubTable, jetSplittingsDataSubTable);
288288
}
289-
PROCESS_SWITCH(FormationTimeReclustering, processChargedJetsEventWiseSubData, "eventwise-constituent subtracted charged jet substructure", false);
289+
PROCESS_SWITCH(JetFormationTimeReclustering, processChargedJetsEventWiseSubData, "eventwise-constituent subtracted charged jet substructure", false);
290290

291291
void processChargedJetsMCD(typename soa::Join<aod::ChargedMCDetectorLevelJets, aod::ChargedMCDetectorLevelJetConstituents>::iterator const& jet,
292292
aod::JetTracks const& tracks)
293293
{
294294
analyseCharged<false>(jet, tracks, TracksPerCollision, jetSubstructureMCDTable, jetSplittingsMCDTable);
295295
}
296-
PROCESS_SWITCH(FormationTimeReclustering, processChargedJetsMCD, "charged jet substructure", false);
296+
PROCESS_SWITCH(JetFormationTimeReclustering, processChargedJetsMCD, "charged jet substructure", false);
297297

298298
void processChargedJetsMCP(typename soa::Join<aod::ChargedMCParticleLevelJets, aod::ChargedMCParticleLevelJetConstituents>::iterator const& jet)
299299
{
@@ -307,12 +307,12 @@ struct FormationTimeReclustering {
307307
jetReclustering<true, false>(jet, jetSplittingsMCPTable);
308308
jetSubstructureMCPTable(ptJet, phiJet, etaJet, energyMotherVec, ptLeadingVec, ptSubLeadingVec, thetaVec, leadingConstituentPt, tauFormVec, zVec, ptgVec, thetagVec, zgVec, taugVec);
309309
}
310-
PROCESS_SWITCH(FormationTimeReclustering, processChargedJetsMCP, "charged jet substructure on MC particle level", false);
310+
PROCESS_SWITCH(JetFormationTimeReclustering, processChargedJetsMCP, "charged jet substructure on MC particle level", false);
311311
};
312312

313313
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
314314
{
315315

316-
return WorkflowSpec{adaptAnalysisTask<FormationTimeReclustering>(
316+
return WorkflowSpec{adaptAnalysisTask<JetFormationTimeReclustering>(
317317
cfgc, TaskName{"jet-formation-time-reclustering"})};
318318
}

0 commit comments

Comments
 (0)