Skip to content

Commit 4b57638

Browse files
author
Antonio Palasciano
committed
Clang Fixes
1 parent 4ed2ebf commit 4b57638

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

PWGHF/TableProducer/HFBPlusToD0PiCandidateSelector.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ struct HfBplusTod0piCandidateSelector {
132132
return true;
133133
}
134134

135-
void process(aod::HfCandBPlus const& hfCandBs, soa::Join<aod::HfCandProng2, aod::HFSelD0Candidate>, aod::BigTracksPID const& tracks)
135+
void process(aod::HfCandBPlus const& hfCandBs, soa::Join<aod::HfCandProng2, aod::HFSelD0Candidate>, aod::BigTracksPID const& tracks)
136136
{
137137
TrackSelectorPID selectorPion(kPiPlus);
138138
selectorPion.setRangePtTPC(d_pidTPCMinpT, d_pidTPCMaxpT);
@@ -170,7 +170,7 @@ struct HfBplusTod0piCandidateSelector {
170170
pidPion = 1;
171171
} else {
172172
int pidTrackPosPion = selectorPion.getStatusTrackPIDAll(trackPi);
173-
if (pidTrackPosPion == TrackSelectorPID::Status::PIDAccepted){
173+
if (pidTrackPosPion == TrackSelectorPID::Status::PIDAccepted) {
174174
pidPion = 1;
175175
} else {
176176
pidPion = 0;
@@ -179,7 +179,7 @@ struct HfBplusTod0piCandidateSelector {
179179
}
180180
}
181181

182-
statusBplus = 1; //Successful topological and PID
182+
statusBplus = 1; //Successful topological and PID
183183

184184
hfSelBPlusToD0PiCandidate(statusBplus);
185185
// Printf("B+ candidate selection successful, candidate should be selected");

0 commit comments

Comments
 (0)