Skip to content

Commit 6272df4

Browse files
committed
Please consider the following formatting changes
1 parent 0bbea3a commit 6272df4

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

EventFiltering/PWGLF/strangenessFilter.cxx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,6 @@ struct strangenessFilter {
283283
return true;
284284
}
285285

286-
287286
void init(o2::framework::InitContext&)
288287
{
289288
// set V0 parameters in the helper
@@ -712,7 +711,7 @@ struct strangenessFilter {
712711
if (TMath::Cos(mStraHelper.v0.pointingAngle) < cfgLLCuts.cfgv0CosPA) {
713712
continue;
714713
}
715-
if (std::fabs(mStraHelper.v0.daughterDCA ) > cfgLLCuts.cfgDCAV0Dau){
714+
if (std::fabs(mStraHelper.v0.daughterDCA) > cfgLLCuts.cfgDCAV0Dau) {
716715
continue;
717716
}
718717
if (std::hypot(mStraHelper.v0.momentum[0], mStraHelper.v0.momentum[1]) < cfgLLCuts.cfgV0PtMin) {
@@ -756,7 +755,7 @@ struct strangenessFilter {
756755
}
757756

758757
for (size_t i = 0; i < v0sSelTuple.size(); ++i) {
759-
for(size_t j = i + 1; j < v0sSelTuple.size(); ++j) {
758+
for (size_t j = i + 1; j < v0sSelTuple.size(); ++j) {
760759
auto d00 = std::get<0>(v0sSelTuple[i]);
761760
auto d01 = std::get<1>(v0sSelTuple[i]);
762761
auto d10 = std::get<0>(v0sSelTuple[j]);

EventFiltering/filterTables.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ DECLARE_SOA_COLUMN(TrackedXi, hasTrackedXi, bool); //! at least 1
154154
DECLARE_SOA_COLUMN(TrackedOmega, hasTrackedOmega, bool); //! at least 1 tracked Omega
155155
DECLARE_SOA_COLUMN(Tracked3Body, hasTracked3Body, bool); //! at least 1 tracked 3Body
156156
DECLARE_SOA_COLUMN(OmegaHighMult, hasOmegaHighMult, bool); //! at least 1 Omega + high-mult event
157-
DECLARE_SOA_COLUMN(LambdaLambda, lambdaLambda, bool); //! at least 2 lambda satisfying selection
157+
DECLARE_SOA_COLUMN(LambdaLambda, lambdaLambda, bool); //! at least 2 lambda satisfying selection
158158

159159
// F1-proton
160160
DECLARE_SOA_COLUMN(TriggerEventF1Proton, triggereventf1proton, bool); //! F1 - proton femto trigger event

0 commit comments

Comments
 (0)