Skip to content

Commit 9d95528

Browse files
committed
Format/clang changes
1 parent 76cdb26 commit 9d95528

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

PWGHF/Core/HFSelectorCuts.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ static const std::vector<std::string> pTBinLabels = {
649649

650650
// column labels
651651
static const std::vector<std::string> cutVarLabels = {"m", "CPA", "Chi2PCA", "d0 Ds+", "d0 Pi", "pT Ds+", "pT Pi", "Bs decLen", "Bs decLenXY", "Imp. Par. Product", "DeltaMDs", "Cos ThetaStar"};
652-
} // namespace hf_cuts_lb_tolcpi
652+
} // namespace hf_cuts_bs_todspi
653653

654654
namespace hf_cuts_x_tojpsipipi
655655
{

PWGHF/DataModel/HFSecondaryVertex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1233,7 +1233,7 @@ DECLARE_SOA_COLUMN(DebugMCRec, debugMCRec, int8_t); // debug flag for mi
12331233
enum DecayType { BsToDsPi }; // move this to a dedicated cascade namespace in the future?
12341234

12351235
// Bs → Ds+ π- → K+ K- π+ π-
1236-
//float massBs = RecoDecay::getMassPDG(pdg::Code::kBs);
1236+
// float massBs = RecoDecay::getMassPDG(pdg::Code::kBs);
12371237
template <typename T>
12381238
auto CtBs(const T& candidate)
12391239
{

PWGHF/TableProducer/HFCandidateCreatorBs.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ struct HFCandidateCreatorBsMC {
234234

235235
// Match reconstructed candidates.
236236
for (auto& candidate : candidates) {
237-
//Printf("New rec. candidate");
237+
// Printf("New rec. candidate");
238238
flag = 0;
239239
origin = 0;
240240
debug = 0;
@@ -247,11 +247,11 @@ struct HFCandidateCreatorBsMC {
247247
dsCand.index1_as<aod::BigTracksMC>(),
248248
dsCand.index2_as<aod::BigTracksMC>()};
249249
// Bs → Ds+ π-
250-
//Printf("Checking Bs → Ds+ π-");
250+
// Printf("Checking Bs → Ds+ π-");
251251
indexRec = RecoDecay::getMatchedMCRec(particlesMC, arrayDaughters, pdg::Code::kBs, array{+kKPlus, -kKPlus, +kPiPlus, -kPiPlus}, true, &sign, 2);
252252
if (indexRec > -1) {
253253
// Bs → Ds+ π-
254-
//Printf("Checking Bs → Ds+ π-");
254+
// Printf("Checking Bs → Ds+ π-");
255255
indexRec = RecoDecay::getMatchedMCRec(particlesMC, arrayDaughtersDs, pdg::Code::kDs, array{+kKPlus, -kKPlus, +kPiPlus}, true, &sign, 1);
256256
if (indexRec > -1) {
257257
flag = 1 << hf_cand_bs::DecayType::BsToDsPi;
@@ -265,14 +265,14 @@ struct HFCandidateCreatorBsMC {
265265

266266
// Match generated particles.
267267
for (auto& particle : particlesMC) {
268-
//Printf("New gen. candidate");
268+
// Printf("New gen. candidate");
269269
flag = 0;
270270
origin = 0;
271271
// Bs → Ds+ π-
272272
if (RecoDecay::isMatchedMCGen(particlesMC, particle, pdg::Code::kLambdaB0, array{int(pdg::Code::kDs), -kPiPlus}, true)) {
273273
// Match Ds+ -> φπ -> K+K-π
274274
auto DsCandMC = particlesMC.iteratorAt(particle.daughter0Id());
275-
//Printf("Checking Ds+ -> φπ -> K+K-π");
275+
// Printf("Checking Ds+ -> φπ -> K+K-π");
276276
if (RecoDecay::isMatchedMCGen(particlesMC, DsCandMC, int(pdg::Code::kDs), array{+kKPlus, -kKPlus, +kPiPlus}, true, &sign)) {
277277
flag = sign * (1 << hf_cand_bs::DecayType::BsToDsPi);
278278
}

0 commit comments

Comments
 (0)