Skip to content
Merged
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
2 changes: 1 addition & 1 deletion PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@
straHelper.v0.daughterDCA,
straHelper.v0.positiveDCAxy,
straHelper.v0.negativeDCAxy,
TMath::Cos(straHelper.v0.pointingAngle),

Check warning on line 751 in PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[root-entity]

Consider replacing ROOT entities with equivalents from standard C++ or from O2.
straHelper.v0.dcaXY,
v0.v0Type());
v0dataLink(v0cores.lastIndex(), -1);
Expand Down Expand Up @@ -926,7 +926,7 @@
if (mcParticleIsReco[mcParticle.globalIndex()] == true)
continue; // skip if already created in list

if (TMath::Abs(mcParticle.y()) > v0BuilderOpts.mc_rapidityWindow)

Check warning on line 929 in PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[root-entity]

Consider replacing ROOT entities with equivalents from standard C++ or from O2.
continue; // skip outside midrapidity

if (
Expand Down Expand Up @@ -1124,7 +1124,7 @@
auto const& posTrack = v0.template posTrack_as<TTracks>();
auto const& negTrack = v0.template negTrack_as<TTracks>();
auto const& bachTrack = cascade.template bachelor_as<TTracks>();
if(v0Map[v0.globalIndex()]<0){
if (v0Map[v0.globalIndex()] < 0) {
// this V0 hasn't been stored / cached
cascdataLink(-1);
interlinks.cascadeToCascCores.push_back(-1);
Expand Down Expand Up @@ -1301,7 +1301,7 @@
if (mcParticleIsReco[mcParticle.globalIndex()] == true)
continue; // skip if already created in list

if (TMath::Abs(mcParticle.y()) > cascadeBuilderOpts.mc_rapidityWindow)

Check warning on line 1304 in PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[root-entity]

Consider replacing ROOT entities with equivalents from standard C++ or from O2.
continue; // skip outside midrapidity

if (
Expand All @@ -1326,7 +1326,7 @@
if (dau.getProcess() != 4) // check whether the daughter comes from a decay
continue;

if (TMath::Abs(dau.pdgCode()) == 211 || TMath::Abs(dau.pdgCode()) == 321) {

Check warning on line 1329 in PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[root-entity]

Consider replacing ROOT entities with equivalents from standard C++ or from O2.
thisCascInfo.pdgCodeBachelor = dau.pdgCode();
thisCascInfo.bachP[0] = dau.px();
thisCascInfo.bachP[1] = dau.py();
Expand Down
Loading