Skip to content

report_cpplint

Vít Kučera edited this page Mar 30, 2026 · 26 revisions

Report from cpplint

To access the full raw file, add .md in the URL.

Summary

Per category

category issues
build/header_guard 70
build/include 5
build/include_what_you_use 240
readability/alt_tokens 90
readability/braces 35
readability/casting 244
readability/inheritance 41
readability/multiline_comment 4
runtime/arrays 12
runtime/explicit 13
runtime/int 32
runtime/string 10
whitespace/comma 4
whitespace/empty_if_body 2
whitespace/ending_newline 7
whitespace/newline 14
whitespace/parens 28
total 851

Per directory, per line

directory issues issues per 1000 lines
ALICE3 7 0.348
Common 56 1.35
DPG 29 0.939
EventFiltering 33 1.96
PWGCF 308 1.73
PWGDQ 34 0.574
PWGEM 49 0.676
PWGHF 2 0.0178
PWGJE 30 0.445
PWGLF 195 0.992
PWGMM 34 1.84
PWGUD 15 0.34
Tools 3 0.589
Tutorials 56 5.47
total 851 0.974

Issues

ALICE3

ALICE3/Core/DelphesO2LutWriter.cxx

ALICE3/Core/DelphesO2LutWriter.cxx:53:  Do not include .C files from other packages  [build/include] [4]

ALICE3/Core/TOFResoALICE3.h

ALICE3/Core/TOFResoALICE3.h:38:  You don't need a ; after a }  [readability/braces] [4]

ALICE3/Macros/drawFastTracker.C

ALICE3/Macros/drawFastTracker.C:77:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

ALICE3/Macros/testFastTracker.C

ALICE3/Macros/testFastTracker.C:22:  Add #include <string> for string  [build/include_what_you_use] [4]

ALICE3/TableProducer/alice3-centrality.cxx

ALICE3/TableProducer/alice3-centrality.cxx:55:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
ALICE3/TableProducer/alice3-centrality.cxx:48:  Add #include <string> for string  [build/include_what_you_use] [4]

ALICE3/Tasks/alice3-qa-multiplicity.cxx

ALICE3/Tasks/alice3-qa-multiplicity.cxx:44:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]

Common

Common/CCDB/TriggerAliases.cxx

Common/CCDB/TriggerAliases.cxx:19:  Static/global string variables are not permitted.  [runtime/string] [4]

Common/CCDB/macros/ctpRateF.C

Common/CCDB/macros/ctpRateF.C:126:  Add #include <string> for string  [build/include_what_you_use] [4]
Common/CCDB/macros/ctpRateF.C:163:  Add #include <iostream> for cout  [build/include_what_you_use] [4]

Common/CCDB/macros/upload_event_selection_params.C

Common/CCDB/macros/upload_event_selection_params.C:31:  Do not use variable-length arrays.  Use an appropriately named ('k' followed by CamelCase) compile-time constant for the size.  [runtime/arrays] [1]
Common/CCDB/macros/upload_event_selection_params.C:32:  Do not use variable-length arrays.  Use an appropriately named ('k' followed by CamelCase) compile-time constant for the size.  [runtime/arrays] [1]
Common/CCDB/macros/upload_event_selection_params.C:33:  Do not use variable-length arrays.  Use an appropriately named ('k' followed by CamelCase) compile-time constant for the size.  [runtime/arrays] [1]
Common/CCDB/macros/upload_event_selection_params.C:252:  Add #include <cstdio> for printf  [build/include_what_you_use] [4]

Common/CCDB/macros/upload_event_selection_params_run3.C

Common/CCDB/macros/upload_event_selection_params_run3.C:143:  Could not find a newline character at the end of the file.  [whitespace/ending_newline] [5]

Common/Core/EventMixing.h

Common/Core/EventMixing.h:12:  #ifndef header guard has wrong style, please use: COMMON_CORE_EVENTMIXING_H_  [build/header_guard] [5]
Common/Core/EventMixing.h:50:  #endif line should be "#endif  // COMMON_CORE_EVENTMIXING_H_"  [build/header_guard] [5]

Common/Core/PID/TPCPIDResponse.h

Common/Core/PID/TPCPIDResponse.h:80:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
Common/Core/PID/TPCPIDResponse.h:89:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
Common/Core/PID/TPCPIDResponse.h:133:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
Common/Core/PID/TPCPIDResponse.h:182:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]

Common/Core/TrackSelection.cxx

Common/Core/TrackSelection.cxx:42:  For a static/global string constant, use a C style string instead: "const char TrackSelection::mCutNames[]".  [runtime/string] [4]

Common/Core/Zorro.h

Common/Core/Zorro.h:19:  #ifndef header guard has wrong style, please use: COMMON_CORE_ZORRO_H_  [build/header_guard] [5]
Common/Core/Zorro.h:106:  #endif line should be "#endif  // COMMON_CORE_ZORRO_H_"  [build/header_guard] [5]

Common/Core/ZorroHelper.h

Common/Core/ZorroHelper.h:13:  #ifndef header guard has wrong style, please use: COMMON_CORE_ZORROHELPER_H_  [build/header_guard] [5]
Common/Core/ZorroHelper.h:24:  #endif line should be "#endif  // COMMON_CORE_ZORROHELPER_H_"  [build/header_guard] [5]

Common/Core/ZorroSummary.h

Common/Core/ZorroSummary.h:13:  #ifndef header guard has wrong style, please use: COMMON_CORE_ZORROSUMMARY_H_  [build/header_guard] [5]
Common/Core/ZorroSummary.h:83:  #endif line should be "#endif  // COMMON_CORE_ZORROSUMMARY_H_"  [build/header_guard] [5]

Common/DataModel/Centrality.h

Common/DataModel/Centrality.h:93:  You don't need a ; after a }  [readability/braces] [4]
Common/DataModel/Centrality.h:94:  You don't need a ; after a }  [readability/braces] [4]
Common/DataModel/Centrality.h:95:  You don't need a ; after a }  [readability/braces] [4]
Common/DataModel/Centrality.h:100:  You don't need a ; after a }  [readability/braces] [4]
Common/DataModel/Centrality.h:101:  You don't need a ; after a }  [readability/braces] [4]
Common/DataModel/Centrality.h:102:  You don't need a ; after a }  [readability/braces] [4]
Common/DataModel/Centrality.h:103:  You don't need a ; after a }  [readability/braces] [4]
Common/DataModel/Centrality.h:104:  You don't need a ; after a }  [readability/braces] [4]

Common/TableProducer/match-mft-ft0.cxx

Common/TableProducer/match-mft-ft0.cxx:127:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:131:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:158:  Using C-style cast.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:159:  Using C-style cast.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:174:  Using C-style cast.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:178:  Using C-style cast.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:189:  Using C-style cast.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:194:  Using C-style cast.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:198:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:205:  Using C-style cast.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:209:  Using C-style cast.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:212:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:218:  Using C-style cast.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:228:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
Common/TableProducer/match-mft-ft0.cxx:233:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]

Common/TableProducer/timestamp.cxx

Common/TableProducer/timestamp.cxx:129:  Using deprecated casting style.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]

Common/Tasks/checkDataModelMC.cxx

Common/Tasks/checkDataModelMC.cxx:44:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
Common/Tasks/checkDataModelMC.cxx:58:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
Common/Tasks/checkDataModelMC.cxx:102:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]

Common/Tasks/flowTest.cxx

Common/Tasks/flowTest.cxx:103:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]

Common/Tasks/multiplicityQa.cxx

Common/Tasks/multiplicityQa.cxx:293:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
Common/Tasks/multiplicityQa.cxx:294:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
Common/Tasks/multiplicityQa.cxx:350:  Using C-style cast.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]

Common/Tools/Multiplicity/MultModule.h

Common/Tools/Multiplicity/MultModule.h:456:  Do not use variable-length arrays.  Use an appropriately named ('k' followed by CamelCase) compile-time constant for the size.  [runtime/arrays] [1]

Common/Tools/Multiplicity/multCalibrator.cxx

Common/Tools/Multiplicity/multCalibrator.cxx:269:  Do not use variable-length arrays.  Use an appropriately named ('k' followed by CamelCase) compile-time constant for the size.  [runtime/arrays] [1]
Common/Tools/Multiplicity/multCalibrator.cxx:270:  Do not use variable-length arrays.  Use an appropriately named ('k' followed by CamelCase) compile-time constant for the size.  [runtime/arrays] [1]

Common/Tools/timestampModule.h

Common/Tools/timestampModule.h:139:  Using deprecated casting style.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]

DPG

DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx

DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:1098:  An else should appear on the same line as the preceding }  [whitespace/newline] [4]
DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:1098:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]
DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:1110:  An else should appear on the same line as the preceding }  [whitespace/newline] [4]
DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:1110:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]
DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:1399:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]
DPG/Tasks/AOTEvent/detectorOccupancyQa.cxx:1461:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]

DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx

DPG/Tasks/AOTEvent/lightIonsEvSelQa.cxx:998:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]

DPG/Tasks/AOTEvent/matchingQa.cxx

DPG/Tasks/AOTEvent/matchingQa.cxx:377:  Add #include <algorithm> for sort  [build/include_what_you_use] [4]
DPG/Tasks/AOTEvent/matchingQa.cxx:539:  Add #include <map> for map<>  [build/include_what_you_use] [4]
DPG/Tasks/AOTEvent/matchingQa.cxx:703:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

DPG/Tasks/AOTTrack/MonitorFilterBit.cxx

DPG/Tasks/AOTTrack/MonitorFilterBit.cxx:378:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx

DPG/Tasks/AOTTrack/V0Cascades/qaEfficiencyV0s.cxx:57:  Add #include <memory> for shared_ptr<>  [build/include_what_you_use] [4]

DPG/Tasks/AOTTrack/qaEventTrack.h

DPG/Tasks/AOTTrack/qaEventTrack.h:0:  No #ifndef header guard found, suggested CPP variable is: DPG_TASKS_AOTTRACK_QAEVENTTRACK_H_  [build/header_guard] [5]
DPG/Tasks/AOTTrack/qaEventTrack.h:105:  Use int16_t/int64_t/etc, rather than the C type short  [runtime/int] [4]

DPG/Tasks/AOTTrack/qaEventTrackLite.cxx

DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:329:  Using C-style cast.  Use static_cast<int16_t>(...) instead  [readability/casting] [4]
DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:330:  Using C-style cast.  Use static_cast<int16_t>(...) instead  [readability/casting] [4]
DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:128:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
DPG/Tasks/AOTTrack/qaEventTrackLite.cxx:159:  Add #include <string> for string  [build/include_what_you_use] [4]

DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx

DPG/Tasks/AOTTrack/qaPrimVtxVsTime.cxx:34:  Add #include <string> for string  [build/include_what_you_use] [4]

DPG/Tasks/AOTTrack/qaTrackSplitting.cxx

DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:87:  Using C-style cast.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:122:  Add #include <memory> for shared_ptr<>  [build/include_what_you_use] [4]
DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:124:  Add #include <map> for map<>  [build/include_what_you_use] [4]
DPG/Tasks/AOTTrack/qaTrackSplitting.cxx:124:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

DPG/Tasks/Monitor/MC/taskMcSimpleQC.cxx

DPG/Tasks/Monitor/MC/taskMcSimpleQC.cxx:56:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
DPG/Tasks/Monitor/MC/taskMcSimpleQC.cxx:79:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
DPG/Tasks/Monitor/MC/taskMcSimpleQC.cxx:87:  Could not find a newline character at the end of the file.  [whitespace/ending_newline] [5]

DPG/Tasks/TOF/tofOfflineCalib.cxx

DPG/Tasks/TOF/tofOfflineCalib.cxx:64:  Add #include <memory> for shared_ptr<>  [build/include_what_you_use] [4]

DPG/Tasks/TOF/tofSkimsTableCreator.h

DPG/Tasks/TOF/tofSkimsTableCreator.h:47:  Use int16_t/int64_t/etc, rather than the C type short  [runtime/int] [4]

DPG/Tasks/TPC/tpcTreeCreatorLight.cxx

DPG/Tasks/TPC/tpcTreeCreatorLight.cxx:91:  Using C-style cast.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]

EventFiltering

EventFiltering/PWGEM/EMPhotonFilterQC.cxx

EventFiltering/PWGEM/EMPhotonFilterQC.cxx:70:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

EventFiltering/PWGJE/fullJetFilter.cxx

EventFiltering/PWGJE/fullJetFilter.cxx:476:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
EventFiltering/PWGJE/fullJetFilter.cxx:627:  Add #include <map> for map<>  [build/include_what_you_use] [4]
EventFiltering/PWGJE/fullJetFilter.cxx:648:  Add #include <iostream> for cout  [build/include_what_you_use] [4]

EventFiltering/PWGLF/filterf1proton.cxx

EventFiltering/PWGLF/filterf1proton.cxx:445:  Add #include <map> for map<>  [build/include_what_you_use] [4]

EventFiltering/PWGLF/strangenessFilter.cxx

EventFiltering/PWGLF/strangenessFilter.cxx:185:  Add #include <string> for string  [build/include_what_you_use] [4]
EventFiltering/PWGLF/strangenessFilter.cxx:821:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
EventFiltering/PWGLF/strangenessFilter.cxx:1273:  Add #include <set> for set<>  [build/include_what_you_use] [4]

EventFiltering/PWGMM/multFilter.cxx

EventFiltering/PWGMM/multFilter.cxx:33:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

EventFiltering/PWGUD/diffractionBCFilter.cxx

EventFiltering/PWGUD/diffractionBCFilter.cxx:95:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
EventFiltering/PWGUD/diffractionBCFilter.cxx:99:  Using C-style cast.  Use static_cast<int32_t>(...) instead  [readability/casting] [4]
EventFiltering/PWGUD/diffractionBCFilter.cxx:111:  Using C-style cast.  Use static_cast<int32_t>(...) instead  [readability/casting] [4]
EventFiltering/PWGUD/diffractionBCFilter.cxx:178:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
EventFiltering/PWGUD/diffractionBCFilter.cxx:183:  Using C-style cast.  Use static_cast<int32_t>(...) instead  [readability/casting] [4]
EventFiltering/PWGUD/diffractionBCFilter.cxx:195:  Using C-style cast.  Use static_cast<int32_t>(...) instead  [readability/casting] [4]
EventFiltering/PWGUD/diffractionBCFilter.cxx:331:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
EventFiltering/PWGUD/diffractionBCFilter.cxx:148:  Add #include <map> for map<>  [build/include_what_you_use] [4]
EventFiltering/PWGUD/diffractionBCFilter.cxx:148:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

EventFiltering/PWGUD/diffractionFilter.cxx

EventFiltering/PWGUD/diffractionFilter.cxx:73:  Using C-style cast.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
EventFiltering/PWGUD/diffractionFilter.cxx:209:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

EventFiltering/macros/cefpOutputChecker.C

EventFiltering/macros/cefpOutputChecker.C:16:  Add #include <string> for string  [build/include_what_you_use] [4]

EventFiltering/macros/checkBCRange.C

EventFiltering/macros/checkBCRange.C:182:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

EventFiltering/macros/checkBCrangesSkimming.C

EventFiltering/macros/checkBCrangesSkimming.C:393:  Add #include <string> for string  [build/include_what_you_use] [4]
EventFiltering/macros/checkBCrangesSkimming.C:400:  Add #include <memory> for unique_ptr<>  [build/include_what_you_use] [4]
EventFiltering/macros/checkBCrangesSkimming.C:475:  Add #include <algorithm> for max  [build/include_what_you_use] [4]

EventFiltering/macros/checkSkimming.C

EventFiltering/macros/checkSkimming.C:132:  Could not find a newline character at the end of the file.  [whitespace/ending_newline] [5]

EventFiltering/macros/getMenu.C

EventFiltering/macros/getMenu.C:98:  Add #include <map> for map<>  [build/include_what_you_use] [4]

EventFiltering/macros/selectivityPlot.C

EventFiltering/macros/selectivityPlot.C:44:  Add #include <string> for string  [build/include_what_you_use] [4]

EventFiltering/macros/uploadOTSobjects.C

EventFiltering/macros/uploadOTSobjects.C:55:  Add #include <utility> for pair<>  [build/include_what_you_use] [4]
EventFiltering/macros/uploadOTSobjects.C:78:  Add #include <memory> for unique_ptr<>  [build/include_what_you_use] [4]
EventFiltering/macros/uploadOTSobjects.C:103:  Add #include <algorithm> for sort  [build/include_what_you_use] [4]

EventFiltering/selectBCRange.cxx

EventFiltering/selectBCRange.cxx:114:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
EventFiltering/selectBCRange.cxx:117:  Add #include <algorithm> for max  [build/include_what_you_use] [4]

PWGCF

PWGCF/Core/CorrelationContainer.cxx

PWGCF/Core/CorrelationContainer.cxx:106:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
PWGCF/Core/CorrelationContainer.cxx:416:  Using C-style cast.  Use reinterpret_cast<TH2*>(...) instead  [readability/casting] [4]
PWGCF/Core/CorrelationContainer.cxx:721:  Using C-style cast.  Use reinterpret_cast<TH2*>(...) instead  [readability/casting] [4]
PWGCF/Core/CorrelationContainer.cxx:829:  Using C-style cast.  Use reinterpret_cast<THnBase*>(...) instead  [readability/casting] [4]
PWGCF/Core/CorrelationContainer.cxx:1003:  Using C-style cast.  Use reinterpret_cast<TH2*>(...) instead  [readability/casting] [4]
PWGCF/Core/CorrelationContainer.cxx:1013:  Using C-style cast.  Use reinterpret_cast<TH2*>(...) instead  [readability/casting] [4]
PWGCF/Core/CorrelationContainer.cxx:1163:  Using C-style cast.  Use reinterpret_cast<TH1D*>(...) instead  [readability/casting] [4]
PWGCF/Core/CorrelationContainer.cxx:1164:  Using C-style cast.  Use reinterpret_cast<TH3D*>(...) instead  [readability/casting] [4]
PWGCF/Core/CorrelationContainer.cxx:1169:  Using C-style cast.  Use reinterpret_cast<TH1D*>(...) instead  [readability/casting] [4]
PWGCF/Core/CorrelationContainer.cxx:1170:  Using C-style cast.  Use reinterpret_cast<TH3D*>(...) instead  [readability/casting] [4]
PWGCF/Core/CorrelationContainer.cxx:1423:  Using C-style cast.  Use reinterpret_cast<THnBase*>(...) instead  [readability/casting] [4]
PWGCF/Core/CorrelationContainer.cxx:114:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/Core/CorrelationContainer.h

PWGCF/Core/CorrelationContainer.h:12:  #ifndef header guard has wrong style, please use: PWGCF_CORE_CORRELATIONCONTAINER_H_  [build/header_guard] [5]
PWGCF/Core/CorrelationContainer.h:184:  #endif line should be "#endif  // PWGCF_CORE_CORRELATIONCONTAINER_H_"  [build/header_guard] [5]
PWGCF/Core/CorrelationContainer.h:40:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/Core/PairCuts.h

PWGCF/Core/PairCuts.h:12:  #ifndef header guard has wrong style, please use: PWGCF_CORE_PAIRCUTS_H_  [build/header_guard] [5]
PWGCF/Core/PairCuts.h:342:  #endif line should be "#endif  // PWGCF_CORE_PAIRCUTS_H_"  [build/header_guard] [5]

PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx

PWGCF/EbyEFluctuations/Tasks/NetProtonCumulants.cxx:187:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGCF/Femto3D/Tools/checkPacking.cxx

PWGCF/Femto3D/Tools/checkPacking.cxx:51:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/FemtoDream/Tasks/femtoDreamHashTask.cxx

PWGCF/FemtoDream/Tasks/femtoDreamHashTask.cxx:32:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx

PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackMC.cxx:55:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGCF/FemtoWorld/Core/FemtoWorldEventHisto.h

PWGCF/FemtoWorld/Core/FemtoWorldEventHisto.h:17:  #ifndef header guard has wrong style, please use: PWGCF_FEMTOWORLD_CORE_FEMTOWORLDEVENTHISTO_H_  [build/header_guard] [5]
PWGCF/FemtoWorld/Core/FemtoWorldEventHisto.h:59:  #endif line should be "#endif  // PWGCF_FEMTOWORLD_CORE_FEMTOWORLDEVENTHISTO_H_"  [build/header_guard] [5]

PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h

PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:16:  #ifndef header guard has wrong style, please use: PWGCF_FEMTOWORLD_CORE_FEMTOWORLDOBJECTSELECTION_H_  [build/header_guard] [5]
PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:192:  #endif line should be "#endif  // PWGCF_FEMTOWORLD_CORE_FEMTOWORLDOBJECTSELECTION_H_"  [build/header_guard] [5]
PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:177:  Controlled statements inside brackets of if clause should be on a separate line  [whitespace/newline] [5]
PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:49:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:88:  Add #include <algorithm> for sort  [build/include_what_you_use] [4]
PWGCF/FemtoWorld/Core/FemtoWorldObjectSelection.h:186:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/FemtoWorld/Core/FemtoWorldSelection.h

PWGCF/FemtoWorld/Core/FemtoWorldSelection.h:16:  #ifndef header guard has wrong style, please use: PWGCF_FEMTOWORLD_CORE_FEMTOWORLDSELECTION_H_  [build/header_guard] [5]
PWGCF/FemtoWorld/Core/FemtoWorldSelection.h:118:  #endif line should be "#endif  // PWGCF_FEMTOWORLD_CORE_FEMTOWORLDSELECTION_H_"  [build/header_guard] [5]

PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h

PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:18:  #ifndef header guard has wrong style, please use: PWGCF_FEMTOWORLD_CORE_FEMTOWORLDTRACKSELECTION_H_  [build/header_guard] [5]
PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:581:  #endif line should be "#endif  // PWGCF_FEMTOWORLD_CORE_FEMTOWORLDTRACKSELECTION_H_"  [build/header_guard] [5]
PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:95:  You don't need a ; after a }  [readability/braces] [4]
PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:292:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/FemtoWorld/Core/FemtoWorldTrackSelection.h:474:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/FemtoWorld/Core/FemtoWorldUtils.h

PWGCF/FemtoWorld/Core/FemtoWorldUtils.h:18:  #ifndef header guard has wrong style, please use: PWGCF_FEMTOWORLD_CORE_FEMTOWORLDUTILS_H_  [build/header_guard] [5]
PWGCF/FemtoWorld/Core/FemtoWorldUtils.h:103:  #endif line should be "#endif  // PWGCF_FEMTOWORLD_CORE_FEMTOWORLDUTILS_H_"  [build/header_guard] [5]
PWGCF/FemtoWorld/Core/FemtoWorldUtils.h:48:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]

PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h

PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:19:  #ifndef header guard has wrong style, please use: PWGCF_FEMTOWORLD_CORE_FEMTOWORLDV0SELECTION_H_  [build/header_guard] [5]
PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:547:  #endif line should be "#endif  // PWGCF_FEMTOWORLD_CORE_FEMTOWORLDV0SELECTION_H_"  [build/header_guard] [5]
PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:82:  You don't need a ; after a }  [readability/braces] [4]
PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:336:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:336:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:336:  Use operator && instead of and  [readability/alt_tokens] [2]
PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:383:  Use operator && instead of and  [readability/alt_tokens] [2]
PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:409:  Use operator && instead of and  [readability/alt_tokens] [2]
PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:468:  An else should appear on the same line as the preceding }  [whitespace/newline] [4]
PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:271:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/FemtoWorld/Core/FemtoWorldV0Selection.h:480:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx

PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:132:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
PWGCF/FemtoWorld/TableProducer/femtoWorldProducerReducedTask.cxx:94:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx

PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTask.cxx:2035:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx

PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:183:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
PWGCF/FemtoWorld/TableProducer/femtoWorldProducerTaskV0Only.cxx:238:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx

PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskPionPion.cxx:140:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx

PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskProtonAntiproton.cxx:136:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx

PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:46:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackD0.cxx:51:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx

PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:43:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackPhi.cxx:119:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx

PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:205:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]
PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:217:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]
PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:223:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]
PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:227:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]
PWGCF/FemtoWorld/Tasks/femtoWorldPairTaskTrackTrack.cxx:138:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx

PWGCF/FemtoWorld/Tasks/femtoWorldPionPairTaskTrackTrack.cxx:139:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/Flow/Tasks/flowAnalysisGF.cxx

PWGCF/Flow/Tasks/flowAnalysisGF.cxx:334:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGCF/GenericFramework/Core/BootstrapProfile.cxx

PWGCF/GenericFramework/Core/BootstrapProfile.cxx:212:  Add #include <cstdio> for printf  [build/include_what_you_use] [4]

PWGCF/GenericFramework/Core/GFWPowerArray.cxx

PWGCF/GenericFramework/Core/GFWPowerArray.cxx:14:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/GenericFramework/Core/GFWPowerArray.cxx:98:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
PWGCF/GenericFramework/Core/GFWPowerArray.cxx:106:  Add #include <cstdio> for printf  [build/include_what_you_use] [4]

PWGCF/GenericFramework/Core/GFWWeightsList.cxx

PWGCF/GenericFramework/Core/GFWWeightsList.cxx:128:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/GenericFramework/Core/GFWWeightsList.cxx:142:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/GenericFramework/Core/ProfileSubset.cxx

PWGCF/GenericFramework/Core/ProfileSubset.cxx:103:  Add #include <cstdio> for printf  [build/include_what_you_use] [4]

PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx

PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:72:  For a static/global string constant, use a C style string instead: "const char CorEventDepNames[]".  [runtime/string] [4]
PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:87:  For a static/global string constant, use a C style string instead: "const char CorTrackDepNames[]".  [runtime/string] [4]
PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:187:  For a static/global string constant, use a C style string instead: "const char BinningSuffix[]".  [runtime/string] [4]
PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:188:  For a static/global string constant, use a C style string instead: "const char CutSuffix[]".  [runtime/string] [4]
PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:189:  For a static/global string constant, use a C style string instead: "const char CorrelatorHistPrefix[]".  [runtime/string] [4]
PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:1290:  Using deprecated casting style.  Use static_cast<double>(...) instead  [readability/casting] [4]
PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:440:  Add #include <utility> for move  [build/include_what_you_use] [4]
PWGCF/MultiparticleCorrelations/Tasks/multiparticle-correlations-ar.cxx:476:  Add #include <map> for map<>  [build/include_what_you_use] [4]

PWGCF/Tutorial/CFTutorialTask0.cxx

PWGCF/Tutorial/CFTutorialTask0.cxx:36:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/Tutorial/CFTutorialTask1.cxx

PWGCF/Tutorial/CFTutorialTask1.cxx:51:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/Tutorial/CFTutorialTask2.cxx

PWGCF/Tutorial/CFTutorialTask2.cxx:68:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/Tutorial/CFTutorialTask3.cxx

PWGCF/Tutorial/CFTutorialTask3.cxx:72:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/Tutorial/CFTutorialTask4.cxx

PWGCF/Tutorial/CFTutorialTask4.cxx:113:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/Tutorial/CFTutorialTask4.cxx:75:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/Tutorial/CFTutorialTask5.cxx

PWGCF/Tutorial/CFTutorialTask5.cxx:121:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/Tutorial/CFTutorialTask5.cxx:144:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/Tutorial/CFTutorialTask5.cxx:172:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/Tutorial/CFTutorialTask5.cxx:82:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx

PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:50:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:68:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:296:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:296:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:296:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:319:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:319:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:319:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:458:  If statement had no body and no else clause  [whitespace/empty_if_body] [4]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:340:  Add #include <set> for set<>  [build/include_what_you_use] [4]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:340:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.cxx:433:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h

PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:11:  #ifndef header guard has wrong style, please use: PWGCF_TWOPARTICLECORRELATIONS_CORE_EVENTSELECTIONFILTERANDANALYSIS_H_  [build/header_guard] [5]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:268:  #endif line should be "#endif  // PWGCF_TWOPARTICLECORRELATIONS_CORE_EVENTSELECTIONFILTERANDANALYSIS_H_"  [build/header_guard] [5]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:107:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:137:  Use operator && instead of and  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:227:  If statement had no body and no else clause  [whitespace/empty_if_body] [4]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:58:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/TwoParticleCorrelations/Core/EventSelectionFilterAndAnalysis.h:247:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx

PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:70:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:229:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:229:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:229:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:251:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:251:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:251:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:275:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:275:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:275:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:256:  Add #include <set> for set<>  [build/include_what_you_use] [4]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:273:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.cxx:326:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h

PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:11:  #ifndef header guard has wrong style, please use: PWGCF_TWOPARTICLECORRELATIONS_CORE_PIDSELECTIONFILTERANDANALYSIS_H_  [build/header_guard] [5]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:192:  #endif line should be "#endif  // PWGCF_TWOPARTICLECORRELATIONS_CORE_PIDSELECTIONFILTERANDANALYSIS_H_"  [build/header_guard] [5]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:97:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:132:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:133:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:128:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/TwoParticleCorrelations/Core/PIDSelectionFilterAndAnalysis.h:157:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.cxx

PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.cxx:59:  Use operator ! instead of not  [readability/alt_tokens] [2]

PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.h

PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.h:11:  #ifndef header guard has wrong style, please use: PWGCF_TWOPARTICLECORRELATIONS_CORE_SELECTIONFILTERANDANALYSIS_H_  [build/header_guard] [5]
PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.h:79:  #endif line should be "#endif  // PWGCF_TWOPARTICLECORRELATIONS_CORE_SELECTIONFILTERANDANALYSIS_H_"  [build/header_guard] [5]
PWGCF/TwoParticleCorrelations/Core/SelectionFilterAndAnalysis.h:68:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx

PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:41:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:107:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:138:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:138:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:211:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:211:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:217:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:241:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:272:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:272:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:345:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:345:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:351:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:377:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:410:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:410:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:488:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:488:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:495:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:495:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:521:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:554:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:554:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:631:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:631:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:638:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:638:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:669:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:671:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:706:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:706:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:706:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:748:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:748:  Use operator && instead of and  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:830:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:830:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:830:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:848:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:848:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:957:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:957:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1016:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1016:  Use operator && instead of and  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1028:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1029:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1178:  For a static/global string constant, use a C style string instead: "const char TrackSelectionBrick::mCutNames[]".  [runtime/string] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:845:  Add #include <set> for set<>  [build/include_what_you_use] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1178:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.cxx:1196:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h

PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:11:  #ifndef header guard has wrong style, please use: PWGCF_TWOPARTICLECORRELATIONS_CORE_SKIMMINGCONFIGURABLECUTS_H_  [build/header_guard] [5]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:632:  #endif line should be "#endif  // PWGCF_TWOPARTICLECORRELATIONS_CORE_SKIMMINGCONFIGURABLECUTS_H_"  [build/header_guard] [5]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:45:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:75:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:109:  Single-parameter constructors should be marked explicit.  [runtime/explicit] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:110:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:114:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:115:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:116:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:153:  Single-parameter constructors should be marked explicit.  [runtime/explicit] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:154:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:159:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:180:  Single-parameter constructors should be marked explicit.  [runtime/explicit] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:181:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:185:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:186:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:187:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:224:  Single-parameter constructors should be marked explicit.  [runtime/explicit] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:225:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:230:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:251:  Single-parameter constructors should be marked explicit.  [runtime/explicit] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:252:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:256:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:257:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:258:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:277:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:277:  Use operator && instead of and  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:296:  Single-parameter constructors should be marked explicit.  [runtime/explicit] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:297:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:302:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:325:  Single-parameter constructors should be marked explicit.  [runtime/explicit] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:326:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:330:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:331:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:332:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:351:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:351:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:370:  Single-parameter constructors should be marked explicit.  [runtime/explicit] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:371:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:376:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:401:  Single-parameter constructors should be marked explicit.  [runtime/explicit] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:402:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:406:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:407:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:411:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:431:  Single-parameter constructors should be marked explicit.  [runtime/explicit] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:432:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:440:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:441:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:442:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:443:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:466:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:509:  Single-parameter constructors should be marked explicit.  [runtime/explicit] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:510:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:531:  "virtual" is redundant since function is already declared as "override"  [readability/inheritance] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:536:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:536:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:536:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:537:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:537:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:537:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:538:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:538:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:538:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:539:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:539:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:539:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:540:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:540:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:540:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:541:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:541:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:541:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:576:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:577:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:578:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:579:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:580:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:581:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:582:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:583:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:529:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/TwoParticleCorrelations/Core/SkimmingConfigurableCuts.h:573:  Add #include <utility> for make_pair  [build/include_what_you_use] [4]

PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx

PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:63:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:81:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:165:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:166:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:167:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:168:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:169:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:170:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:171:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:172:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:173:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:219:  Using C-style cast.  Use reinterpret_cast<SpecialCutBrick*>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:281:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:281:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:281:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:326:  Extra space before ( in function call  [whitespace/parens] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:326:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:326:  Use operator || instead of or  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:345:  Using C-style cast.  Use reinterpret_cast<TrackSelectionBrick*>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:350:  Using C-style cast.  Use reinterpret_cast<TrackSelectionBrick*>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:355:  Using C-style cast.  Use reinterpret_cast<TrackSelectionBrick*>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:360:  Using C-style cast.  Use reinterpret_cast<TrackSelectionBrick*>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:365:  Using C-style cast.  Use reinterpret_cast<TrackSelectionBrick*>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:370:  Using C-style cast.  Use reinterpret_cast<TrackSelectionBrick*>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:375:  Using C-style cast.  Use reinterpret_cast<TrackSelectionBrick*>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:380:  Using C-style cast.  Use reinterpret_cast<TrackSelectionBrick*>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:429:  Using C-style cast.  Use reinterpret_cast<TrackSelectionBrick*>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:314:  Add #include <set> for set<>  [build/include_what_you_use] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:322:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.cxx:408:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h

PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:11:  #ifndef header guard has wrong style, please use: PWGCF_TWOPARTICLECORRELATIONS_CORE_TRACKSELECTIONFILTERANDANALYSIS_H_  [build/header_guard] [5]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:208:  #endif line should be "#endif  // PWGCF_TWOPARTICLECORRELATIONS_CORE_TRACKSELECTIONFILTERANDANALYSIS_H_"  [build/header_guard] [5]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:165:  Using C-style cast.  Use reinterpret_cast<TrackSelectionBrick*>(...) instead  [readability/casting] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:192:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:197:  Use operator ! instead of not  [readability/alt_tokens] [2]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:86:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGCF/TwoParticleCorrelations/Core/TrackSelectionFilterAndAnalysis.h:152:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsFiltered.h

PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsFiltered.h:11:  #ifndef header guard has wrong style, please use: PWGCF_TWOPARTICLECORRELATIONS_DATAMODEL_TWOPARTICLECORRELATIONSFILTERED_H_  [build/header_guard] [5]
PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsFiltered.h:49:  #endif line should be "#endif  // PWGCF_TWOPARTICLECORRELATIONS_DATAMODEL_TWOPARTICLECORRELATIONSFILTERED_H_"  [build/header_guard] [5]

PWGCF/TwoParticleCorrelations/TableProducer/Productions/skimmingconf_20221115.h

PWGCF/TwoParticleCorrelations/TableProducer/Productions/skimmingconf_20221115.h:0:  No #ifndef header guard found, suggested CPP variable is: PWGCF_TWOPARTICLECORRELATIONS_TABLEPRODUCER_PRODUCTIONS_SKIMMINGCONF_20221115_H_  [build/header_guard] [5]

PWGDQ

PWGDQ/Core/AnalysisCompositeCut.h

PWGDQ/Core/AnalysisCompositeCut.h:17:  #ifndef header guard has wrong style, please use: PWGDQ_CORE_ANALYSISCOMPOSITECUT_H_  [build/header_guard] [5]
PWGDQ/Core/AnalysisCompositeCut.h:55:  #endif line should be "#endif  // PWGDQ_CORE_ANALYSISCOMPOSITECUT_H_"  [build/header_guard] [5]
PWGDQ/Core/AnalysisCompositeCut.h:27:  Constructors callable with one argument should be marked explicit.  [runtime/explicit] [4]
PWGDQ/Core/AnalysisCompositeCut.h:36:  Using C-style cast.  Use reinterpret_cast<AnalysisCompositeCut*>(...) instead  [readability/casting] [4]

PWGDQ/Core/AnalysisCut.h

PWGDQ/Core/AnalysisCut.h:17:  #ifndef header guard has wrong style, please use: PWGDQ_CORE_ANALYSISCUT_H_  [build/header_guard] [5]
PWGDQ/Core/AnalysisCut.h:179:  #endif line should be "#endif  // PWGDQ_CORE_ANALYSISCUT_H_"  [build/header_guard] [5]
PWGDQ/Core/AnalysisCut.h:48:  Use int16_t/int64_t/etc, rather than the C type short  [runtime/int] [4]
PWGDQ/Core/AnalysisCut.h:53:  Use int16_t/int64_t/etc, rather than the C type short  [runtime/int] [4]
PWGDQ/Core/AnalysisCut.h:58:  Use int16_t/int64_t/etc, rather than the C type short  [runtime/int] [4]

PWGDQ/Core/MCSignal.h

PWGDQ/Core/MCSignal.h:333:  Complex multi-line /*...*/-style comment found. Lint may give bogus warnings.  Consider replacing these with //-style comments, with #if 0...#endif, or with more clearly structured multi-line comments.  [readability/multiline_comment] [5]

PWGDQ/Core/MixingHandler.cxx

PWGDQ/Core/MixingHandler.cxx:135:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGDQ/Core/VarManager.cxx

PWGDQ/Core/VarManager.cxx:397:  Add #include <tuple> for tuple<>  [build/include_what_you_use] [4]

PWGDQ/Macros/fit_library/CB2Pdf.cxx

PWGDQ/Macros/fit_library/CB2Pdf.cxx:63:  Use operator && instead of and  [readability/alt_tokens] [2]

PWGDQ/Macros/fit_library/CB2Pdf.h

PWGDQ/Macros/fit_library/CB2Pdf.h:14:  #ifndef header guard has wrong style, please use: PWGDQ_MACROS_FIT_LIBRARY_CB2PDF_H_  [build/header_guard] [5]
PWGDQ/Macros/fit_library/CB2Pdf.h:54:  #endif line should be "#endif  // PWGDQ_MACROS_FIT_LIBRARY_CB2PDF_H_"  [build/header_guard] [5]
PWGDQ/Macros/fit_library/CB2Pdf.h:26:  You don't need a ; after a }  [readability/braces] [4]

PWGDQ/Macros/fit_library/ExpPdf.h

PWGDQ/Macros/fit_library/ExpPdf.h:14:  #ifndef header guard has wrong style, please use: PWGDQ_MACROS_FIT_LIBRARY_EXPPDF_H_  [build/header_guard] [5]
PWGDQ/Macros/fit_library/ExpPdf.h:46:  #endif line should be "#endif  // PWGDQ_MACROS_FIT_LIBRARY_EXPPDF_H_"  [build/header_guard] [5]
PWGDQ/Macros/fit_library/ExpPdf.h:26:  You don't need a ; after a }  [readability/braces] [4]

PWGDQ/Macros/fit_library/GausPdf.h

PWGDQ/Macros/fit_library/GausPdf.h:14:  #ifndef header guard has wrong style, please use: PWGDQ_MACROS_FIT_LIBRARY_GAUSPDF_H_  [build/header_guard] [5]
PWGDQ/Macros/fit_library/GausPdf.h:46:  #endif line should be "#endif  // PWGDQ_MACROS_FIT_LIBRARY_GAUSPDF_H_"  [build/header_guard] [5]
PWGDQ/Macros/fit_library/GausPdf.h:26:  You don't need a ; after a }  [readability/braces] [4]

PWGDQ/Macros/fit_library/Pol4ExpPdf.h

PWGDQ/Macros/fit_library/Pol4ExpPdf.h:14:  #ifndef header guard has wrong style, please use: PWGDQ_MACROS_FIT_LIBRARY_POL4EXPPDF_H_  [build/header_guard] [5]
PWGDQ/Macros/fit_library/Pol4ExpPdf.h:56:  #endif line should be "#endif  // PWGDQ_MACROS_FIT_LIBRARY_POL4EXPPDF_H_"  [build/header_guard] [5]
PWGDQ/Macros/fit_library/Pol4ExpPdf.h:28:  You don't need a ; after a }  [readability/braces] [4]

PWGDQ/Macros/fit_library/VWGPdf.h

PWGDQ/Macros/fit_library/VWGPdf.h:14:  #ifndef header guard has wrong style, please use: PWGDQ_MACROS_FIT_LIBRARY_VWGPDF_H_  [build/header_guard] [5]
PWGDQ/Macros/fit_library/VWGPdf.h:48:  #endif line should be "#endif  // PWGDQ_MACROS_FIT_LIBRARY_VWGPDF_H_"  [build/header_guard] [5]
PWGDQ/Macros/fit_library/VWGPdf.h:26:  You don't need a ; after a }  [readability/braces] [4]

PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx

PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2301:  Complex multi-line /*...*/-style comment found. Lint may give bogus warnings.  Consider replacing these with //-style comments, with #if 0...#endif, or with more clearly structured multi-line comments.  [readability/multiline_comment] [5]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2311:  Complex multi-line /*...*/-style comment found. Lint may give bogus warnings.  Consider replacing these with //-style comments, with #if 0...#endif, or with more clearly structured multi-line comments.  [readability/multiline_comment] [5]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2365:  Complex multi-line /*...*/-style comment found. Lint may give bogus warnings.  Consider replacing these with //-style comments, with #if 0...#endif, or with more clearly structured multi-line comments.  [readability/multiline_comment] [5]
PWGDQ/Tasks/dqEfficiency_withAssoc_direct.cxx:2365:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]

PWGDQ/Tasks/tableReader_withAssoc.cxx

PWGDQ/Tasks/tableReader_withAssoc.cxx:1647:  You don't need a ; after a }  [readability/braces] [4]
PWGDQ/Tasks/tableReader_withAssoc.cxx:1650:  You don't need a ; after a }  [readability/braces] [4]

PWGEM

PWGEM/Dilepton/DataModel/dileptonTables.h

PWGEM/Dilepton/DataModel/dileptonTables.h:1199:  Use int16_t/int64_t/etc, rather than the C type short  [runtime/int] [4]
PWGEM/Dilepton/DataModel/dileptonTables.h:1245:  Use int16_t/int64_t/etc, rather than the C type short  [runtime/int] [4]
PWGEM/Dilepton/DataModel/dileptonTables.h:1251:  Use int16_t/int64_t/etc, rather than the C type short  [runtime/int] [4]

PWGEM/Dilepton/DataModel/lmeeMLTables.h

PWGEM/Dilepton/DataModel/lmeeMLTables.h:56:  Use int16_t/int64_t/etc, rather than the C type short  [runtime/int] [4]

PWGEM/Dilepton/Tasks/MCtemplates.cxx

PWGEM/Dilepton/Tasks/MCtemplates.cxx:294:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:316:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:321:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:328:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:524:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:537:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:542:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:556:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:564:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:571:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:236:  Add #include <cstdio> for printf  [build/include_what_you_use] [4]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:691:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGEM/Dilepton/Tasks/MCtemplates.cxx:698:  Add #include <memory> for unique_ptr<>  [build/include_what_you_use] [4]

PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx

PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:268:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:381:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:714:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:922:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:941:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:948:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:956:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1051:  Do not use variable-length arrays.  Use an appropriately named ('k' followed by CamelCase) compile-time constant for the size.  [runtime/arrays] [1]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1145:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1156:  Do not use variable-length arrays.  Use an appropriately named ('k' followed by CamelCase) compile-time constant for the size.  [runtime/arrays] [1]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1165:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1205:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1739:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1794:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1807:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1815:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1096:  Add #include <cstdio> for printf  [build/include_what_you_use] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:1556:  Add #include <map> for map<>  [build/include_what_you_use] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:2011:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGEM/Dilepton/Tasks/emEfficiencyEE.cxx:2018:  Add #include <memory> for unique_ptr<>  [build/include_what_you_use] [4]

PWGEM/PhotonMeson/Tasks/photonhbt.cxx

PWGEM/PhotonMeson/Tasks/photonhbt.cxx:1466:  Missing space after ,  [whitespace/comma] [3]
PWGEM/PhotonMeson/Tasks/photonhbt.cxx:1467:  Missing space after ,  [whitespace/comma] [3]
PWGEM/PhotonMeson/Tasks/photonhbt.cxx:1472:  If/else bodies with multiple statements require braces  [readability/braces] [4]
PWGEM/PhotonMeson/Tasks/photonhbt.cxx:1668:  Missing space after ,  [whitespace/comma] [3]
PWGEM/PhotonMeson/Tasks/photonhbt.cxx:1669:  Missing space after ,  [whitespace/comma] [3]
PWGEM/PhotonMeson/Tasks/photonhbt.cxx:1674:  If/else bodies with multiple statements require braces  [readability/braces] [4]
PWGEM/PhotonMeson/Tasks/photonhbt.cxx:1847:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]

PWGEM/Tasks/phosAlign.cxx

PWGEM/Tasks/phosAlign.cxx:349:  Add #include <algorithm> for max  [build/include_what_you_use] [4]

PWGEM/Tasks/phosCalibration.cxx

PWGEM/Tasks/phosCalibration.cxx:99:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGEM/Tasks/phosNbar.cxx

PWGEM/Tasks/phosNbar.cxx:133:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
PWGEM/Tasks/phosNbar.cxx:518:  Add #include <algorithm> for min  [build/include_what_you_use] [4]
PWGEM/Tasks/phosNbar.cxx:737:  Add #include <utility> for pair<>  [build/include_what_you_use] [4]

PWGHF

PWGHF/HFC/Macros/FitCorrel.C

PWGHF/HFC/Macros/FitCorrel.C:113:  Do not use variable-length arrays.  Use an appropriately named ('k' followed by CamelCase) compile-time constant for the size.  [runtime/arrays] [1]
PWGHF/HFC/Macros/FitCorrel.C:132:  Do not use variable-length arrays.  Use an appropriately named ('k' followed by CamelCase) compile-time constant for the size.  [runtime/arrays] [1]

PWGJE

PWGJE/DataModel/JetReducedData.h

PWGJE/DataModel/JetReducedData.h:390:  Controlled statements inside brackets of if clause should be on a separate line  [whitespace/newline] [5]
PWGJE/DataModel/JetReducedData.h:392:  Controlled statements inside brackets of if clause should be on a separate line  [whitespace/newline] [5]
PWGJE/DataModel/JetReducedData.h:394:  Controlled statements inside brackets of if clause should be on a separate line  [whitespace/newline] [5]

PWGJE/DataModel/JetReducedDataDQ.h

PWGJE/DataModel/JetReducedDataDQ.h:103:  Controlled statements inside brackets of if clause should be on a separate line  [whitespace/newline] [5]
PWGJE/DataModel/JetReducedDataDQ.h:105:  Controlled statements inside brackets of if clause should be on a separate line  [whitespace/newline] [5]
PWGJE/DataModel/JetReducedDataDQ.h:107:  Controlled statements inside brackets of if clause should be on a separate line  [whitespace/newline] [5]

PWGJE/DataModel/JetReducedDataV0.h

PWGJE/DataModel/JetReducedDataV0.h:91:  Controlled statements inside brackets of if clause should be on a separate line  [whitespace/newline] [5]
PWGJE/DataModel/JetReducedDataV0.h:93:  Controlled statements inside brackets of if clause should be on a separate line  [whitespace/newline] [5]
PWGJE/DataModel/JetReducedDataV0.h:95:  Controlled statements inside brackets of if clause should be on a separate line  [whitespace/newline] [5]

PWGJE/Tasks/jetFormationTimeReclustering.cxx

PWGJE/Tasks/jetFormationTimeReclustering.cxx:79:  "Framework/ASoA.h" already included at ./PWGJE/Tasks/jetFormationTimeReclustering.cxx:31  [build/include] [4]
PWGJE/Tasks/jetFormationTimeReclustering.cxx:95:  "cmath" already included at ./PWGJE/Tasks/jetFormationTimeReclustering.cxx:33  [build/include] [4]
PWGJE/Tasks/jetFormationTimeReclustering.cxx:96:  "cstdint" already included at ./PWGJE/Tasks/jetFormationTimeReclustering.cxx:34  [build/include] [4]

PWGJE/Tasks/jetOutlierQA.cxx

PWGJE/Tasks/jetOutlierQA.cxx:361:  Using deprecated casting style.  Use static_cast<double>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:364:  Using deprecated casting style.  Use static_cast<double>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:610:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:611:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:661:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:662:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:663:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:664:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:665:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:668:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:674:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:686:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:702:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:714:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGJE/Tasks/jetOutlierQA.cxx:715:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]

PWGJE/Tasks/triggerCorrelations.cxx

PWGJE/Tasks/triggerCorrelations.cxx:41:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
PWGJE/Tasks/triggerCorrelations.cxx:42:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
PWGJE/Tasks/triggerCorrelations.cxx:43:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]

PWGLF

PWGLF/DataModel/LFHyperhelium4Tables.h

PWGLF/DataModel/LFHyperhelium4Tables.h:11:  #ifndef header guard has wrong style, please use: PWGLF_DATAMODEL_LFHYPERHELIUM4TABLES_H_  [build/header_guard] [5]
PWGLF/DataModel/LFHyperhelium4Tables.h:131:  #endif line should be "#endif  // PWGLF_DATAMODEL_LFHYPERHELIUM4TABLES_H_"  [build/header_guard] [5]

PWGLF/DataModel/LFLambda1405Table.h

PWGLF/DataModel/LFLambda1405Table.h:23:  #ifndef header guard has wrong style, please use: PWGLF_DATAMODEL_LFLAMBDA1405TABLE_H_  [build/header_guard] [5]
PWGLF/DataModel/LFLambda1405Table.h:88:  #endif line should be "#endif  // PWGLF_DATAMODEL_LFLAMBDA1405TABLE_H_"  [build/header_guard] [5]

PWGLF/DataModel/LFSlimHeLambda.h

PWGLF/DataModel/LFSlimHeLambda.h:17:  #ifndef header guard has wrong style, please use: PWGLF_DATAMODEL_LFSLIMHELAMBDA_H_  [build/header_guard] [5]
PWGLF/DataModel/LFSlimHeLambda.h:88:  #endif line should be "#endif  // PWGLF_DATAMODEL_LFSLIMHELAMBDA_H_"  [build/header_guard] [5]

PWGLF/TableProducer/Common/lfTPCPID.cxx

PWGLF/TableProducer/Common/lfTPCPID.cxx:68:  For a static/global string constant, use a C style string instead: "const char defaultOptions[]".  [runtime/string] [4]
PWGLF/TableProducer/Common/lfTPCPID.cxx:81:  Single-parameter constructors should be marked explicit.  [runtime/explicit] [4]
PWGLF/TableProducer/Common/lfTPCPID.cxx:286:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
PWGLF/TableProducer/Common/lfTPCPID.cxx:475:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGLF/TableProducer/Nuspex/hyhe4builder.cxx

PWGLF/TableProducer/Nuspex/hyhe4builder.cxx:91:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx

PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:90:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:91:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/TableProducer/Nuspex/threebodymcfinder.cxx:121:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/TableProducer/QC/flowQC.cxx

PWGLF/TableProducer/QC/flowQC.cxx:78:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
PWGLF/TableProducer/QC/flowQC.cxx:88:  Add #include <memory> for shared_ptr<>  [build/include_what_you_use] [4]
PWGLF/TableProducer/QC/flowQC.cxx:172:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGLF/TableProducer/Resonances/filterf1proton.cxx

PWGLF/TableProducer/Resonances/filterf1proton.cxx:376:  Add #include <map> for map<>  [build/include_what_you_use] [4]
PWGLF/TableProducer/Resonances/filterf1proton.cxx:545:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/Converters/stradautracksextraconverter.cxx

PWGLF/TableProducer/Strangeness/Converters/stradautracksextraconverter.cxx:40:  Could not find a newline character at the end of the file.  [whitespace/ending_newline] [5]

PWGLF/TableProducer/Strangeness/Converters/stradautrackstofpidconverter.cxx

PWGLF/TableProducer/Strangeness/Converters/stradautrackstofpidconverter.cxx:27:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/Converters/stradautrackstofpidconverter2.cxx

PWGLF/TableProducer/Strangeness/Converters/stradautrackstofpidconverter2.cxx:37:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx

PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:55:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGLF/TableProducer/Strangeness/Converters/straevselsconverter5.cxx:62:  Add #include <map> for map<>  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx

PWGLF/TableProducer/Strangeness/cascadeMLSelectionTreeCreator.cxx:64:  Add #include <iostream> for cout  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/cascadefinder.cxx

PWGLF/TableProducer/Strangeness/cascadefinder.cxx:226:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/TableProducer/Strangeness/cascadefinder.cxx:316:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]

PWGLF/TableProducer/Strangeness/cascadeflow.cxx

PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1297:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:1611:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:2035:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:2057:  Do not use variable-length arrays.  Use an appropriately named ('k' followed by CamelCase) compile-time constant for the size.  [runtime/arrays] [1]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:2235:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/TableProducer/Strangeness/cascadeflow.cxx:2385:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]

PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx

PWGLF/TableProducer/Strangeness/cascademcbuilder.cxx:133:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/cascademcfinder.cxx

PWGLF/TableProducer/Strangeness/cascademcfinder.cxx:136:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/cascademlselection.cxx

PWGLF/TableProducer/Strangeness/cascademlselection.cxx:63:  Add #include <iostream> for cout  [build/include_what_you_use] [4]
PWGLF/TableProducer/Strangeness/cascademlselection.cxx:81:  Add #include <map> for map<>  [build/include_what_you_use] [4]
PWGLF/TableProducer/Strangeness/cascademlselection.cxx:120:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGLF/TableProducer/Strangeness/cascademlselection.cxx:235:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx

PWGLF/TableProducer/Strangeness/doubleCascTreeCreator.cxx:89:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx

PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx:254:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx

PWGLF/TableProducer/Strangeness/lambdakzeroMLSelectionTreeCreator.cxx:65:  Add #include <iostream> for cout  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx

PWGLF/TableProducer/Strangeness/lambdakzerofinder.cxx:161:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx

PWGLF/TableProducer/Strangeness/lambdakzeromcbuilder.cxx:156:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx

PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:63:  Add #include <iostream> for cout  [build/include_what_you_use] [4]
PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:78:  Add #include <map> for map<>  [build/include_what_you_use] [4]
PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:114:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGLF/TableProducer/Strangeness/lambdakzeromlselection.cxx:220:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/sigmaminustask.cxx

PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:162:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:162:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:513:  Add #include <utility> for pair<>  [build/include_what_you_use] [4]
PWGLF/TableProducer/Strangeness/sigmaminustask.cxx:559:  Add #include <unordered_map> for unordered_map<>  [build/include_what_you_use] [4]

PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx

PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:661:  Do not use variable-length arrays.  Use an appropriately named ('k' followed by CamelCase) compile-time constant for the size.  [runtime/arrays] [1]
PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:304:  Add #include <map> for map<>  [build/include_what_you_use] [4]
PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:824:  Add #include <algorithm> for sort  [build/include_what_you_use] [4]
PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx:835:  Add #include <utility> for make_pair  [build/include_what_you_use] [4]

PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx

PWGLF/Tasks/Nuspex/AntimatterAbsorptionHMPID.cxx:91:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx

PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:71:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
PWGLF/Tasks/Nuspex/he3LambdaDerivedAnalysis.cxx:95:  Add #include <iostream> for cout  [build/include_what_you_use] [4]

PWGLF/Tasks/Nuspex/hyhe4analysis.cxx

PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:75:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:76:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:78:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:79:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:80:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Nuspex/hyhe4analysis.cxx:81:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]

PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx

PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:198:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:199:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
PWGLF/Tasks/Nuspex/hypertritonAnalysis.cxx:125:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGLF/Tasks/Nuspex/identifiedraa.cxx

PWGLF/Tasks/Nuspex/identifiedraa.cxx:45:  Add #include <utility> for swap  [build/include_what_you_use] [4]
PWGLF/Tasks/Nuspex/identifiedraa.cxx:83:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx

PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:28:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
PWGLF/Tasks/Nuspex/mcspectraefficiency.cxx:32:  Add #include <utility> for swap  [build/include_what_you_use] [4]

PWGLF/Tasks/Nuspex/spectraTPC.cxx

PWGLF/Tasks/Nuspex/spectraTPC.cxx:39:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
PWGLF/Tasks/Nuspex/spectraTPC.cxx:41:  Add #include <utility> for swap  [build/include_what_you_use] [4]

PWGLF/Tasks/QC/efficiencyQA.cxx

PWGLF/Tasks/QC/efficiencyQA.cxx:494:  Using deprecated casting style.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/efficiencyQA.cxx:516:  Using deprecated casting style.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/efficiencyQA.cxx:694:  Using deprecated casting style.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/efficiencyQA.cxx:249:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGLF/Tasks/QC/efficiencyQA.cxx:334:  Add #include <memory> for shared_ptr<>  [build/include_what_you_use] [4]

PWGLF/Tasks/QC/findableStudy.cxx

PWGLF/Tasks/QC/findableStudy.cxx:375:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/findableStudy.cxx:391:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/findableStudy.cxx:392:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/findableStudy.cxx:393:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/findableStudy.cxx:394:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/findableStudy.cxx:395:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/findableStudy.cxx:396:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]

PWGLF/Tasks/QC/kfStrangenessStudy.cxx

PWGLF/Tasks/QC/kfStrangenessStudy.cxx:71:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx

PWGLF/Tasks/QC/lfITSTPCMatchingQA.cxx:47:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGLF/Tasks/QC/mcParticlePrediction.cxx

PWGLF/Tasks/QC/mcParticlePrediction.cxx:91:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
PWGLF/Tasks/QC/mcParticlePrediction.cxx:276:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGLF/Tasks/QC/straRecoStudy.cxx

PWGLF/Tasks/QC/straRecoStudy.cxx:107:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:108:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:109:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:110:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:111:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:112:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:113:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:114:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:115:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:116:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:118:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:119:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:120:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:337:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:361:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:365:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:366:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:385:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:386:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:574:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:575:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:725:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:726:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:727:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/Tasks/QC/straRecoStudy.cxx:202:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/Tasks/QC/strangenessQCPP.cxx

PWGLF/Tasks/QC/strangenessQCPP.cxx:83:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]

PWGLF/Tasks/QC/strangenessTrackingQC.cxx

PWGLF/Tasks/QC/strangenessTrackingQC.cxx:71:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGLF/Tasks/QC/strangepidqa.cxx

PWGLF/Tasks/QC/strangepidqa.cxx:49:  Add #include <iostream> for cout  [build/include_what_you_use] [4]

PWGLF/Tasks/QC/trackchecks.cxx

PWGLF/Tasks/QC/trackchecks.cxx:35:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/Tasks/QC/v0assoqa.cxx

PWGLF/Tasks/QC/v0assoqa.cxx:110:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGLF/Tasks/QC/v0assoqa.cxx:325:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/Tasks/QC/v0cascadesqa.cxx

PWGLF/Tasks/QC/v0cascadesqa.cxx:296:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/Tasks/Resonances/doublephimeson.cxx

PWGLF/Tasks/Resonances/doublephimeson.cxx:1208:  Add #include <algorithm> for min  [build/include_what_you_use] [4]
PWGLF/Tasks/Resonances/doublephimeson.cxx:1293:  Add #include <utility> for move  [build/include_what_you_use] [4]

PWGLF/Tasks/Resonances/f1protoncorrelation.cxx

PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:198:  Using deprecated casting style.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:204:  Using C-style cast.  Use static_cast<size_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:208:  Using C-style cast.  Use static_cast<size_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:211:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:212:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:232:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:244:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:246:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:392:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:394:  Using deprecated casting style.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:990:  Using C-style cast.  Use static_cast<size_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Resonances/f1protoncorrelation.cxx:1136:  Using C-style cast.  Use static_cast<size_t>(...) instead  [readability/casting] [4]

PWGLF/Tasks/Resonances/highmasslambdasvx.cxx

PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:94:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGLF/Tasks/Resonances/highmasslambdasvx.cxx:443:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/Tasks/Resonances/k892hadronphoton.cxx

PWGLF/Tasks/Resonances/k892hadronphoton.cxx:1004:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Resonances/k892hadronphoton.cxx:1012:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Resonances/k892hadronphoton.cxx:1208:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx

PWGLF/Tasks/Resonances/lambda1520analysisinOO.cxx:1032:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/Tasks/Resonances/lambdav2.cxx

PWGLF/Tasks/Resonances/lambdav2.cxx:237:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]
PWGLF/Tasks/Resonances/lambdav2.cxx:246:  If an else has a brace on one side, it should have it on both  [readability/braces] [5]

PWGLF/Tasks/Resonances/phianalysisrun3.cxx

PWGLF/Tasks/Resonances/phianalysisrun3.cxx:372:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/Tasks/Resonances/rsnanalysis.cxx

PWGLF/Tasks/Resonances/rsnanalysis.cxx:565:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/Tasks/Resonances/sigma.cxx

PWGLF/Tasks/Resonances/sigma.cxx:278:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx

PWGLF/Tasks/Strangeness/lambdakzeroanalysisMC.cxx:480:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx

PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:477:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:925:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1073:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1098:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1298:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1299:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1387:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1534:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1792:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1847:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1852:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1884:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1892:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1992:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:2035:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:2205:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:2234:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:2239:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:2271:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:2278:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:2385:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:2434:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGLF/Tasks/Strangeness/lambdaspincorrderived.cxx:1094:  Add #include <unordered_set> for unordered_set<>  [build/include_what_you_use] [4]

PWGLF/Utils/strangenessBuilderHelper.h

PWGLF/Utils/strangenessBuilderHelper.h:107:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGLF/Utils/v0SelectionGroup.cxx

PWGLF/Utils/v0SelectionGroup.cxx:29:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:30:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:31:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:32:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:37:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:39:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:42:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:43:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:44:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:48:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:50:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:52:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:55:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:57:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:60:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:61:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:62:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:66:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:68:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:70:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:74:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:75:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGLF/Utils/v0SelectionGroup.cxx:76:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]

PWGMM

PWGMM/Lumi/Tasks/LumiFDDFT0.cxx

PWGMM/Lumi/Tasks/LumiFDDFT0.cxx:455:  Add #include <map> for map<>  [build/include_what_you_use] [4]

PWGMM/Lumi/Tasks/fitLumi.cxx

PWGMM/Lumi/Tasks/fitLumi.cxx:122:  Add #include <map> for map<>  [build/include_what_you_use] [4]
PWGMM/Lumi/Tasks/fitLumi.cxx:147:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGMM/Lumi/macros/non_fac.C

PWGMM/Lumi/macros/non_fac.C:196:  Add #include <iostream> for cout  [build/include_what_you_use] [4]

PWGMM/Mult/DataModel/Index.h

PWGMM/Mult/DataModel/Index.h:12:  #ifndef header guard has wrong style, please use: PWGMM_MULT_DATAMODEL_INDEX_H_  [build/header_guard] [5]
PWGMM/Mult/DataModel/Index.h:26:  #endif line should be "#endif  // PWGMM_MULT_DATAMODEL_INDEX_H_"  [build/header_guard] [5]

PWGMM/Mult/TableProducer/particles2tracks.cxx

PWGMM/Mult/TableProducer/particles2tracks.cxx:54:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGMM/Mult/TableProducer/percentiles.cxx

PWGMM/Mult/TableProducer/percentiles.cxx:51:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGMM/Mult/TableProducer/reducer.cxx

PWGMM/Mult/TableProducer/reducer.cxx:82:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGMM/Mult/TableProducer/reducer.cxx:83:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGMM/Mult/TableProducer/reducer.cxx:85:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGMM/Mult/TableProducer/reducer.cxx:86:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGMM/Mult/TableProducer/reducer.cxx:88:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGMM/Mult/TableProducer/reducer.cxx:104:  Using deprecated casting style.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGMM/Mult/TableProducer/reducer.cxx:104:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGMM/Mult/TableProducer/reducer.cxx:105:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGMM/Mult/TableProducer/reducer.cxx:130:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]
PWGMM/Mult/TableProducer/reducer.cxx:134:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGMM/Mult/TableProducer/reducer.cxx:198:  Controlled statements inside brackets of if clause should be on a separate line  [whitespace/newline] [5]
PWGMM/Mult/TableProducer/reducer.cxx:73:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGMM/Mult/TableProducer/reducerPostprocess.cxx

PWGMM/Mult/TableProducer/reducerPostprocess.cxx:24:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGMM/Mult/Tasks/dndeta-hi.cxx

PWGMM/Mult/Tasks/dndeta-hi.cxx:610:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGMM/Mult/Tasks/dndeta-mft.cxx

PWGMM/Mult/Tasks/dndeta-mft.cxx:315:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGMM/Mult/Tasks/dndeta.cxx

PWGMM/Mult/Tasks/dndeta.cxx:462:  Using C-style cast.  Use static_cast<uint32_t>(...) instead  [readability/casting] [4]
PWGMM/Mult/Tasks/dndeta.cxx:282:  Add #include <string> for string  [build/include_what_you_use] [4]
PWGMM/Mult/Tasks/dndeta.cxx:1467:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGMM/Mult/Tasks/effpt-mft.cxx

PWGMM/Mult/Tasks/effpt-mft.cxx:114:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]

PWGMM/Mult/Tasks/puremc-dndeta.cxx

PWGMM/Mult/Tasks/puremc-dndeta.cxx:52:  Add #include <memory> for shared_ptr<>  [build/include_what_you_use] [4]
PWGMM/Mult/Tasks/puremc-dndeta.cxx:66:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
PWGMM/Mult/Tasks/puremc-dndeta.cxx:68:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGMM/Mult/Tasks/run2dndeta.cxx

PWGMM/Mult/Tasks/run2dndeta.cxx:198:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]
PWGMM/Mult/Tasks/run2dndeta.cxx:233:  Using C-style cast.  Use static_cast<int>(...) instead  [readability/casting] [4]

PWGMM/Mult/Tasks/vertexing-fwd.cxx

PWGMM/Mult/Tasks/vertexing-fwd.cxx:243:  Add #include <cstdio> for printf  [build/include_what_you_use] [4]
PWGMM/Mult/Tasks/vertexing-fwd.cxx:279:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

PWGUD

PWGUD/TableProducer/DGBCCandProducer.cxx

PWGUD/TableProducer/DGBCCandProducer.cxx:134:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGUD/TableProducer/DGBCCandProducer.cxx:150:  Using C-style cast.  Use static_cast<int32_t>(...) instead  [readability/casting] [4]
PWGUD/TableProducer/DGBCCandProducer.cxx:218:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGUD/TableProducer/DGBCCandProducer.cxx:234:  Using C-style cast.  Use static_cast<int32_t>(...) instead  [readability/casting] [4]
PWGUD/TableProducer/DGBCCandProducer.cxx:471:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGUD/TableProducer/DGBCCandProducer.cxx:475:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGUD/TableProducer/DGBCCandProducer.cxx:517:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGUD/TableProducer/DGBCCandProducer.cxx:521:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGUD/TableProducer/DGBCCandProducer.cxx:686:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]
PWGUD/TableProducer/DGBCCandProducer.cxx:690:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]

PWGUD/Tasks/sgFITAnalyzer.cxx

PWGUD/Tasks/sgFITAnalyzer.cxx:88:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGUD/Tasks/sgSpectraAnalyzer.cxx

PWGUD/Tasks/sgSpectraAnalyzer.cxx:333:  Add #include <string> for string  [build/include_what_you_use] [4]

PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx

PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:541:  Using C-style cast.  Use reinterpret_cast<TObject*>(...) instead  [readability/casting] [4]
PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:544:  Using C-style cast.  Use reinterpret_cast<TObject*>(...) instead  [readability/casting] [4]
PWGUD/Tasks/upcQuarkoniaCentralBarrel.cxx:547:  Using C-style cast.  Use reinterpret_cast<TObject*>(...) instead  [readability/casting] [4]

Tools

Tools/KFparticle/qaKFEventTrack.cxx

Tools/KFparticle/qaKFEventTrack.cxx:255:  Using C-style cast.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]
Tools/KFparticle/qaKFEventTrack.cxx:637:  Using deprecated casting style.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]

Tools/KFparticle/qaKFParticleLc.cxx

Tools/KFparticle/qaKFParticleLc.cxx:431:  Using C-style cast.  Use static_cast<int64_t>(...) instead  [readability/casting] [4]

Tutorials

Tutorials/ML/applyMlSelection.cxx

Tutorials/ML/applyMlSelection.cxx:49:  Add #include <string> for string  [build/include_what_you_use] [4]
Tutorials/ML/applyMlSelection.cxx:105:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Tutorials/ML/applyOnnxModel.cxx

Tutorials/ML/applyOnnxModel.cxx:29:  Add #include <string> for string  [build/include_what_you_use] [4]
Tutorials/ML/applyOnnxModel.cxx:40:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Tutorials/OpenData/flowAnalysis.cxx

Tutorials/OpenData/flowAnalysis.cxx:77:  Using C-style cast.  Use static_cast<uint16_t>(...) instead  [readability/casting] [4]
Tutorials/OpenData/flowAnalysis.cxx:276:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]

Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx

Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:62:  Add #include <string> for string  [build/include_what_you_use] [4]
Tutorials/PWGCF/FlowGenericFramework/src/flowGFWTutorial.cxx:69:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Tutorials/PWGEM/Cocktail/plotLFCocktail.C

Tutorials/PWGEM/Cocktail/plotLFCocktail.C:75:  Could not find a newline character at the end of the file.  [whitespace/ending_newline] [5]

Tutorials/PWGUD/UDTutorial_03a.cxx

Tutorials/PWGUD/UDTutorial_03a.cxx:226:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Tutorials/PWGUD/UDTutorial_03b.cxx

Tutorials/PWGUD/UDTutorial_03b.cxx:255:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Tutorials/PWGUD/UDTutorial_04.cxx

Tutorials/PWGUD/UDTutorial_04.cxx:251:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Tutorials/PWGUD/UDTutorial_05.cxx

Tutorials/PWGUD/UDTutorial_05.cxx:166:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Tutorials/PWGUD/UDTutorial_06.cxx

Tutorials/PWGUD/UDTutorial_06.cxx:213:  Add #include <unordered_map> for unordered_map<>  [build/include_what_you_use] [4]
Tutorials/PWGUD/UDTutorial_06.cxx:213:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Tutorials/PWGUD/UDTutorial_07.cxx

Tutorials/PWGUD/UDTutorial_07.cxx:159:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Tutorials/Skimming/DataModel/DerivedExampleTable.h

Tutorials/Skimming/DataModel/DerivedExampleTable.h:12:  #ifndef header guard has wrong style, please use: TUTORIALS_SKIMMING_DATAMODEL_DERIVEDEXAMPLETABLE_H_  [build/header_guard] [5]
Tutorials/Skimming/DataModel/DerivedExampleTable.h:36:  #endif line should be "#endif  // TUTORIALS_SKIMMING_DATAMODEL_DERIVEDEXAMPLETABLE_H_"  [build/header_guard] [5]

Tutorials/Skimming/DataModel/JEDerived.h

Tutorials/Skimming/DataModel/JEDerived.h:13:  #ifndef header guard has wrong style, please use: TUTORIALS_SKIMMING_DATAMODEL_JEDERIVED_H_  [build/header_guard] [5]
Tutorials/Skimming/DataModel/JEDerived.h:72:  #endif line should be "#endif  // TUTORIALS_SKIMMING_DATAMODEL_JEDERIVED_H_"  [build/header_guard] [5]

Tutorials/Skimming/DataModel/LFDerived.h

Tutorials/Skimming/DataModel/LFDerived.h:13:  #ifndef header guard has wrong style, please use: TUTORIALS_SKIMMING_DATAMODEL_LFDERIVED_H_  [build/header_guard] [5]
Tutorials/Skimming/DataModel/LFDerived.h:98:  #endif line should be "#endif  // TUTORIALS_SKIMMING_DATAMODEL_LFDERIVED_H_"  [build/header_guard] [5]

Tutorials/Skimming/DataModel/UDDerived.h

Tutorials/Skimming/DataModel/UDDerived.h:13:  #ifndef header guard has wrong style, please use: TUTORIALS_SKIMMING_DATAMODEL_UDDERIVED_H_  [build/header_guard] [5]
Tutorials/Skimming/DataModel/UDDerived.h:43:  #endif line should be "#endif  // TUTORIALS_SKIMMING_DATAMODEL_UDDERIVED_H_"  [build/header_guard] [5]

Tutorials/Skimming/jetSpectraAnalyser.cxx

Tutorials/Skimming/jetSpectraAnalyser.cxx:58:  Could not find a newline character at the end of the file.  [whitespace/ending_newline] [5]

Tutorials/Skimming/spectraNucleiReference.cxx

Tutorials/Skimming/spectraNucleiReference.cxx:40:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Tutorials/Skimming/spectraTPCAnalyser.cxx

Tutorials/Skimming/spectraTPCAnalyser.cxx:28:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
Tutorials/Skimming/spectraTPCAnalyser.cxx:30:  Add #include <utility> for swap  [build/include_what_you_use] [4]

Tutorials/Skimming/spectraTPCReference.cxx

Tutorials/Skimming/spectraTPCReference.cxx:27:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
Tutorials/Skimming/spectraTPCReference.cxx:29:  Add #include <utility> for swap  [build/include_what_you_use] [4]

Tutorials/include/configurableCut.h

Tutorials/include/configurableCut.h:12:  #ifndef header guard has wrong style, please use: TUTORIALS_INCLUDE_CONFIGURABLECUT_H_  [build/header_guard] [5]
Tutorials/include/configurableCut.h:66:  #endif line should be "#endif  // TUTORIALS_INCLUDE_CONFIGURABLECUT_H_"  [build/header_guard] [5]
Tutorials/include/configurableCut.h:58:  Add #include <string> for string  [build/include_what_you_use] [4]
Tutorials/include/configurableCut.h:58:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Tutorials/src/associatedExample.cxx

Tutorials/src/associatedExample.cxx:143:  You don't need a ; after a }  [readability/braces] [4]

Tutorials/src/ccdbaccess.cxx

Tutorials/src/ccdbaccess.cxx:36:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
Tutorials/src/ccdbaccess.cxx:35:  Add #include <string> for string  [build/include_what_you_use] [4]

Tutorials/src/compatibleBCs.cxx

Tutorials/src/compatibleBCs.cxx:58:  Using C-style cast.  Use static_cast<uint64_t>(...) instead  [readability/casting] [4]

Tutorials/src/configurableCut.cxx

Tutorials/src/configurableCut.cxx:71:  Add #include <string> for string  [build/include_what_you_use] [4]
Tutorials/src/configurableCut.cxx:71:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]
Tutorials/src/configurableCut.cxx:78:  Add #include <utility> for move  [build/include_what_you_use] [4]

Tutorials/src/configurableObjects.cxx

Tutorials/src/configurableObjects.cxx:59:  For a static/global string constant, use a C style string instead: "const char defaultmS[]".  [runtime/string] [4]
Tutorials/src/configurableObjects.cxx:114:  Add #include <string> for string  [build/include_what_you_use] [4]

Tutorials/src/efficiencyGlobal.cxx

Tutorials/src/efficiencyGlobal.cxx:32:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
Tutorials/src/efficiencyGlobal.cxx:31:  Add #include <string> for string  [build/include_what_you_use] [4]

Tutorials/src/efficiencyPerRun.cxx

Tutorials/src/efficiencyPerRun.cxx:35:  Use int16_t/int64_t/etc, rather than the C type long  [runtime/int] [4]
Tutorials/src/efficiencyPerRun.cxx:34:  Add #include <string> for string  [build/include_what_you_use] [4]

Tutorials/src/extendedTables.cxx

Tutorials/src/extendedTables.cxx:119:  Using C-style cast.  Use static_cast<float>(...) instead  [readability/casting] [4]

Tutorials/src/histogramRegistry.cxx

Tutorials/src/histogramRegistry.cxx:144:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Tutorials/src/preprocess.cxx

Tutorials/src/preprocess.cxx:36:  Add #include <string> for string  [build/include_what_you_use] [4]

Tutorials/src/propagatedTracks.cxx

Tutorials/src/propagatedTracks.cxx:28:  "Framework/runDataProcessing.h" already included at ./Tutorials/src/propagatedTracks.cxx:19  [build/include] [4]
Tutorials/src/propagatedTracks.cxx:108:  Could not find a newline character at the end of the file.  [whitespace/ending_newline] [5]

Tutorials/src/reweighting.cxx

Tutorials/src/reweighting.cxx:91:  Add #include <string> for string  [build/include_what_you_use] [4]
Tutorials/src/reweighting.cxx:93:  Add #include <memory> for make_shared<>  [build/include_what_you_use] [4]
Tutorials/src/reweighting.cxx:121:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Tutorials/src/tracksCombinations.cxx

Tutorials/src/tracksCombinations.cxx:122:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Clone this wiki locally