Skip to content

Commit c767827

Browse files
committed
refactor of dg producer
1 parent bcdeaab commit c767827

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

PWGUD/TableProducer/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
add_subdirectory(Converters)
1313

14-
o2physics_add_dpl_workflow(dgcand-producer
15-
SOURCES DGCandProducer.cxx
14+
o2physics_add_dpl_workflow(dg-cand-producer
15+
SOURCES dgCandProducer.cxx
1616
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::DGCutparHolder O2Physics::AnalysisCCDB O2Physics::EventFilteringUtils
1717
COMPONENT_NAME Analysis)
1818

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ using namespace o2::framework::expressions;
3636

3737
#define getHist(type, name) std::get<std::shared_ptr<type>>(histPointers[name])
3838

39-
struct DGCandProducer {
39+
struct DgCandProducer {
4040
// data tables
4141
Produces<aod::UDCollisions> outputCollisions;
4242
Produces<aod::UDCollisionsSels> outputCollisionsSels;
@@ -465,10 +465,10 @@ struct DGCandProducer {
465465
processReco(std::string("MCreco"), collision, bcs, tracks, fwdtracks, fv0as, ft0s, fdds);
466466
}
467467
}
468-
PROCESS_SWITCH(DGCandProducer, processMcData, "Produce UD tables with MC data", false);
468+
PROCESS_SWITCH(DgCandProducer, processMcData, "Produce UD tables with MC data", false);
469469
};
470470

471-
struct McDGCandProducer {
471+
struct McDgCandProducer {
472472
// MC tables
473473
Produces<aod::UDMcCollisions> outputMcCollisions;
474474
Produces<aod::UDMcParticles> outputMcParticles;
@@ -899,8 +899,8 @@ struct McDGCandProducer {
899899
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
900900
{
901901
WorkflowSpec workflow{
902-
adaptAnalysisTask<DGCandProducer>(cfgc, TaskName{"dgcandproducer"}),
903-
adaptAnalysisTask<McDGCandProducer>(cfgc, TaskName{"mcdgcandproducer"})};
902+
adaptAnalysisTask<DgCandProducer>(cfgc),
903+
adaptAnalysisTask<McDgCandProducer>(cfgc)};
904904

905905
return workflow;
906906
}

0 commit comments

Comments
 (0)