Skip to content

Commit 263f1be

Browse files
authored
[PWGCF] Add some QA histos and event selection cut
Add topological cut QA histograms. Add event selection in MCRec.
1 parent 8ac5f4c commit 263f1be

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ struct FlowEfficiencyCasc {
6868
O2_DEFINE_CONFIGURABLE(cfgtpccrossoverfindable, int, 0, "minimum number of Ratio crossed rows over findable clusters")
6969
O2_DEFINE_CONFIGURABLE(cfgcheckDauTPC, bool, true, "check daughter tracks TPC or not")
7070
O2_DEFINE_CONFIGURABLE(cfgcheckDauTOF, bool, false, "check daughter tracks TOF or not")
71-
O2_DEFINE_CONFIGURABLE(cfgcheckMCParticle, bool, false, "check the particle and deacy channel is MC true or not")
71+
O2_DEFINE_CONFIGURABLE(cfgcheckMCParticle, bool, false, "check the particle and deacy channel is match or not")
7272
O2_DEFINE_CONFIGURABLE(cfgCasc_rapidity, float, 0.5, "rapidity")
7373

7474
O2_DEFINE_CONFIGURABLE(cfgNSigmatpctof, std::vector<float>, (std::vector<float>{3, 3, 3}), "tpc and tof NSigma for Pion Kaon Proton")
@@ -187,7 +187,6 @@ struct FlowEfficiencyCasc {
187187
return true;
188188
}
189189

190-
191190
void processRec(MyCollisions::iterator const& collision, V0MCCandidates const& V0s, CascMCCandidates const& Cascades, DaughterTracks const&, soa::Join<aod::CascMCCores, aod::CascMCCollRefs> const&, soa::Join<aod::V0MCCores, aod::V0MCCollRefs> const&)
192191
{
193192
registry.fill(HIST("eventCounter"), 0.5);

PWGCF/Flow/Tasks/flowGfwOmegaXi.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -718,8 +718,8 @@ struct FlowGfwOmegaXi {
718718
if (cfgOutputNUAWeights)
719719
fWeightsREF->fill(track.phi(), track.eta(), vtxz, track.pt(), cent, 0);
720720
}
721-
double Nch = hLocalDensity->Integral() / 2;
722-
registry.fill(HIST("hCentvsNch"), cent, Nch);
721+
double nch = hLocalDensity->Integral() / 2;
722+
registry.fill(HIST("hCentvsNch"), cent, nch);
723723
// fill GFW of V0 flow
724724
for (const auto& v0 : V0s) {
725725
auto v0posdau = v0.posTrack_as<DaughterTracks>();

0 commit comments

Comments
 (0)