Skip to content
Merged
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
8 changes: 4 additions & 4 deletions PWGHF/D2H/TableProducer/candidateCreatorCharmResoReduced.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ struct HfCandidateCreatorCharmResoReduced {
// Produces: Tables with resonance info
Produces<aod::HfCandCharmReso> rowCandidateReso;

// Configurables
// Configurables
Configurable<double> invMassWindowD{"invMassWindowD", 0.5, "invariant-mass window for D candidates (GeV/c2)"};
Configurable<double> invMassWindowV0{"invMassWindowV0", 0.5, "invariant-mass window for V0 candidates (GeV/c2)"};
// QA switch
Expand Down Expand Up @@ -147,7 +147,7 @@ struct HfCandidateCreatorCharmResoReduced {
invMassV0 = candV0.invMassAntiLambda();
targetV0Type = V0Type::AntiLambda;
}
if (!TESTBIT(candV0.v0Type(),targetV0Type)) {
if (!TESTBIT(candV0.v0Type(), targetV0Type)) {
return false;
}
}
Expand Down Expand Up @@ -232,8 +232,8 @@ struct HfCandidateCreatorCharmResoReduced {
} // main function

void processDs2StarToDplusK0s(aod::HfRedCollisions::iterator const& collision,
aod::HfRed3PrNoTrks const& candsD,
aod::HfRedVzeros const& candsV0)
aod::HfRed3PrNoTrks const& candsD,
aod::HfRedVzeros const& candsV0)
{
runCandidateCreation<DecayChannel::Ds2StarToDplusK0s>(collision, candsD, candidatesK0s);
}
Expand Down
2 changes: 1 addition & 1 deletion PWGHF/D2H/TableProducer/dataCreatorCharmResoReduced.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ struct HfDataCreatorCharmResoReduced {
/// \param v0 is the v0 candidate
/// \param collision is the current collision
/// \param dauTracks are the v0 daughter tracks
/// \param dDaughtersIDs are the IDs of the D meson daughter tracks
/// \param dDaughtersIDs are the IDs of the D meson daughter tracks
/// \return a bitmap with mass hypotesis if passes all cuts
template <typename V0, typename Coll, typename Tr>
inline uint8_t getSelectionMapV0(const V0& v0, const Coll& collision, const std::array<Tr, 2>& dauTracks, const std::array<int, 3>& dDaughtersIDs)
Expand Down