Skip to content

Commit 4ea8c3f

Browse files
committed
Fix O2linter issues in ALICE 3 DQ framework
1 parent b070ab6 commit 4ea8c3f

4 files changed

Lines changed: 302 additions & 302 deletions

File tree

ALICE3/TableProducer/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ o2physics_add_dpl_workflow(alice3-tracking-translator
6262
COMPONENT_NAME Analysis)
6363

6464
o2physics_add_dpl_workflow(alice3-dq-table-maker
65-
SOURCES dqTableMaker.cxx
65+
SOURCES alice3DqTableMaker.cxx
6666
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2::DetectorsBase O2Physics::AnalysisCCDB O2Physics::PWGDQCore
6767
COMPONENT_NAME Analysis)
6868

ALICE3/TableProducer/dqTableMaker.cxx renamed to ALICE3/TableProducer/alice3DqTableMaker.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/// \author Ionut Cristian Arsene <iarsene@cern.ch>, Oslo
1212
/// \author Alexander Tiekoetter <alexander.tiekoetter@cern.ch>, Muenster
1313
/// \brief Skimming Task for DQ Table Maker
14-
/// \file dqTableMaker.cxx
14+
/// \file alice3DqTableMaker.cxx
1515

1616
#include "PWGDQ/Core/AnalysisCompositeCut.h"
1717
#include "PWGDQ/Core/AnalysisCut.h"
@@ -71,7 +71,7 @@ constexpr static uint32_t GkEventMcFillMap = VarManager::ObjTypes::CollisionMC;
7171

7272
constexpr static uint32_t GkTrackFillMapWithCov = VarManager::ObjTypes::Track | VarManager::ObjTypes::TrackExtra | VarManager::ObjTypes::TrackDCA | VarManager::ObjTypes::TrackSelection | VarManager::ObjTypes::TrackCov | VarManager::ObjTypes::TrackPID;
7373

74-
struct DqTableMaker {
74+
struct Alice3DqTableMaker {
7575

7676
Produces<ReA3MCEvents> eventMC;
7777
Produces<ReA3MCTracks> trackMC;
@@ -706,11 +706,11 @@ struct DqTableMaker {
706706
fullSkimming(collisions, tracksBarrel, trackAssocs, mcCollisions, mcParticles);
707707
}
708708

709-
PROCESS_SWITCH(DqTableMaker, processSkimming, "Build DQ skimmed data model for ALICE3", true);
709+
PROCESS_SWITCH(Alice3DqTableMaker, processSkimming, "Build DQ skimmed data model for ALICE3", true);
710710
};
711711

712712
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
713713
{
714714
return WorkflowSpec{
715-
adaptAnalysisTask<DqTableMaker>(cfgc)};
715+
adaptAnalysisTask<Alice3DqTableMaker>(cfgc)};
716716
}

ALICE3/Tasks/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ o2physics_add_dpl_workflow(alice3strangeness
8080
COMPONENT_NAME Analysis)
8181

8282
o2physics_add_dpl_workflow(alice3-dq-efficiency
83-
SOURCES alice3-dq-efficiency.cxx
83+
SOURCES alice3DqEfficiency.cxx
8484
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::PWGDQCore
8585
COMPONENT_NAME Analysis)
8686

0 commit comments

Comments
 (0)