Skip to content

Commit 4202a40

Browse files
author
Arkaprabha Saha
committed
Update: changing struct name and removing De mass from dE/dx calculation
1 parent 245c38f commit 4202a40

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
Lines changed: 4 additions & 4 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 antiNucleiTask.cxx
12+
/// \file AntiNucleiTask.cxx
1313
/// \brief A task to analyse Anti-nuclei
1414
/// \author Arkaprabha Saha <arkaprabha.saha@cern.ch>
1515

@@ -48,7 +48,7 @@ static const int minTpcCrossedRowsCut = 70;
4848
static const float maxVertexZCut = 10.f;
4949
} // namespace
5050

51-
struct antiNucleiTask {
51+
struct AntiNucleiTask {
5252
// Histogram registry: for holding histograms
5353
HistogramRegistry histos{"histos", {}, OutputObjHandlingPolicy::AnalysisObject};
5454

@@ -165,11 +165,11 @@ struct antiNucleiTask {
165165
}
166166
}
167167

168-
PROCESS_SWITCH(antiNucleiTask, process, "process", true);
168+
PROCESS_SWITCH(AntiNucleiTask, process, "process", true);
169169
};
170170

171171
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
172172
{
173173
return WorkflowSpec{
174-
adaptAnalysisTask<antiNucleiTask>(cfgc)};
174+
adaptAnalysisTask<AntiNucleiTask>(cfgc)};
175175
}

PWGLF/Tasks/Nuspex/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ o2physics_add_dpl_workflow(nuclei-ebye
120120
COMPONENT_NAME Analysis)
121121

122122
o2physics_add_dpl_workflow(anti-nuclei-hist
123-
SOURCES antiNucleiTask.cxx
123+
SOURCES AntiNucleiTask.cxx
124124
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
125125
COMPONENT_NAME Analysis)
126126

0 commit comments

Comments
 (0)