Skip to content

Commit

Permalink
more linter
Browse files Browse the repository at this point in the history
  • Loading branch information
pbuehler committed Jan 17, 2025
1 parent 649c354 commit 638a4dc
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
7 changes: 4 additions & 3 deletions PWGUD/Core/UDHelpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#include <vector>
#include <bitset>

#include "TLorentzVector.h"
#include "Framework/Logger.h"
#include "DataFormatsFT0/Digit.h"
Expand Down Expand Up @@ -741,14 +742,14 @@ int64_t sameMCCollision(T tracks, aod::McCollisions, aod::McParticles)
colID = mccol.globalIndex();
} else {
if (colID != mccol.globalIndex()) {
return (int64_t)-1;
return static_cast<int64_t>(-1);
}
}
} else {
return (int64_t)-1;
return static_cast<int64_t>(-1);
}
} else {
return (int64_t)-1;
return static_cast<int64_t>(-1);
}
}

Expand Down
6 changes: 6 additions & 0 deletions PWGUD/Core/decayTree.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.

#include <utility>
#include <cstdio>
#include <map>
#include <string>
#include <vector>

#include "rapidjson/document.h"
#include "rapidjson/filereadstream.h"
#include "decayTree.h"
Expand Down
5 changes: 5 additions & 0 deletions PWGUD/Core/decayTree.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
#ifndef PWGUD_CORE_DECAYTREE_H_
#define PWGUD_CORE_DECAYTREE_H_

#include <utility>
#include <map>
#include <vector>
#include <string>

#include "Framework/AnalysisTask.h"
#include "Framework/O2DatabasePDGPlugin.h"
#include "Framework/HistogramRegistry.h"
Expand Down
1 change: 1 addition & 0 deletions PWGUD/TableProducer/DGCandProducer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <vector>
#include <string>
#include <map>

#include "Framework/runDataProcessing.h"
#include "Framework/AnalysisTask.h"
#include "Framework/HistogramRegistry.h"
Expand Down
2 changes: 2 additions & 0 deletions PWGUD/Tasks/decayTreeAnalyzer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
// \author Paul Buehler, [email protected]
// \since 01.03.2024

#include <string>

#include "Framework/runDataProcessing.h"
#include "Framework/AnalysisTask.h"

Expand Down

0 comments on commit 638a4dc

Please sign in to comment.