Skip to content

Commit 90dc5ba

Browse files
committed
Fix O2Linter errors for qvecConverter
1 parent 351dd63 commit 90dc5ba

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

PWGEM/Core/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
# or submit itself to any jurisdiction.
1111

1212
o2physics_add_dpl_workflow(qvec-converter
13-
SOURCES emQvecConverter.cxx
13+
SOURCES qvecConverter.cxx
1414
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
1515
COMPONENT_NAME Analysis)
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
/// \file emQvecConverter.cxx
12+
/// \file qvecConverter.cxx
1313
/// \brief Analysis task for neutral pion flow with EMCal
1414
/// \author M. Hemmer, marvin.hemmer@cern.ch
1515

@@ -24,7 +24,7 @@ using namespace o2;
2424
using namespace o2::framework;
2525

2626
// Converts EMEventsQvec_000 into EMEventsQvec_001
27-
struct EmQvecConverter {
27+
struct QvecConverter {
2828
Produces<aod::EMEventsQvec_001> qvec001;
2929

3030
void process(aod::EMEventsQvec_000 const& emEventsQVec)
@@ -39,6 +39,6 @@ struct EmQvecConverter {
3939
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
4040
{
4141
return WorkflowSpec{
42-
adaptAnalysisTask<EmQvecConverter>(cfgc),
42+
adaptAnalysisTask<QvecConverter>(cfgc),
4343
};
4444
}

0 commit comments

Comments
 (0)