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: 3 additions & 5 deletions PWGHF/D2H/Tasks/taskFlowCharmHadrons.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ struct HfTaskFlowCharmHadrons {
}
}

bool subtractDaugsFromRedQVec = storeRedQVec && subtrDaugsFromRedQVec &&
bool subtractDaugsFromRedQVec = storeRedQVec && subtrDaugsFromRedQVec &&
(qVecRedDetector == QvecEstimator::TPCNeg ||
qVecRedDetector == QvecEstimator::TPCPos ||
qVecRedDetector == QvecEstimator::TPCTot);
Expand Down Expand Up @@ -925,8 +925,8 @@ struct HfTaskFlowCharmHadrons {

// Dplus with ML SP and EsE
void processDplusSPEsEMl(CollsWithSPEsEQvecs::iterator const& collision,
CandDplusDataWMl const& /*candidatesD0*/,
TracksWithExtra const& tracks)
CandDplusDataWMl const& /*candidatesD0*/,
TracksWithExtra const& tracks)
{
runFlowAnalysis<RunMode::kSPEsE, DecayChannel::DplusToPiKPi>(collision, candidatesDplus, tracks);
}
Expand Down Expand Up @@ -1069,8 +1069,6 @@ struct HfTaskFlowCharmHadrons {
// }
// PROCESS_SWITCH(HfTaskFlowCharmHadrons, processXic, "Process Xic candidates", false);



/// Compute resolution
/// \param collision is the collision with the Q vector information
/// \param bcs is used for the event selection based on centrality estimators with time information
Expand Down
5 changes: 2 additions & 3 deletions PWGHF/D2H/Utils/utilsFlow.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
#include <string>
#include <vector>


namespace o2::analysis
{
namespace hf_flow_utils
Expand All @@ -42,9 +41,9 @@
TPCNeg,
TPCTot };

class QVectorResoHelper {
class QVectorResoHelper

Check failure on line 44 in PWGHF/D2H/Utils/utilsFlow.h

View workflow job for this annotation

GitHub Actions / O2 linter

[pwghf/name/struct-class]

Names of PWGHF structs and classes must start with "Hf".
{
public:

QVectorResoHelper() = default;

/// Call once per run / timestamp update
Expand Down
Loading