Skip to content

Commit f02034b

Browse files
committed
Please consider the following formatting changes
1 parent e981b85 commit f02034b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

PWGHF/HFC/Utils/utilsCorrelations.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ bool passPIDSelection(Atrack const& track, SpeciesContainer const mPIDspecies,
123123
return true; // Passed all checks
124124
}
125125

126-
//function to select candidate based on PDF and decay channels and their mass
126+
// function to select candidate based on PDF and decay channels and their mass
127127
template <bool isScCand, typename McParticle>
128128
bool matchCandAndMass(McParticle const& particle, double& massCand)
129129
{
@@ -146,32 +146,32 @@ bool matchCandAndMass(McParticle const& particle, double& massCand)
146146

147147
// Map decay type to mass
148148
switch (matchGenFlag) {
149-
case BIT(aod::hf_cand_sigmac::DecayType::Sc0ToPKPiPi):{
149+
case BIT(aod::hf_cand_sigmac::DecayType::Sc0ToPKPiPi): {
150150
massCand = o2::constants::physics::MassSigmaC0;
151151
return true;
152152
}
153153

154-
case BIT(aod::hf_cand_sigmac::DecayType::ScStar0ToPKPiPi):{
154+
case BIT(aod::hf_cand_sigmac::DecayType::ScStar0ToPKPiPi): {
155155
massCand = o2::constants::physics::MassSigmaCStar0;
156156
return true;
157157
}
158158

159-
case BIT(aod::hf_cand_sigmac::DecayType::ScplusplusToPKPiPi):{
159+
case BIT(aod::hf_cand_sigmac::DecayType::ScplusplusToPKPiPi): {
160160
massCand = o2::constants::physics::MassSigmaCStarPlusPlus;
161161
return true;
162162
}
163163

164-
case BIT(aod::hf_cand_sigmac::DecayType::ScStarPlusPlusToPKPiPi):{
164+
case BIT(aod::hf_cand_sigmac::DecayType::ScStarPlusPlusToPKPiPi): {
165165
massCand = o2::constants::physics::MassSigmaCStarPlusPlus;
166166
return true;
167167
}
168168

169-
case hf_decay::hf_cand_3prong::DecayChannelMain::LcToPKPi:{
169+
case hf_decay::hf_cand_3prong::DecayChannelMain::LcToPKPi: {
170170
massCand = o2::constants::physics::MassLambdaCPlus;
171171
return true;
172172
}
173173

174-
default:{
174+
default: {
175175
return false;
176176
}
177177
}

0 commit comments

Comments
 (0)