Skip to content

Commit bfcff02

Browse files
authored
Fix some codechecker violations (#14936)
1 parent 73c5a52 commit bfcff02

File tree

22 files changed

+22
-23
lines changed

22 files changed

+22
-23
lines changed

Detectors/CPV/reconstruction/include/CPVReconstruction/CTFCoder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace o2
3232
namespace cpv
3333
{
3434

35-
class CTFCoder : public o2::ctf::CTFCoderBase
35+
class CTFCoder final : public o2::ctf::CTFCoderBase
3636
{
3737
public:
3838
CTFCoder(o2::ctf::CTFCoderBase::OpType op) : o2::ctf::CTFCoderBase(op, CTF::getNBlocks(), o2::detectors::DetID::CPV) {}

Detectors/CTP/reconstruction/include/CTPReconstruction/CTFCoder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace o2
3434
namespace ctp
3535
{
3636

37-
class CTFCoder : public o2::ctf::CTFCoderBase
37+
class CTFCoder final : public o2::ctf::CTFCoderBase
3838
{
3939
public:
4040
CTFCoder(o2::ctf::CTFCoderBase::OpType op) : o2::ctf::CTFCoderBase(op, CTF::getNBlocks(), o2::detectors::DetID::CTP) {}

Detectors/EMCAL/reconstruction/include/EMCALReconstruction/CTFCoder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace o2
3232
namespace emcal
3333
{
3434

35-
class CTFCoder : public o2::ctf::CTFCoderBase
35+
class CTFCoder final : public o2::ctf::CTFCoderBase
3636
{
3737
public:
3838
CTFCoder(o2::ctf::CTFCoderBase::OpType op) : o2::ctf::CTFCoderBase(op, CTF::getNBlocks(), o2::detectors::DetID::EMC) {}

Detectors/FIT/FDD/reconstruction/include/FDDReconstruction/CTFCoder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace o2
3333
namespace fdd
3434
{
3535

36-
class CTFCoder : public o2::ctf::CTFCoderBase
36+
class CTFCoder final : public o2::ctf::CTFCoderBase
3737
{
3838
public:
3939
CTFCoder(o2::ctf::CTFCoderBase::OpType op) : o2::ctf::CTFCoderBase(op, CTF::getNBlocks(), o2::detectors::DetID::FDD) {}

Detectors/FIT/FT0/reconstruction/include/FT0Reconstruction/CTFCoder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace o2
3434
namespace ft0
3535
{
3636

37-
class CTFCoder : public o2::ctf::CTFCoderBase
37+
class CTFCoder final : public o2::ctf::CTFCoderBase
3838
{
3939
public:
4040
CTFCoder(o2::ctf::CTFCoderBase::OpType op) : o2::ctf::CTFCoderBase(op, CTF::getNBlocks(), o2::detectors::DetID::FT0) {}

Detectors/FIT/FV0/reconstruction/include/FV0Reconstruction/CTFCoder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace o2
3030
namespace fv0
3131
{
3232

33-
class CTFCoder : public o2::ctf::CTFCoderBase
33+
class CTFCoder final : public o2::ctf::CTFCoderBase
3434
{
3535
public:
3636
CTFCoder(o2::ctf::CTFCoderBase::OpType op) : o2::ctf::CTFCoderBase(op, CTF::getNBlocks(), o2::detectors::DetID::FV0) {}

Detectors/GlobalTrackingWorkflow/study/src/DumpTracks.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ using TBracket = o2::math_utils::Bracketf_t;
4848

4949
using timeEst = o2::dataformats::TimeStampWithError<float, float>;
5050

51-
class DumpTracksSpec : public Task
51+
class DumpTracksSpec final : public Task
5252
{
5353
public:
5454
DumpTracksSpec(std::shared_ptr<DataRequest> dr, std::shared_ptr<o2::base::GRPGeomRequest> gr, GTrackID::mask_t src, bool useMC)

Detectors/GlobalTrackingWorkflow/study/src/SVStudy.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ using V0ID = o2::dataformats::V0Index;
6868

6969
using timeEst = o2::dataformats::TimeStampWithError<float, float>;
7070

71-
class SVStudySpec : public Task
71+
class SVStudySpec final : public Task
7272
{
7373
public:
7474
SVStudySpec(std::shared_ptr<DataRequest> dr, std::shared_ptr<o2::base::GRPGeomRequest> gr, GTrackID::mask_t src, bool useTPCCl, bool useMC)

Detectors/GlobalTrackingWorkflow/study/src/TPCTrackStudy.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ using TBracket = o2::math_utils::Bracketf_t;
4747

4848
using timeEst = o2::dataformats::TimeStampWithError<float, float>;
4949

50-
class TPCTrackStudySpec : public Task
50+
class TPCTrackStudySpec final : public Task
5151
{
5252
public:
5353
TPCTrackStudySpec(std::shared_ptr<DataRequest> dr, std::shared_ptr<o2::base::GRPGeomRequest> gr, const o2::tpc::CorrectionMapsLoaderGloOpts& sclOpts, GTrackID::mask_t src, bool useMC)

Detectors/GlobalTrackingWorkflow/study/src/TrackMCStudy.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ using TBracket = o2::math_utils::Bracketf_t;
8383

8484
using timeEst = o2::dataformats::TimeStampWithError<float, float>;
8585

86-
class TrackMCStudy : public Task
86+
class TrackMCStudy final : public Task
8787
{
8888
public:
8989
TrackMCStudy(std::shared_ptr<DataRequest> dr, std::shared_ptr<o2::base::GRPGeomRequest> gr, GTrackID::mask_t src, const o2::tpc::CorrectionMapsLoaderGloOpts& sclOpts, bool checkSV)

0 commit comments

Comments
 (0)