Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Detectors/ITSMFT/ITS/calibration/src/NoiseCalibrator.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ bool NoiseCalibrator::processTimeFrame(gsl::span<const o2::itsmft::CompClusterEx
static int nTF = 0;
LOG(INFO) << "Processing TF# " << nTF++;

auto pattIt = patterns.cbegin();
auto pattIt = patterns.begin();
for (const auto& rof : rofs) {
auto clustersInFrame = rof.getROFData(clusters);
for (const auto& c : clustersInFrame) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ bool NoiseSlotCalibrator::processTimeFrame(gsl::span<const o2::itsmft::CompClust
auto& slotTF = getSlotForTF(nTF);
auto& noiseMap = *(slotTF.getContainer());

auto pattIt = patterns.cbegin();
auto pattIt = patterns.begin();
for (const auto& rof : rofs) {
auto clustersInFrame = rof.getROFData(clusters);
for (const auto& c : clustersInFrame) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

#include "CathodeSegmentationImpl3.h"
#include "boost/format.hpp"
#include <boost/geometry.hpp>
#include "GenDetElemId2SegType.h"
#include "PadGroup.h"
#include "PadSize.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

#include "CathodeSegmentationImpl4.h"
#include "boost/format.hpp"
#include <boost/geometry.hpp>
#include "GenDetElemId2SegType.h"
#include "PadGroup.h"
#include "PadSize.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <cstdint>
#include <unordered_map>
#include <vector>
#include <memory>

#include <gsl/span>

Expand Down