Skip to content

Commit 9cbe826

Browse files
author
Marcello Di Costanzo
committed
Fix some linter errors
1 parent 2f1b298 commit 9cbe826

File tree

2 files changed

+22
-6
lines changed

2 files changed

+22
-6
lines changed

ALICE3/ML/alice3-mlresponse3prong.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
/// \brief Class to compute the ML response for Lc+ → p K- π+ analysis selections
1414
/// \author Marcello Di Costanzo <marcello.di.costanzo@cern.ch>, Polytechnic University of Turin and INFN Turin
1515

16-
#ifndef ALICE3_ML_ALICE3MLRESPONSE3PRONG_H_
17-
#define ALICE3_ML_ALICE3MLRESPONSE3PRONG_H_
16+
#ifndef ALICE3_ML_ALICE3_MLRESPONSE3PRONG_H_
17+
#define ALICE3_ML_ALICE3_MLRESPONSE3PRONG_H_
1818

1919
#include "PWGHF/DataModel/CandidateReconstructionTables.h"
2020

@@ -227,4 +227,4 @@ class Alice3MlResponse3Prong : public MlResponse<TypeOutputScore>
227227
#undef CHECK_AND_FILL_ML_ALICE3_HFHELPER
228228
#undef CHECK_AND_FILL_ML_ALICE3_OBJECT_SIGNED
229229

230-
#endif // ALICE3_ML_ALICE3MLRESPONSE3PRONG_H_
230+
#endif // ALICE3_ML_ALICE3_MLRESPONSE3PRONG_H_

ALICE3/TableProducer/alice3-decayfinder.cxx

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,24 @@
1717
// HF decays. Work in progress: use at your own risk!
1818
//
1919

20-
#include "PWGHF/Utils/utilsAnalysis.h"
21-
#include "PWGLF/DataModel/LFParticleIdentification.h"
22-
#include "PWGLF/DataModel/LFStrangenessTables.h"
20+
#include <cmath>
21+
#include <array>
22+
#include <cstdlib>
23+
#include <map>
24+
#include <iterator>
25+
#include <utility>
26+
#include <vector>
27+
#include <algorithm>
28+
29+
#include "Framework/runDataProcessing.h"
30+
#include "Framework/RunningWorkflowInfo.h"
31+
#include "Framework/AnalysisTask.h"
32+
#include "Framework/AnalysisDataModel.h"
33+
#include "Framework/ASoAHelpers.h"
34+
#include "DCAFitter/DCAFitterN.h"
35+
#include "ReconstructionDataFormats/Track.h"
36+
#include "Common/Core/RecoDecay.h"
37+
#include "Common/Core/trackUtilities.h"
2338

2439
#include "ALICE3/DataModel/A3DecayFinderTables.h"
2540
#include "ALICE3/DataModel/OTFPIDTrk.h"
@@ -30,6 +45,7 @@
3045
#include "Common/Core/TrackSelection.h"
3146
#include "Common/Core/trackUtilities.h"
3247
#include "Common/DataModel/TrackSelectionTables.h"
48+
#include "PWGHF/Utils/utilsAnalysis.h"
3349

3450
#include "CCDB/BasicCCDBManager.h"
3551
#include "DCAFitter/DCAFitterN.h"

0 commit comments

Comments
 (0)