Skip to content

Commit f2d62e0

Browse files
kegangxiongkegangxiong
authored andcommitted
Rename the main struct
1 parent cde8f6f commit f2d62e0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

PWGCF/Flow/Tasks/flowZdcEnergy.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ using namespace o2::framework::expressions;
4444

4545
#define O2_DEFINE_CONFIGURABLE(NAME, TYPE, DEFAULT, HELP) Configurable<TYPE> NAME{#NAME, DEFAULT, HELP};
4646

47-
struct flowZdcEnergy {
47+
struct FlowZdcEnergy {
4848

4949
O2_DEFINE_CONFIGURABLE(cfgVtxZ, float, 10.f, "Event cut: accepted z-vertex range")
5050
O2_DEFINE_CONFIGURABLE(cfgEtaMax, float, 0.8f, "Maximum track #eta")
@@ -304,12 +304,12 @@ struct flowZdcEnergy {
304304
}
305305

306306
// Process switches
307-
PROCESS_SWITCH(flowZdcEnergy, processRun3, "Process Run 3 data", true);
308-
PROCESS_SWITCH(flowZdcEnergy, processRun2, "Process Run 2 data", false);
307+
PROCESS_SWITCH(FlowZdcEnergy, processRun3, "Process Run 3 data", true);
308+
PROCESS_SWITCH(FlowZdcEnergy, processRun2, "Process Run 2 data", false);
309309
};
310310

311311
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
312312
{
313313
return WorkflowSpec{
314-
adaptAnalysisTask<flowZdcEnergy>(cfgc)};
314+
adaptAnalysisTask<FlowZdcEnergy>(cfgc)};
315315
}

0 commit comments

Comments
 (0)