Skip to content

Commit fd9857e

Browse files
author
Marcello Di Costanzo
committed
Fix Megalinter
1 parent 7fa4f5c commit fd9857e

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

ALICE3/DataModel/A3DecayFinderTables.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ DECLARE_SOA_DYNAMIC_COLUMN(Y, y,
331331
DECLARE_SOA_TABLE(Alice3Cand3Ps, "AOD", "ALICE3CAND3P", //!
332332
o2::soa::Index<>,
333333
// general candidate properties
334-
HFCAND_COLUMNS,
334+
HFCAND_COLUMNS,
335335
HFPRONG0_COLUMNS,
336336
HFPRONG1_COLUMNS,
337337
HFPRONG2_COLUMNS,

ALICE3/TableProducer/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ o2physics_add_dpl_workflow(alice3-correlatorddbar
4747
COMPONENT_NAME Analysis)
4848

4949
o2physics_add_dpl_workflow(alice3-hf-selector-3prong
50-
SOURCES hfSelector3Prong.cxx
50+
SOURCES alice3HfSelector3Prong.cxx
5151
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore O2::DCAFitter O2Physics::MLCore
5252
COMPONENT_NAME Analysis)
5353

5454
o2physics_add_dpl_workflow(alice3-hf-tree-creator-3prong
55-
SOURCES hfTreeCreator3Prong.cxx
55+
SOURCES alice3HfTreeCreator3Prong.cxx
5656
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore O2::DCAFitter
5757
COMPONENT_NAME Analysis)

ALICE3/TableProducer/alice3-decayfinder.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ struct alice3decayFinder {
782782
continue;
783783
if (decayLengthXY < DMinDecayLengthXY || decayLengthXY > DMaxDecayLengthXY)
784784
continue;
785-
auto decayLengthSquaredCut = std::min((std::hypot(dmeson.P[0], dmeson.P[1], dmeson.P[2]) * 0.0066) + 0.01, (double)DDecayLengthSquaredCut);
785+
auto decayLengthSquaredCut = std::min((std::hypot(dmeson.P[0], dmeson.P[1], dmeson.P[2]) * 0.0066) + 0.01, static_cast<double>(DDecayLengthSquaredCut));
786786
if (decayLength * decayLength < decayLengthSquaredCut * decayLengthSquaredCut)
787787
continue;
788788

@@ -929,7 +929,7 @@ struct alice3decayFinder {
929929
continue;
930930
if (decayLengthXY < DMinDecayLengthXY || decayLengthXY > DMaxDecayLengthXY)
931931
continue;
932-
auto decayLengthSquaredCut = std::min((std::hypot(dmeson.P[0], dmeson.P[1], dmeson.P[2]) * 0.0066) + 0.01, (double)DDecayLengthSquaredCut);
932+
auto decayLengthSquaredCut = std::min((std::hypot(dmeson.P[0], dmeson.P[1], dmeson.P[2]) * 0.0066) + 0.01, static_cast<double>(DDecayLengthSquaredCut));
933933
if (decayLength * decayLength < decayLengthSquaredCut * decayLengthSquaredCut)
934934
continue;
935935

File renamed without changes.
File renamed without changes.

ALICE3/Tasks/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ o2physics_add_dpl_workflow(alice3-multicharm
6565
COMPONENT_NAME Analysis)
6666

6767
o2physics_add_dpl_workflow(alice3-hf-task-3prong
68-
SOURCES hfTask3Prong.cxx
68+
SOURCES alice3HfTask3Prong.cxx
6969
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore O2Physics::SGCutParHolder O2Physics::MLCore
7070
COMPONENT_NAME Analysis)
7171

0 commit comments

Comments
 (0)