Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@

#include <limits>
#include <map>
#include <set>
#include <string>
#include <vector>

// KFParticle
#ifndef HomogeneousField
#define HomogeneousField // o2-linter: disable=name/macro (Name is defined in KFParticle package)
Expand Down Expand Up @@ -232,7 +232,7 @@ struct HyperNucleus {
v0DaughterVec.push_back(dv0 - 1);
}
int getNdaughters() { return static_cast<int>(daughters.size()); }
std::vector<int> getV0daughters() { return v0DaughterVec; };
std::vector<int> getV0daughters() { return v0DaughterVec; }
std::vector<int> getNonV0daughters()
{
std::vector<int> vec;
Expand Down
8 changes: 3 additions & 5 deletions PWGLF/TableProducer/Nuspex/trHeAnalysis.cxx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright
// holders. All rights not expressly granted are reserved.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
// This software is distributed under the terms of the GNU General Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
Expand All @@ -10,9 +10,7 @@
// or submit itself to any jurisdiction.
///
/// \file trHeAnalysis.cxx
///
/// \brief triton and helion analysis on Run 3 pp data
///
/// \author Esther Bartsch <esther.bartsch@cern.ch>, Goethe University Frankfurt

#include "MetadataHelper.h"
Expand Down Expand Up @@ -287,7 +285,7 @@ struct TrHeAnalysis {
Configurable<float> cfgMaxDCAXY{"cfgMaxDCAXY", 10000.f, "Maximum DCA to PV in Z"};
Configurable<float> cfgMinDCAZ{"cfgMinDCAZ", 0.f, "Minimum DCA to PV in XY"};
Configurable<float> cfgMaxDCAZ{"cfgMaxDCAZ", 10000.f, "Maximum DCA to PV in Z"};
Configurable<int> cfgTrackSign{"cfgTrackSign", 0, "1: positive only, -1: negative only, 0: all tracks"};
Configurable<int> cfgTrackSign{"cfgTrackSign", 0, "1: positive only, -1: negative only, 0: all tracks"};
} trackCuts;

Configurable<LabeledArray<float>> cfgBetheBlochParams{"cfgBetheBlochParams",
Expand Down
Loading