Skip to content

Commit 645f0ec

Browse files
Update HFFilterHelpers.h
1 parent 0c95b21 commit 645f0ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

EventFiltering/PWGHF/HFFilterHelpers.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ enum charmParticles {
104104
enum beautyParticles {
105105
kBplus = 0,
106106
kB0toDStar,
107+
kBc,
107108
kB0,
108109
kBs,
109-
kBc,
110110
kLb,
111111
kXib,
112112
kNBeautyParticles
@@ -234,7 +234,7 @@ struct CascCand {
234234

235235
static const std::array<std::string, kNCharmParticles> charmParticleNames{"D0", "Dplus", "Ds", "Lc", "Xic"};
236236
static const int nTotBeautyParts = static_cast<int>(kNBeautyParticles) + static_cast<int>(kNBeautyParticlesToJPsi);
237-
static const std::array<std::string, nTotBeautyParts> beautyParticleNames{"Bplus", "B0toDStar", "B0", "Bs", "Bc", "Lb", "Xib", "BplusToJPsi", "B0ToJPsi", "BsToJPsi", "LbToJPsi", "BcToJPsi"};
237+
static const std::array<std::string, nTotBeautyParts> beautyParticleNames{"Bplus", "B0toDStar", "Bc", "B0", "Bs", "Lb", "Xib", "BplusToJPsi", "B0ToJPsi", "BsToJPsi", "LbToJPsi", "BcToJPsi"};
238238
static const std::array<int, kNCharmParticles> pdgCodesCharm{421, 411, 431, 4122, 4232};
239239
static const std::array<std::string, 2> eventTitles = {"all", "rejected"};
240240
static const std::vector<std::string> hfTriggerNames{filtering::HfHighPt2P::columnLabel(), filtering::HfHighPt3P::columnLabel(), filtering::HfBeauty3P::columnLabel(), filtering::HfBeauty4P::columnLabel(), filtering::HfFemto2P::columnLabel(), filtering::HfFemto3P::columnLabel(), filtering::HfDoubleCharm2P::columnLabel(), filtering::HfDoubleCharm3P::columnLabel(), filtering::HfDoubleCharmMix::columnLabel(), filtering::HfV0Charm2P::columnLabel(), filtering::HfV0Charm3P::columnLabel(), filtering::HfCharmBarToXiBach::columnLabel(), filtering::HfSigmaCPPK::columnLabel(), filtering::HfSigmaC0K0::columnLabel(), filtering::HfPhotonCharm2P::columnLabel(), filtering::HfPhotonCharm3P::columnLabel(), filtering::HfSingleCharm2P::columnLabel(), filtering::HfSingleCharm3P::columnLabel(), filtering::HfSingleNonPromptCharm2P::columnLabel(), filtering::HfSingleNonPromptCharm3P::columnLabel(), filtering::HfCharmBarToXi2Bach::columnLabel(), filtering::HfPrCharm2P::columnLabel(), filtering::HfBtoJPsiKa::columnLabel(), filtering::HfBtoJPsiKstar::columnLabel(), filtering::HfBtoJPsiPhi::columnLabel(), filtering::HfBtoJPsiPrKa::columnLabel(), filtering::HfBtoJPsiPi::columnLabel()};
@@ -409,13 +409,13 @@ class HfFilterHelper
409409
mCutsSingleTrackBeauty4Prong = cutsSingleTrack4P;
410410
mCutsSingleTrackBeautyToJPsi = cutsSingleToJPsi;
411411
}
412-
void setCutsBhadrons(o2::framework::LabeledArray<double> cutsBplus, o2::framework::LabeledArray<double> cutsB0toDstar, o2::framework::LabeledArray<double> cutsB0, o2::framework::LabeledArray<double> cutsBs, o2::framework::LabeledArray<double> cutsBc, o2::framework::LabeledArray<double> cutsLb, o2::framework::LabeledArray<double> cutsXib)
412+
void setCutsBhadrons(o2::framework::LabeledArray<double> cutsBplus, o2::framework::LabeledArray<double> cutsB0toDstar, o2::framework::LabeledArray<double> cutsBc, o2::framework::LabeledArray<double> cutsB0, o2::framework::LabeledArray<double> cutsBs, o2::framework::LabeledArray<double> cutsLb, o2::framework::LabeledArray<double> cutsXib)
413413
{
414414
mCutsBhad[kBplus] = cutsBplus;
415415
mCutsBhad[kB0toDStar] = cutsB0toDstar;
416+
mCutsBhad[kBc] = cutsBc;
416417
mCutsBhad[kB0] = cutsB0;
417418
mCutsBhad[kBs] = cutsBs;
418-
mCutsBhad[kBc] = cutsBc;
419419
mCutsBhad[kLb] = cutsLb;
420420
mCutsBhad[kXib] = cutsXib;
421421
}

0 commit comments

Comments
 (0)