Skip to content

Commit f4ad6ef

Browse files
authored
[PWGLF] Fix compilation warnings (#8387)
1 parent 6ef94b9 commit f4ad6ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGMM/Lumi/Tasks/lumiStability.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,14 +220,14 @@ struct lumiStabilityTask {
220220
void processMain(aod::FDDs const& fdds, aod::FT0s const& ft0s, aod::FV0As const& fv0s, aod::BCsWithTimestamps const& bcs)
221221
{
222222
int executionCounter = 0;
223-
uint32_t nOrbitsPerTF = 128; // 128 in 2022, 32 in 2023
223+
// uint32_t nOrbitsPerTF = 128; // 128 in 2022, 32 in 2023
224224
int runNumber = bcs.iteratorAt(0).runNumber();
225225
// std::string histName = "hOrbitFDDVertexCoinc_" + std::to_string(runNumber);
226226
if (runNumber != lastRunNumber && executionCounter < 1) {
227227
lastRunNumber = runNumber; // do it only once
228228
executionCounter++;
229-
int64_t tsSOR = 0;
230-
int64_t tsEOR = 1;
229+
// int64_t tsSOR = 0;
230+
// int64_t tsEOR = 1;
231231

232232
if (runNumber >= 500000) { // access CCDB for data or anchored MC only
233233
int64_t ts = bcs.iteratorAt(0).timestamp();

0 commit comments

Comments
 (0)