Skip to content

Commit fdc7123

Browse files
committed
Fixed the O2-Macos Error
Fix O2 linter: align workflow file and struct naming Fix O2 linter: align workflow file and struct naming Fix O2 linter: align workflow file, struct, and CMake naming
1 parent 18c2c76 commit fdc7123

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

PWGLF/Tasks/Resonances/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ o2physics_add_dpl_workflow(f1protoncorrelation
114114
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
115115
COMPONENT_NAME Analysis)
116116

117-
o2physics_add_dpl_workflow(chargedkstaranalysis
117+
o2physics_add_dpl_workflow(chargedKStarAnalysis
118118
SOURCES chargedkstaranalysis.cxx
119119
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
120120
COMPONENT_NAME Analysis)

PWGLF/Tasks/Resonances/chargedkstaranalysis.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
/// \brief Reconstruction of track-track decay resonance candidates
1414
///
1515
///
16-
/// \author Protay
1716
/// \author Navneet
1817

1918
#include "PWGLF/DataModel/LFStrangenessTables.h"
@@ -233,14 +232,15 @@ struct chargedkstaranalysis {
233232
// PDG code
234233
int kPDGK0s = kK0Short;
235234
int kKstarPlus = static_cast<int>(o2::constants::physics::Pdg::kKPlusStar892);
236-
int kPiPlus = kPiPlus;
235+
// int kPiPlus = kPiPlus;
237236
int kPDGK0 = kK0;
238237
// Variable declaration
239238
ROOT::Math::PxPyPzEVector beam1{0., 0., -config.beamMomentum, 13600. / 2.};
240239
ROOT::Math::PxPyPzEVector beam2{0., 0., config.beamMomentum, 13600. / 2.};
241240

242241
void init(o2::framework::InitContext&)
243242
{
243+
244244
centrality = -999;
245245

246246
colCuts.setCuts(confEvtZvtx, confEvtTriggerCheck, confEvtOfflineCheck, /*checkRun3*/ true, /*triggerTVXsel*/ false, confEvtOccupancyInTimeRangeMax, confEvtOccupancyInTimeRangeMin);

0 commit comments

Comments
 (0)